diff --git a/FModel/Creator/Fortnite/BaseBundle.cs b/FModel/Creator/Bases/BaseBundle.cs similarity index 99% rename from FModel/Creator/Fortnite/BaseBundle.cs rename to FModel/Creator/Bases/BaseBundle.cs index 528f2d5a..ca8cd3a2 100644 --- a/FModel/Creator/Fortnite/BaseBundle.cs +++ b/FModel/Creator/Bases/BaseBundle.cs @@ -5,7 +5,7 @@ using PakReader.Parsers.Class; using PakReader.Parsers.PropertyTagData; using System.Collections.Generic; -namespace FModel.Creator.Fortnite +namespace FModel.Creator.Bases { public class BaseBundle { diff --git a/FModel/Creator/Fortnite/BaseIcon.cs b/FModel/Creator/Bases/BaseIcon.cs similarity index 99% rename from FModel/Creator/Fortnite/BaseIcon.cs rename to FModel/Creator/Bases/BaseIcon.cs index 9387b7a2..8dc34798 100644 --- a/FModel/Creator/Fortnite/BaseIcon.cs +++ b/FModel/Creator/Bases/BaseIcon.cs @@ -10,7 +10,7 @@ using System; using System.Collections.Generic; using System.Windows; -namespace FModel.Creator.Fortnite +namespace FModel.Creator.Bases { public class BaseIcon { diff --git a/FModel/Creator/Valorant/BaseMapUIData.cs b/FModel/Creator/Bases/BaseMapUIData.cs similarity index 99% rename from FModel/Creator/Valorant/BaseMapUIData.cs rename to FModel/Creator/Bases/BaseMapUIData.cs index 59c9183e..836beb58 100644 --- a/FModel/Creator/Valorant/BaseMapUIData.cs +++ b/FModel/Creator/Bases/BaseMapUIData.cs @@ -3,7 +3,7 @@ using PakReader.Parsers.Class; using PakReader.Parsers.PropertyTagData; using SkiaSharp; -namespace FModel.Creator.Valorant +namespace FModel.Creator.Bases { public class BaseMapUIData { diff --git a/FModel/Creator/Fortnite/BaseOffer.cs b/FModel/Creator/Bases/BaseOffer.cs similarity index 99% rename from FModel/Creator/Fortnite/BaseOffer.cs rename to FModel/Creator/Bases/BaseOffer.cs index ef22aa06..e248b5fe 100644 --- a/FModel/Creator/Fortnite/BaseOffer.cs +++ b/FModel/Creator/Bases/BaseOffer.cs @@ -5,7 +5,7 @@ using SkiaSharp; using System; using System.Windows; -namespace FModel.Creator.Fortnite +namespace FModel.Creator.Bases { public class BaseOffer { diff --git a/FModel/Creator/Bases/BaseUIData.cs b/FModel/Creator/Bases/BaseUIData.cs new file mode 100644 index 00000000..2c990b8c --- /dev/null +++ b/FModel/Creator/Bases/BaseUIData.cs @@ -0,0 +1,160 @@ +using FModel.Creator.Stats; +using FModel.Creator.Texts; +using PakReader.Parsers.Class; +using PakReader.Parsers.PropertyTagData; +using SkiaSharp; +using System.Collections.Generic; +using System.Linq; + +namespace FModel.Creator.Bases +{ + public class BaseUIData + { + private readonly SKPaint descriptionPaint = new SKPaint + { + IsAntialias = true, + FilterQuality = SKFilterQuality.High, + Typeface = Text.TypeFaces.DescriptionTypeface, + TextSize = 19.5f, + Color = SKColors.White, + }; + + public SKBitmap IconImage; + public string DisplayName; + public string Description; + public List Abilities; + public int Width = 768; // keep it 512 (or a multiple of 512) if you don't want blurry icons + public int AdditionalWidth = 0; + public int Height = 96; + public int Margin = 3; + + public BaseUIData() + { + IconImage = null; + DisplayName = ""; + Description = ""; + Abilities = new List(); + } + + public BaseUIData(IUExport[] exports, int baseIndex) : this() + { + if (exports[baseIndex].GetExport("DisplayName") is TextProperty displayName) + DisplayName = Text.GetTextPropertyBase(displayName) ?? ""; + if (exports[baseIndex].GetExport("Description") is TextProperty description) + { + Description = Text.GetTextPropertyBase(description) ?? ""; + if (Description.Equals(DisplayName)) Description = string.Empty; + if (!string.IsNullOrEmpty(Description)) + { + Height += (int)descriptionPaint.TextSize * Helper.SplitLines(Description, descriptionPaint, Width - Margin).Length; + Height += (int)descriptionPaint.TextSize; + } + } + + if (exports[baseIndex].GetExport("StoreFeaturedImage", "FullRender", "VerticalPromoImage", "LargeIcon", "DisplayIcon2", "DisplayIcon") is ObjectProperty icon) + { + SKBitmap raw = Utils.GetObjectTexture(icon); + if (raw != null) + { + float coef = (float)Width / (float)raw.Width; + int sizeX = (int)(raw.Width * coef); + int sizeY = (int)(raw.Height * coef); + Height += sizeY; + IconImage = raw.Resize(sizeX, sizeY); + } + } + + if (exports[baseIndex].GetExport("Abilities") is MapProperty abilities) + { + AdditionalWidth = 768; + foreach (var (_, value) in abilities.Value) + { + if (value is ObjectProperty o && o.Value.Resource == null && o.Value.Index > 0) + { + Statistic s = new Statistic(); + if (exports[o.Value.Index - 1].GetExport("DisplayName") is TextProperty aDisplayName) + s.DisplayName = Text.GetTextPropertyBase(aDisplayName) ?? ""; + if (exports[o.Value.Index - 1].GetExport("Description") is TextProperty aDescription) + { + s.Description = Text.GetTextPropertyBase(aDescription) ?? ""; + if (!string.IsNullOrEmpty(Description)) + { + s.Height += (int)descriptionPaint.TextSize * Helper.SplitLines(s.Description, descriptionPaint, Width - Margin).Length; + s.Height += (int)descriptionPaint.TextSize * 3; + } + } + if (exports[o.Value.Index - 1].GetExport("DisplayIcon") is ObjectProperty displayIcon) + { + SKBitmap raw = Utils.GetObjectTexture(displayIcon); + if (raw != null) s.Icon = raw.Resize(128, 128); + } + Abilities.Add(s); + } + } + } + } + + public void Draw(SKCanvas c) + { + float textSize = 67.5f; + SKPaint namePaint = new SKPaint + { + IsAntialias = true, + FilterQuality = SKFilterQuality.High, + Typeface = Text.TypeFaces.DisplayNameTypeface, + TextSize = textSize, + Color = SKColors.White, + TextAlign = SKTextAlign.Left, + }; + + // resize if too long + while (namePaint.MeasureText(DisplayName) > Width) + { + namePaint.TextSize = textSize -= 2; + } + + c.DrawText(DisplayName, Margin, Margin + textSize, namePaint); + + // wrap if too long + Helper.DrawMultilineText(c, Description, Width, Margin, ETextSide.Left, + new SKRect(Margin, textSize + 37.5f, Width - Margin, Height - 37.5f), descriptionPaint, out var yPos); + + if (IconImage != null) + c.DrawBitmap(IconImage, new SKRect(0, yPos, Width, Height), + new SKPaint { FilterQuality = SKFilterQuality.High, IsAntialias = true }); + + int yaPos = 0; + foreach (Statistic ability in Abilities) + { + int xToAdd = ability.Icon != null ? ability.Icon.Width : 0; + textSize = 42.5f; + namePaint = new SKPaint + { + IsAntialias = true, + FilterQuality = SKFilterQuality.High, + Typeface = Text.TypeFaces.DisplayNameTypeface, + TextSize = textSize, + Color = SKColors.White, + TextAlign = SKTextAlign.Left, + }; + + // resize if too long + while (namePaint.MeasureText(ability.DisplayName) > Width - 128) + { + namePaint.TextSize = textSize -= 2; + } + + c.DrawText(ability.DisplayName, Width + Margin + xToAdd + 10, yaPos + Margin + textSize, namePaint); + + Helper.DrawMultilineText(c, ability.Description, Width, Width + Margin + xToAdd + 10, ETextSide.Left, + new SKRect(Margin, textSize + yaPos + 27.5f, Width + AdditionalWidth - Margin, Height - 27.5f), descriptionPaint, out var _); + + if (ability.Icon != null) + c.DrawBitmap(ability.Icon, new SKRect(Width + Margin, yaPos, Width + Margin + ability.Icon.Width, yaPos + ability.Icon.Height), + new SKPaint { FilterQuality = SKFilterQuality.High, IsAntialias = true }); + + yaPos += ability.Height + 48 + (Margin * 2); + } + } + } +} diff --git a/FModel/Creator/Fortnite/BaseUserOption.cs b/FModel/Creator/Bases/BaseUserOption.cs similarity index 99% rename from FModel/Creator/Fortnite/BaseUserOption.cs rename to FModel/Creator/Bases/BaseUserOption.cs index e2bab489..d5156d15 100644 --- a/FModel/Creator/Fortnite/BaseUserOption.cs +++ b/FModel/Creator/Bases/BaseUserOption.cs @@ -5,7 +5,7 @@ using PakReader.Parsers.PropertyTagData; using SkiaSharp; using System.Collections.Generic; -namespace FModel.Creator.Fortnite +namespace FModel.Creator.Bases { public class Options { diff --git a/FModel/Creator/Bundles/HeaderStyle.cs b/FModel/Creator/Bundles/HeaderStyle.cs index 185e40c5..d12ab7f9 100644 --- a/FModel/Creator/Bundles/HeaderStyle.cs +++ b/FModel/Creator/Bundles/HeaderStyle.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using FModel.Creator.Texts; using SkiaSharp; using System; diff --git a/FModel/Creator/Bundles/QuestStyle.cs b/FModel/Creator/Bundles/QuestStyle.cs index 2015b600..58243005 100644 --- a/FModel/Creator/Bundles/QuestStyle.cs +++ b/FModel/Creator/Bundles/QuestStyle.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using FModel.Creator.Texts; using SkiaSharp; diff --git a/FModel/Creator/Bundles/Reward.cs b/FModel/Creator/Bundles/Reward.cs index 8c7a0e51..dbda8e8f 100644 --- a/FModel/Creator/Bundles/Reward.cs +++ b/FModel/Creator/Bundles/Reward.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using PakReader.Pak; using PakReader.Parsers.Class; using PakReader.Parsers.PropertyTagData; diff --git a/FModel/Creator/FortniteCreator.cs b/FModel/Creator/Creator.cs similarity index 77% rename from FModel/Creator/FortniteCreator.cs rename to FModel/Creator/Creator.cs index 73e9aa0b..ce4bb457 100644 --- a/FModel/Creator/FortniteCreator.cs +++ b/FModel/Creator/Creator.cs @@ -1,33 +1,32 @@ -using FModel.Creator.Bundles; -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; +using FModel.Creator.Bundles; using FModel.Creator.Icons; using FModel.Creator.Rarities; using FModel.Creator.Stats; using FModel.Creator.Texts; using FModel.ViewModels.ImageBox; using PakReader.Parsers.Class; +using PakReader.Parsers.Objects; using SkiaSharp; using System.IO; namespace FModel.Creator { - static class FortniteCreator + static class Creator { /// - /// we draw based on the fist export type of the asset, no need to check others it's a waste of time /// i don't cache images because i don't wanna store a lot of SKCanvas in the memory /// /// true if an icon has been drawn - public static bool TryDrawFortniteIcon(string assetPath, string exportType, IUExport export) + public static bool TryDrawIcon(string assetPath, FName[] exportTypes, IUExport[] exports) { var d = new DirectoryInfo(assetPath); string assetName = d.Name; string assetFolder = d.Parent.Name; - if (Text.TypeFaces.NeedReload(false)) - Text.TypeFaces = new Typefaces(); // when opening bundle creator settings without loading paks first + if (Text.TypeFaces.NeedReload(false)) Text.TypeFaces = new Typefaces(); // when opening bundle creator settings without loading paks first - // please respect my wave if you wanna add a new exportType - // Athena first, then Fort, thank you + int index = Globals.Game.ActualGame == EGame.Valorant ? 1 : 0; + string exportType = exportTypes.Length > index ? exportTypes[index].String : string.Empty; switch (exportType) { case "AthenaConsumableEmoteItemDefinition": @@ -91,7 +90,7 @@ namespace FModel.Creator case "FortWeaponMeleeDualWieldItemDefinition": case "FortDailyRewardScheduleTokenDefinition": { - BaseIcon icon = new BaseIcon(export, exportType, ref assetName); + BaseIcon icon = new BaseIcon(exports[index], exportType, ref assetName); int height = icon.Size + icon.AdditionalSize; using (var ret = new SKBitmap(icon.Size, height, SKColorType.Rgba8888, SKAlphaType.Premul)) using (var c = new SKCanvas(ret)) @@ -133,7 +132,7 @@ namespace FModel.Creator } case "FortMtxOfferData": { - BaseOffer icon = new BaseOffer(export); + BaseOffer icon = new BaseOffer(exports[index]); using (var ret = new SKBitmap(icon.Size, icon.Size, SKColorType.Rgba8888, SKAlphaType.Premul)) using (var c = new SKCanvas(ret)) { @@ -154,7 +153,7 @@ namespace FModel.Creator using (var ret = new SKBitmap(icon.Size, icon.Size, SKColorType.Rgba8888, SKAlphaType.Opaque)) using (var c = new SKCanvas(ret)) { - Serie.GetRarity(icon, export); + Serie.GetRarity(icon, exports[index]); Rarity.DrawRarity(c, icon); Watermark.DrawWatermark(c); // watermark should only be applied on icons with width = 512 @@ -173,7 +172,7 @@ namespace FModel.Creator case "PlaylistUserOptionPrimaryAsset": case "PlaylistUserOptionCollisionProfileEnum": { - BaseUserOption icon = new BaseUserOption(export); + BaseUserOption icon = new BaseUserOption(exports[index]); using (var ret = new SKBitmap(icon.Width, icon.Height, SKColorType.Rgba8888, SKAlphaType.Opaque)) using (var c = new SKCanvas(ret)) { @@ -186,7 +185,7 @@ namespace FModel.Creator } case "FortChallengeBundleItemDefinition": { - BaseBundle icon = new BaseBundle(export, assetFolder); + BaseBundle icon = new BaseBundle(exports[index], assetFolder); using (var ret = new SKBitmap(icon.Width, icon.HeaderHeight + icon.AdditionalSize, SKColorType.Rgba8888, SKAlphaType.Opaque)) using (var c = new SKCanvas(ret)) { @@ -199,6 +198,46 @@ namespace FModel.Creator } return true; } + case "MapUIData": + { + BaseMapUIData icon = new BaseMapUIData(exports[index]); + using (var ret = new SKBitmap(icon.Width, icon.Height, SKColorType.Rgba8888, SKAlphaType.Premul)) + using (var c = new SKCanvas(ret)) + { + icon.Draw(c); + ImageBoxVm.imageBoxViewModel.Set(ret, assetName); + } + return true; + } + case "ArmorUIData": + case "SprayUIData": + case "ThemeUIData": + case "ContractUIData": + case "CurrencyUIData": + case "GameModeUIData": + case "CharacterUIData": + case "SprayLevelUIData": + case "EquippableUIData": + case "PlayerCardUIData": + case "Gun_UIData_Base_C": + case "CharacterRoleUIData": + case "EquippableSkinUIData": + case "EquippableCharmUIData": + case "EquippableSkinLevelUIData": + case "EquippableSkinChromaUIData": + case "EquippableCharmLevelUIData": + { + BaseUIData icon = new BaseUIData(exports, index); + using (var ret = new SKBitmap(icon.Width + icon.AdditionalWidth, icon.Height, SKColorType.Rgba8888, SKAlphaType.Premul)) + using (var c = new SKCanvas(ret)) + { + icon.Draw(c); + + Watermark.DrawWatermark(c); // watermark should only be applied on icons with width = 512 + ImageBoxVm.imageBoxViewModel.Set(ret, assetName); + } + return true; + } } return false; } diff --git a/FModel/Creator/Icons/DisplayAssetImage.cs b/FModel/Creator/Icons/DisplayAssetImage.cs index b91c0b88..bcc961b0 100644 --- a/FModel/Creator/Icons/DisplayAssetImage.cs +++ b/FModel/Creator/Icons/DisplayAssetImage.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using PakReader.Pak; using PakReader.Parsers.Class; using PakReader.Parsers.PropertyTagData; diff --git a/FModel/Creator/Icons/LargeSmallImage.cs b/FModel/Creator/Icons/LargeSmallImage.cs index 638fc0b6..3796a19e 100644 --- a/FModel/Creator/Icons/LargeSmallImage.cs +++ b/FModel/Creator/Icons/LargeSmallImage.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using PakReader.Pak; using PakReader.Parsers.Class; using PakReader.Parsers.PropertyTagData; diff --git a/FModel/Creator/Icons/UserFacingFlag.cs b/FModel/Creator/Icons/UserFacingFlag.cs index 622ea2d3..82b5ac54 100644 --- a/FModel/Creator/Icons/UserFacingFlag.cs +++ b/FModel/Creator/Icons/UserFacingFlag.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using PakReader.Pak; using PakReader.Parsers.Class; using PakReader.Parsers.Objects; diff --git a/FModel/Creator/Labels/ExplicitAsset.cs b/FModel/Creator/Labels/ExplicitAsset.cs deleted file mode 100644 index 8ddec0a7..00000000 --- a/FModel/Creator/Labels/ExplicitAsset.cs +++ /dev/null @@ -1,36 +0,0 @@ -using FModel.Creator.Valorant; -using PakReader.Pak; -using PakReader.Parsers.Class; -using PakReader.Parsers.PropertyTagData; - -namespace FModel.Creator.Labels -{ - static class ExplicitAsset - { - public static void GetAsset(BaseLabel icon, SoftObjectProperty s) - { - PakPackage p = Utils.GetPropertyPakPackage(s.Value.AssetPathName.String); - if (p.HasExport() && !p.Equals(default)) - { - var obj = p.GetIndexedExport(0); - if (obj != null) - { - if (obj.TryGetValue("UIData", out var t) && t is SoftObjectProperty sop) - { - p = Utils.GetPropertyPakPackage(sop.Value.AssetPathName.String); - if (p.HasExport() && !p.Equals(default)) - { - obj = p.GetIndexedExport(0); - if (obj != null) - { - var uiData = new BaseUIData(obj); - icon.IconImages.Add(uiData); - icon.Height += uiData.IconImage.Height; - } - } - } - } - } - } - } -} diff --git a/FModel/Creator/Rarities/Rarity.cs b/FModel/Creator/Rarities/Rarity.cs index e98a7b56..b8728072 100644 --- a/FModel/Creator/Rarities/Rarity.cs +++ b/FModel/Creator/Rarities/Rarity.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using PakReader.Pak; using PakReader.Parsers.Class; using PakReader.Parsers.Objects; diff --git a/FModel/Creator/Rarities/Serie.cs b/FModel/Creator/Rarities/Serie.cs index c2c97785..8d413508 100644 --- a/FModel/Creator/Rarities/Serie.cs +++ b/FModel/Creator/Rarities/Serie.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using PakReader.Pak; using PakReader.Parsers.Class; using PakReader.Parsers.Objects; diff --git a/FModel/Creator/Stats/Statistic.cs b/FModel/Creator/Stats/Statistic.cs index 0730064e..4a8e343e 100644 --- a/FModel/Creator/Stats/Statistic.cs +++ b/FModel/Creator/Stats/Statistic.cs @@ -6,5 +6,7 @@ namespace FModel.Creator.Stats { public SKBitmap Icon; public string Description; + public string DisplayName; + public int Height; } } diff --git a/FModel/Creator/Stats/Statistics.cs b/FModel/Creator/Stats/Statistics.cs index 2eba08c1..d1444e36 100644 --- a/FModel/Creator/Stats/Statistics.cs +++ b/FModel/Creator/Stats/Statistics.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using FModel.Creator.Texts; using FModel.Utils; using PakReader.Pak; diff --git a/FModel/Creator/Texts/GameplayTag.cs b/FModel/Creator/Texts/GameplayTag.cs index caf222c5..729f1320 100644 --- a/FModel/Creator/Texts/GameplayTag.cs +++ b/FModel/Creator/Texts/GameplayTag.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using FModel.Creator.Icons; using FModel.Utils; using PakReader.Pak; diff --git a/FModel/Creator/Texts/Helper.cs b/FModel/Creator/Texts/Helper.cs index b3bd735b..fa3f89b4 100644 --- a/FModel/Creator/Texts/Helper.cs +++ b/FModel/Creator/Texts/Helper.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using SkiaSharp; using System; using System.Collections.Generic; diff --git a/FModel/Creator/Texts/Text.cs b/FModel/Creator/Texts/Text.cs index 8b2db516..e8c0dea2 100644 --- a/FModel/Creator/Texts/Text.cs +++ b/FModel/Creator/Texts/Text.cs @@ -1,4 +1,4 @@ -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using PakReader.Pak; using PakReader.Parsers.Class; using PakReader.Parsers.Objects; diff --git a/FModel/Creator/Valorant/BaseLabel.cs b/FModel/Creator/Valorant/BaseLabel.cs deleted file mode 100644 index 46efd623..00000000 --- a/FModel/Creator/Valorant/BaseLabel.cs +++ /dev/null @@ -1,48 +0,0 @@ -using FModel.Creator.Labels; -using PakReader.Parsers.Class; -using PakReader.Parsers.PropertyTagData; -using SkiaSharp; -using System.Collections.Generic; - -namespace FModel.Creator.Valorant -{ - public class BaseLabel - { - public List IconImages; - public int Width = 512; // keep it 512 (or a multiple of 512) if you don't want blurry icons - public int Height = 512; - public int Margin = 4; - - public BaseLabel() - { - IconImages = new List(); - } - - public BaseLabel(IUExport export) : this() - { - if (export.GetExport("ExplicitAssets") is ArrayProperty explicitAssetsArray) - { - foreach (var o in explicitAssetsArray.Value) - { - if (o is SoftObjectProperty s) - ExplicitAsset.GetAsset(this, s); - } - } - } - - public void Draw(SKCanvas c) - { - int yPos = Margin; - foreach (BaseUIData icon in IconImages) - { - if (icon.IconImage != null) - { - c.DrawBitmap(icon.IconImage, new SKRect(0, yPos, icon.Width, yPos + icon.Height), - new SKPaint { FilterQuality = SKFilterQuality.High, IsAntialias = true }); - - yPos += icon.Height; - } - } - } - } -} diff --git a/FModel/Creator/Valorant/BaseUIData.cs b/FModel/Creator/Valorant/BaseUIData.cs deleted file mode 100644 index c231b285..00000000 --- a/FModel/Creator/Valorant/BaseUIData.cs +++ /dev/null @@ -1,92 +0,0 @@ -using FModel.Creator.Texts; -using PakReader.Parsers.Class; -using PakReader.Parsers.PropertyTagData; -using SkiaSharp; - -namespace FModel.Creator.Valorant -{ - public class BaseUIData - { - private readonly SKPaint descriptionPaint = new SKPaint - { - IsAntialias = true, - FilterQuality = SKFilterQuality.High, - Typeface = Text.TypeFaces.DescriptionTypeface, - TextSize = 19.5f, - Color = SKColors.White, - }; - - public SKBitmap IconImage; - public string DisplayName; - public string Description; - public int Width = 768; // keep it 512 (or a multiple of 512) if you don't want blurry icons - public int Height = 96; - public int Margin = 3; - - public BaseUIData() - { - IconImage = null; - DisplayName = ""; - Description = ""; - } - - public BaseUIData(IUExport export) : this() - { - if (export.GetExport("DisplayName") is TextProperty displayName) - DisplayName = Text.GetTextPropertyBase(displayName) ?? ""; - if (export.GetExport("Description") is TextProperty description) - { - Description = Text.GetTextPropertyBase(description) ?? ""; - if (Description.Equals(DisplayName)) Description = string.Empty; - if (!string.IsNullOrEmpty(Description)) - { - Height += (int)descriptionPaint.TextSize * Helper.SplitLines(Description, descriptionPaint, Width - Margin).Length; - Height += (int)descriptionPaint.TextSize; - } - } - - if (export.GetExport("StoreFeaturedImage", "FullRender", "VerticalPromoImage", "LargeIcon", "DisplayIcon2", "DisplayIcon") is ObjectProperty icon) - { - SKBitmap raw = Utils.GetObjectTexture(icon); - if (raw != null) - { - float coef = (float)Width / (float)raw.Width; - int sizeX = (int)(raw.Width * coef); - int sizeY = (int)(raw.Height * coef); - Height += sizeY; - IconImage = raw.Resize(sizeX, sizeY); - } - } - } - - public void Draw(SKCanvas c) - { - float textSize = 67.5f; - SKPaint namePaint = new SKPaint - { - IsAntialias = true, - FilterQuality = SKFilterQuality.High, - Typeface = Text.TypeFaces.DisplayNameTypeface, - TextSize = textSize, - Color = SKColors.White, - TextAlign = SKTextAlign.Left, - }; - - // resize if too long - while (namePaint.MeasureText(DisplayName) > Width) - { - namePaint.TextSize = textSize -= 2; - } - - c.DrawText(DisplayName, Margin, Margin + textSize, namePaint); - - // wrap if too long - Helper.DrawMultilineText(c, Description, Width, Margin, ETextSide.Left, - new SKRect(Margin, textSize + 37.5f, Width - Margin, Height - 37.5f), descriptionPaint, out var yPos); - - if (IconImage != null) - c.DrawBitmap(IconImage, new SKRect(0, yPos, Width, Height), - new SKPaint { FilterQuality = SKFilterQuality.High, IsAntialias = true }); - } - } -} diff --git a/FModel/Creator/ValorantCreator.cs b/FModel/Creator/ValorantCreator.cs deleted file mode 100644 index 486d1f21..00000000 --- a/FModel/Creator/ValorantCreator.cs +++ /dev/null @@ -1,66 +0,0 @@ -using FModel.Creator.Icons; -using FModel.Creator.Texts; -using FModel.Creator.Valorant; -using FModel.ViewModels.ImageBox; -using PakReader.Parsers.Class; -using SkiaSharp; -using System.IO; - -namespace FModel.Creator -{ - static class ValorantCreator - { - public static bool TryDrawValorantIcon(string assetPath, string exportType, IUExport export) - { - var d = new DirectoryInfo(assetPath); - string assetName = d.Name; - if (Text.TypeFaces.NeedReload(false)) - Text.TypeFaces = new Typefaces(); - - switch (exportType) - { - case "MapUIData": - { - BaseMapUIData icon = new BaseMapUIData(export); - using (var ret = new SKBitmap(icon.Width, icon.Height, SKColorType.Rgba8888, SKAlphaType.Premul)) - using (var c = new SKCanvas(ret)) - { - icon.Draw(c); - ImageBoxVm.imageBoxViewModel.Set(ret, assetName); - } - return true; - } - case "ArmorUIData": - case "SprayUIData": - case "ThemeUIData": - case "ContractUIData": - case "CurrencyUIData": - case "GameModeUIData": - case "CharacterUIData": - case "SprayLevelUIData": - case "EquippableUIData": - case "PlayerCardUIData": - case "Gun_UIData_Base_C": - case "CharacterRoleUIData": - case "EquippableSkinUIData": - case "EquippableCharmUIData": - case "EquippableSkinLevelUIData": - case "EquippableSkinChromaUIData": - case "EquippableCharmLevelUIData": - { - BaseUIData icon = new BaseUIData(export); - using (var ret = new SKBitmap(icon.Width, icon.Height, SKColorType.Rgba8888, SKAlphaType.Premul)) - using (var c = new SKCanvas(ret)) - { - icon.Draw(c); - - Watermark.DrawWatermark(c); // watermark should only be applied on icons with width = 512 - ImageBoxVm.imageBoxViewModel.Set(ret, assetName); - } - return true; - } - } - return false; - } - } -} diff --git a/FModel/Enums.cs b/FModel/Enums.cs index ec9da5dd..1c1dc4c7 100644 --- a/FModel/Enums.cs +++ b/FModel/Enums.cs @@ -43,7 +43,6 @@ { English, French, - AustralianEnglish, German, Italian, Spanish, @@ -56,7 +55,8 @@ Russian, Turkish, Chinese, - TraditionalChinese + TraditionalChinese, + AustralianEnglish } public enum EJsonType: long diff --git a/FModel/Globals.cs b/FModel/Globals.cs index 3723543a..8a2394d3 100644 --- a/FModel/Globals.cs +++ b/FModel/Globals.cs @@ -16,1078 +16,6 @@ namespace FModel /// PakFileReader is the reader where you can grab the FPakEntries, MountPoint and more /// public static readonly Dictionary CachedPakFiles = new Dictionary(); - public static readonly Dictionary ValorantWemToName = new Dictionary - { - { 1055663626, "Play_Armor_ShieldBreak" }, - { 1068023171, "Play_Armor_Regen_Start_Heal_Self" }, - { 243493710, "Play_BF_LimbHit_Soft" }, - { 258738577, "Play_BF_BodyHit_Soft" }, - { 312058225, "Play_BF_HeadHit_Hard" }, - { 336005838, "Play_BF_BodyHit_Hard" }, - { 387854440, "Play_BF_LimbHit_Soft" }, - { 412387394, "Play_BF_LimbHit_Hard" }, - { 441213393, "Play_BF_LimbHit_Soft" }, - { 550471401, "Play_BF_LimbHit_Soft" }, - { 573927398, "Play_BF_LimbHit_Soft" }, - { 579121856, "Play_BF_LimbHit_Hard" }, - { 670782981, "Play_BF_HeadHit_Soft" }, - { 811225202, "Play_BF_LimbHit_Hard" }, - { 819059272, "Play_BF_LimbHit_Hard" }, - { 898784993, "Play_BF_HeadHit_Hard" }, - { 1020040599, "Play_BF_LimbHit_Hard" }, - { 325810485, "Play_Buff_Nearsight_Base_End" }, - { 653991800, "Play_Buff_Nearsight_Base_Start" }, - //{ 119316015, "Play_Buff_RevealLocation_Base_Start" }, - { 171285278, "Play_Bullet_Impact_FirstImpact" }, - { 127480547, "Play_Wp_Bullet_Whiz_SMG_Stereo" }, - { 190125904, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, - { 194661660, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, - { 276438884, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, - { 323625973, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, - { 480048034, "Play_Wp_Bullet_Whiz_Pistol_Stereo" }, - { 586259199, "Play_Wp_Bullet_Whiz_Sniper_Stereo" }, - { 666162086, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, - { 748393306, "Play_Wp_Bullet_Whiz_SMG_Stereo" }, - { 980875791, "Play_Wp_Bullet_Whiz_SMG_Stereo" }, - { 11005701, "Play_Mvt_Breach_S0_ArmR_Charge_Rifle_Down_1P" }, - { 27804678, "Play_Mvt_Breach_S0_Arm_Fast_Short_1P" }, - { 41379056, "Play_Mvt_Breach_S0_ArmL_Long_Slow_1P" }, - { 47426058, "Play_Mvt_Breach_S0_Arm_Inspect_Med_Fast_1P" }, - { 48824560, "Play_FS_Mvt_Breach_Land" }, - { 68839967, "Play_Mvt_Breach_S0_ArmL_Fast_Ramp_1P" }, - { 74832429, "Play_Mvt_Breach_S0_Arm_Long_Ramp_1P" }, - { 76447012, "Play_Mvt_Breach_S0_ArmR_Med_GunUp1_1P" }, - { 77286081, "Play_Mvt_Breach_S0_ArmL_Med_Ramp_1P" }, - { 120624101, "Play_Mvt_Breach_S0_Arm_Both_Slam_1P" }, - { 177533091, "Play_Mvt_Breach_S0_Arm_Long_Ramp_1P" }, - { 196823849, "Play_Mvt_Breach_S0_Arm_Fast_Short_1P" }, - { 199696126, "Play_Breach_Common_Concuss" }, - { 205972869, "Play_FS_Mvt_Breach_Run" }, - { 216132641, "Play_Mvt_Breach_S0_Arm_Inspect_Med_Fast_1P" }, - { 251105321, "Play_Mvt_Breach_S0_Arm_Inspect_Short_1P" }, - { 387411583, "Play_Mvt_Breach_S0_ArmR_Med_GunDown1_1P" }, - { 411458477, "Play_Mvt_Breach_S0_Arm_Fast_Dramatic_1P" }, - { 466143584, "Play_Mvt_Breach_S0_Arm_Inspect_Short_1P" }, - { 487712690, "Play_Mvt_Breach_S0_Arm_Inspect_Rifle_Med_1P" }, - { 490604922, "Play_Mvt_Breach_S0_Arm_Inspect_Short_1P" }, - { 494379384, "Play_FS_Mvt_Breach_Jump" }, - { 496108727, "Play_Mvt_Breach_S0_Impact_Light_1P" }, - { 501164797, "Play_Mvt_Breach_S0_Arm_Med_1P" }, - { 533813197, "Play_Mvt_Breach_S0_Arm_Inspect_Down_Small_1P" }, - { 535971986, "Play_Mvt_Breach_S0_ArmR_Charge_Rifle_Down_1P" }, - { 591987146, "Play_Mvt_Breach_S0_Arm_Inspect_Down_Small_1P" }, - { 606318652, "Play_Mvt_Breach_S0_ArmL_Med_Ramp_1P" }, - { 627559003, "Play_Mvt_Breach_S0_ArmR_Charge_Rifle_Down_1P" }, - { 673248071, "Play_Breach_Common_Concuss_Sweep" }, - { 690489098, "Play_Mvt_Breach_S0_ArmR_Charge_Rifle_Up_1P" }, - { 751928640, "Play_Mvt_Breach_S0_ArmR_Short_Fast2_1P" }, - { 773765385, "Play_Mvt_Breach_S0_ArmL_Long_Slow_1P" }, - { 775709565, "Play_Mvt_Breach_S0_ArmL_Med_Ramp_1P" }, - { 794251355, "Play_Mvt_Breach_S0_Arm_Inspect_Rifle_Med_1P" }, - { 804371661, "Play_Mvt_Breach_S0_ArmR_Med_GunDown1_1P" }, - { 854273216, "Play_Mvt_Breach_S0_Arm_Fast_Short_1P" }, - { 855277942, "Play_Mvt_Breach_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 867638637, "Play_Mvt_Breach_S0_ArmR_Short_Slow2_1P" }, - { 870354289, "Play_Mvt_Breach_S0_Arm_Inspect_Rifle_Med_1P" }, - { 910372736, "Play_Mvt_Breach_S0_ArmL_Long_Slow_1P" }, - { 946645250, "Play_Mvt_Breach_S0_ArmR_Med_GunDown1_1P" }, - { 1012366820, "Play_Mvt_Breach_S0_Arm_Inspect_Med_1P" }, - { 1054028264, "Play_Mvt_Breach_S0_Arm_Fast_Dramatic_1P" }, - { 1073353812, "Play_Mvt_Breach_S0_Arm_Fast_Dramatic_1P" }, - { 13235962, "Play_Mvt_Clay_S0_ArmL_Fast_Ramp_1P" }, - { 27198428, "Play_Mvt_Clay_S0_ArmL_Fast_Ramp_1P" }, - { 29189838, "Play_Clay_Boomba_Equip_End" }, - { 43342306, "Play_Clay_Rocket_QuickEquip" }, - { 51203384, "Play_FS_Mvt_Clay_Run" }, - { 57792514, "Play_FS_Mvt_Clay_Jump" }, - { 67055588, "Play_Mvt_Clay_S0_Arm_Inspect_Short_1P" }, - { 68358691, "Play_Mvt_Clay_ArmR_Charge_Rifle_Up_1P" }, - { 68443316, "Play_Mvt_Clay_ArmR_Med_Stress_1P" }, - { 68923613, "Play_Mvt_Clay_ArmR_Med_GunDown1_1P" }, - { 83046698, "Play_FS_Mvt_Clay_Run" }, - { 84723802, "Play_WP_Cluster_Equip_PinSpin" }, - { 93899033, "Play_Abil_Boomba_TinTank_Move_Wall_Bounce" }, - { 129916599, "Play_Mvt_Clay_Arm_Med_1P" }, - { 139568643, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 154985308, "Play_FS_Mvt_Clay_Run" }, - { 159864180, "Play_Wp_Rocket_Launcher_Explo" }, - { 169215155, "Play_Clay_Rocket_Equip_Mech_4_PopOut" }, - { 176510090, "Play_Mvt_Clay_S0_Arm_Both_Slam_1P" }, - { 198659821, "Play_Abil_Boomba_TinTank_Hit_Confirm" }, - { 206580165, "Play_Mvt_Clay_ArmR_Med_Stress_1P" }, - { 207961325, "Play_FS_Mvt_Clay_Run" }, - { 212576009, "Play_Clay_Rocket_FirstEquip_TP" }, - { 217502397, "Play_Clay_Boomba_Equip_Start" }, - { 219403755, "Play_Clay_Rocket_FirstEquip_TP" }, - { 220005448, "Play_Mvt_Clay_ArmR_Med_GunUp1_1P" }, - { 221540076, "Play_Mvt_Clay_ArmR_Charge_Rifle_Down_1P" }, - { 228510317, "Play_Abil_Boomba_TinTank_Drop_Impact_Deployed" }, - { 240822222, "Play_Mvt_Clay_S0_Arm_Inspect_Med_1P" }, - { 250659261, "Play_FS_Mvt_Clay_Land_Normal" }, - { 250931299, "Play_Mvt_Clay_S0_Arm_Inspect_Down_Small_1P" }, - { 253498510, "Play_Mvt_Clay_ArmR_Charge_Rifle_Down_1P" }, - { 254303121, "Play_Abil_Boomba_EnemySpottedAlert_1" }, - { 292878989, "Play_Clay_Rocket_Equip_Energy_FinalCharge_01" }, - { 295710658, "Play_Mvt_Clay_S0_Arm_Inspect_Down_Small_1P" }, - { 297410203, "Play_Mvt_Clay_S0_Arm_Fast_Dramatic_1P" }, - { 313035005, "Play_Clay_Boomba_Cast" }, - { 313491279, "Play_Wp_Cluster_Equip_PinPull" }, - { 316890761, "Play_FS_Mvt_Clay_Run" }, - { 317772774, "Play_Mvt_Clay_ArmR_Short_Slow2_1P" }, - { 327964453, "Play_Clay_Boomba_Equip_Knock" }, - { 329078754, "Play_Mvt_Clay_Arm_Long_Ramp_1P" }, - { 332740160, "Play_Mvt_Clay_ArmR_Short_Fast2_1P" }, - { 343098184, "Play_Wp_Cluster_Equip_Shake" }, - { 348396496, "Play_Mvt_Clay_ArmR_Short_Slow2_1P" }, - { 358781643, "Play_Mvt_Clay_ArmR_Med_Stress_1P" }, - { 373097122, "Play_FS_Mvt_Clay_Jump" }, - { 387254339, "Play_Mvt_Clay_ArmR_Charge_Rifle_Up_1P" }, - { 389587049, "Play_Clay_Rocket_Equip_Mech_5_Strap_01" }, - { 396316093, "Play_Wp_Grenade_Bounce_Cluster_Submunition" }, - { 400220120, "Play_Mvt_Clay_S0_Arm_Fast_Dramatic_1P" }, - { 405974285, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 409002720, "Play_Wp_RocketLauncher_Fire" }, - { 423472498, "Play_Mvt_Clay_S0_Arm_Inspect_Short_1P" }, - { 431910233, "Play_Clay_Rocket_Equip_Mech_1_Lift_01" }, - { 434192349, "Play_Mvt_Clay_Impact_Light_1P" }, - { 456078022, "Play_Mvt_Clay_S0_Arm_Fast_Short_1P" }, - { 457128485, "Play_Mvt_Clay_ArmR_Med_GunDown1_1P" }, - { 458733334, "Play_Mvt_Clay_Arm_Med_1P" }, - { 466758902, "Play_Clay_Rocket_Equip_Energy_Ripple_01" }, - { 474271417, "Play_Wp_RocketLauncher_Fire" }, - { 486669115, "Play_Mvt_Clay_ArmR_Med_GunUp1_1P" }, - { 494406199, "Play_FS_Mvt_Clay_Run" }, - { 508507831, "Play_Wp_Cluster_Equip_Start" }, - { 509886637, "Play_Wp_Grenade_Bounce_Cluster_Submunition" }, - { 522097561, "Play_Mvt_Clay_ArmL_Long_Slow_1P" }, - { 524836223, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 528756048, "Play_Mvt_Clay_Impact_Light_1P" }, - { 529622927, "Play_Mvt_Clay_ArmL_Long_Slow_1P" }, - { 534260737, "Play_Mvt_Clay_ArmL_Med_Ramp_1P" }, - { 571487001, "Play_Abil_Clay_Satchel_Charge_Explo" }, - { 575779251, "Play_Mvt_Clay_S0_Arm_Inspect_Med_Fast_1P" }, - { 592348689, "Play_Mvt_Clay_S0_Arm_Both_Slam_1P" }, - { 594854309, "Play_Mvt_Clay_ArmR_Charge_Rifle_Down_1P" }, - { 607390262, "Play_Mvt_Clay_ArmL_Med_Ramp_1P" }, - { 610076857, "Play_Mvt_Clay_S0_Arm_Inspect_Med_1P" }, - { 639233670, "Play_Mvt_Clay_ArmL_Med_Ramp_1P" }, - { 640216924, "Play_Mvt_Clay_ArmL_Long_Slow_1P" }, - { 645276863, "Play_FS_Mvt_Clay_Land_Normal" }, - { 650395409, "Play_Clay_Rocket_Equip_Mech_1_Lift_01" }, - { 654451637, "Play_Mvt_Clay_S0_Arm_Inspect_Med_1P" }, - { 657430683, "Play_Clay_Rocket_Equip_Mech_2_Ripple_01" }, - { 666732565, "Play_Mvt_Clay_ArmR_Charge_Rifle_Up_1P" }, - { 685646540, "Play_Mvt_Clay_S0_Arm_Med_Short_1P" }, - { 697977623, "Play_Abil_Clay_Satchel_Charge_Beep" }, - { 698034986, "Play_Mvt_Clay_S0_Arm_Med_Short_1P" }, - { 703796714, "Play_Mvt_Clay_S0_Arm_Med_Short_1P" }, - { 703982704, "Play_FS_Mvt_Clay_Run" }, - { 718403422, "Play_Mvt_Clay_Impact_Light_1P" }, - { 723459897, "Play_Wp_Cluster_Submunition_Explo" }, - { 731307578, "Play_Mvt_Clay_S0_Arm_Both_Slam_1P" }, - { 740540152, "Play_Mvt_Clay_ArmR_Short_Fast2_1P" }, - { 760697239, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Med_1P" }, - { 761326639, "Play_Mvt_Clay_ArmR_Med_GunUp1_1P" }, - { 769220912, "Play_Clay_Rocket_Equip_Mech_6_Optic_01" }, - { 806251378, "Play_Mvt_Clay_ArmR_Med_GunDown1_1P" }, - { 817513811, "Play_Clay_Cluster_PreExplo_Primary" }, - { 824652467, "Play_FS_Mvt_Clay_Run" }, - { 826289993, "Play_Mvt_Clay_Arm_Long_Ramp_1P" }, - { 828249212, "Play_Mvt_Clay_S0_Arm_Inspect_Med_Fast_1P" }, - { 837139934, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Med_1P" }, - { 843672614, "Play_Abil_Boomba_TinTank_Die_Time_Out" }, - { 845658530, "Play_Abil_Boomba_TinTank_Explo_C" }, - { 852064256, "Play_Mvt_Clay_Arm_Med_1P" }, - { 858781729, "Play_Mvt_Clay_ArmR_Short_Slow2_1P" }, - { 861152823, "Play_Mvt_Clay_S0_Arm_Fast_Short_1P" }, - { 877709024, "Play_Wp_Grenade_Bounce_Cluster_Submunition" }, - { 878888669, "Play_Mvt_Clay_ArmR_Short_Fast2_1P" }, - { 914318658, "Play_FS_Mvt_Clay_Land_Normal" }, - { 930793133, "Play_Abil_Clay_Jump_Satchel_Throw" }, - { 932166160, "Play_Mvt_Clay_S0_Arm_Inspect_Med_Fast_1P" }, - { 935063894, "Play_Wp_Cluster_Equip_End" }, - { 945820609, "Play_Mvt_Clay_Arm_Long_Ramp_1P" }, - { 956744032, "Play_Mvt_Clay_Impact_Light_1P" }, - { 962567452, "Play_Mvt_Clay_S0_Arm_Inspect_Short_1P" }, - { 974950466, "Play_Mvt_Clay_S0_Arm_Fast_Dramatic_1P" }, - { 978346971, "Play_Clay_Rocket_Equip_Energy_Initialize_01" }, - { 1017734376, "Play_Mvt_Clay_S0_ArmL_Fast_Ramp_1P" }, - { 1021435229, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Med_1P" }, - { 1061535882, "Play_Mvt_Clay_S0_Arm_Fast_Short_1P" }, - { 1063142655, "Play_Mvt_Clay_S0_Arm_Inspect_Down_Small_1P" }, - { 1071340743, "Play_FS_Mvt_Clay_Jump" }, - { 2360986, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 5533847, "Play_Mvt_Gumshoe_S0_Arm_Fast_Dramatic_1P" }, - { 7261830, "Play_Mvt_Gumshoe_Arm_Long_Ramp_1P" }, - { 37183230, "Play_Mvt_Gumshoe_ArmR_Charge_Rifle_Down_1P" }, - { 37496776, "Play_Mvt_Gumshoe_ArmR_Med_GunDown1_1P" }, - { 37753943, "Play_Gumshoe_AbilE_Cast" }, - { 44363629, "Play_Gumshoe_AbilX_RevealEnemy_3P" }, - { 45394379, "Play_Mvt_Gumshoe_ArmL_Med_Ramp_1P" }, - { 71390614, "Play_Gumshoe_AbilE_Cast" }, - { 94663211, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Rifle_Med_1P" }, - { 101413693, "Play_Mvt_Gumshoe_ArmR_Short_Fast2_1P" }, - { 104447453, "Play_Gumshoe_AbilQ_Possess" }, - { 111630024, "Play_Gumshoe_AbilX_Hat_Projectile" }, - { 111786622, "Play_Gumshoe_AbilX_Drone_FlyAway" }, - { 148819059, "Play_Gumshoe_AbilE_Equip" }, - { 171992738, "Play_Mvt_Gumshoe_S0_Arm_Med_Short_1P" }, - { 172822608, "Play_Mvt_Gumshoe_S0_Arm_Fast_Short_1P" }, - { 188992570, "Play_Gumshoe_AbilQ_Equip" }, - { 189682582, "Play_Mvt_Gumshoe_ArmR_Short_Slow2_1P" }, - { 221924872, "Play_Gumshoe_AbilE_Cast" }, - { 224137550, "Play_Mvt_Gumshoe_S0_Arm_Fast_Dramatic_1P" }, - { 286319199, "Play_Gumshoe_AbilQ_Dart_Explode" }, - { 292807303, "Play_Mvt_Gumshoe_Impact_Light_1P" }, - { 296306347, "Play_Gumshoe_Abil_GadgetCatch" }, - { 298507778, "Play_Gumshoe_AbilX_Hat_Projectile" }, - { 303651157, "Play_Gumshoe_AbilE_Equip" }, - { 320999092, "Play_Gumshoe_AbilQ_Unpossess" }, - { 332652404, "Play_Gumshoe_AbilQ_Equip" }, - { 346165264, "Play_Gumshoe_AbilQ_Cloak" }, - { 354326435, "Play_Gumshoe_AbilE_Equip" }, - { 362689037, "Play_Gumshoe_AbilQ_Cast" }, - { 377418659, "Play_Gumshoe_AbilQ_Equip" }, - { 390407554, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Down_Small_1P" }, - { 393746614, "Play_Gumshoe_AbilE_TrapExplosion" }, - { 394682899, "Play_Gumshoe_AbilQ_Cloak" }, - { 397935079, "Play_Gumshoe_AbilQ_Unpossess" }, - { 415944717, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Rifle_Med_1P" }, - { 435077897, "Play_Gumshoe_AbilX_Drone_FlyAway" }, - { 440208938, "Play_Gumshoe_Abil_GadgetRecall" }, - { 443649765, "Play_Mvt_Gumshoe_Arm_Med_1P" }, - { 458730654, "Play_Gumshoe_AbilE_Equip" }, - { 474873959, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Short_1P" }, - { 480508859, "Play_Mvt_Gumshoe_ArmR_Med_GunUp1_1P" }, - { 484135740, "Play_gumshoe_abil4_trap_cloak" }, - { 496786542, "Play_Gumshoe_AbilX_Cast" }, - { 504661995, "Play_Gumshoe_AbilQ_Unpossess" }, - { 505593477, "Play_Gumshoe_AbilQ_Projectile" }, - { 514344038, "Play_Gumshoe_AbilGrenade_Cast" }, - { 516282224, "Play_Gumshoe_AbilGrenade_Cast" }, - { 528097960, "Play_Gumshoe_AbilQ_RemoveDartComplete" }, - { 539588545, "Play_Mvt_Gumshoe_S0_Arm_Fast_Short_1P" }, - { 542934283, "Play_Gumshoe_Abil_Trap_Mark" }, - { 546477651, "Play_Gumshoe_AbilE_ChainTarget" }, - { 564994001, "Play_Mvt_Gumshoe_S0_Arm_Fast_Short_1P" }, - { 570994647, "Play_Mvt_Gumshoe_ArmR_Short_Slow2_1P" }, - { 589319912, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Med_Fast_1P" }, - { 594862987, "Play_Mvt_Gumshoe_ArmR_Med_GunDown1_1P" }, - { 602015029, "Play_Gumshoe_AbilE_Cast" }, - { 622741076, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Rifle_Lower_1P" }, - { 625063946, "Play_Gumshoe_AbilQ_Cast" }, - { 633727612, "Play_Mvt_Gumshoe_ArmR_Short_Fast2_1P" }, - { 634625341, "Play_gumshoe_abil4_bounce" }, - { 644812904, "Play_Gumshoe_AbilE_Equip" }, - { 658448341, "Play_Gumshoe_Grenade_Cage_Activate_3P" }, - { 662290975, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Short_1P" }, - { 664059727, "Play_Gumshoe_AbilQ_Dart_HitConfirm" }, - { 664651963, "Play_Gumshoe_AbilQ_Dart_Fire" }, - { 665367922, "Play_Gumshoe_AbilQ_Possess" }, - { 667791074, "Play_Gumshoe_AbilX_Cast" }, - { 692475394, "Play_Gumshoe_AbilX_Hat_Projectile" }, - { 711656157, "Play_Gumshoe_AbilQ_Cloak" }, - { 725688578, "Play_Gumshoe_AbilQ_Possess" }, - { 737236125, "Play_Mvt_Gumshoe_ArmL_Long_Slow_1P" }, - { 762605826, "Play_Gumshoe_AbilX_Drone_FlyAway" }, - { 771677780, "Play_gumshoe_abil4_land" }, - { 778572725, "Play_Gumshoe_AbilE_Equip" }, - { 802170339, "Play_Gumshoe_AbilP_Cast_1P" }, - { 823139676, "Play_Gumshoe_Abil_device_returnprojectile" }, - { 829984300, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Med_1P" }, - { 832047044, "Play_Gumshoe_AbilX_Cast" }, - { 850436846, "Play_Gumshoe_AbilQ_RemoveDart" }, - { 862825942, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Short_1P" }, - { 864326029, "Play_Mvt_Gumshoe_S0_ArmL_Fast_Ramp_1P" }, - { 889676119, "Play_Gumshoe_AbilQ_Dart_HitConfirm" }, - { 901610901, "Play_Mvt_Gumshoe_S0_Arm_Fast_Dramatic_1P" }, - { 923382065, "Play_Gumshoe_AbilQ_Place" }, - { 932147218, "Play_Gumshoe_AbilX_Cast" }, - { 944573705, "Play_Gumshoe_Abil_Trap_Mark" }, - { 947887246, "Play_Mvt_Gumshoe_ArmR_Short_Fast2_1P" }, - { 950215755, "Play_Gumshoe_AbilQ_Destroyed" }, - { 965053122, "Play_Mvt_Gumshoe_ArmR_Med_Stress_1P" }, - { 974591021, "Play_Gumshoe_Abil_device_returnshake" }, - { 976065589, "Play_Gumshoe_AbilE_Cast" }, - { 976148207, "Play_FS_Mvt_Gumshoe_Jump" }, - { 976186921, "Play_Gumshoe_AbilQ_Equip" }, - { 976306022, "Play_Mvt_Gumshoe_ArmR_Short_Slow2_1P" }, - { 980281516, "Play_Gumshoe_AbilE_Cast" }, - { 1031239042, "Play_FS_Mvt_Gumshoe_Land" }, - { 1044802595, "Play_Gumshoe_AbilQ_RemoveDart" }, - { 1059777015, "Play_Gumshoe_AbilQ_RemoveDartComplete" }, - { 1071249383, "Play_Gumshoe_AbilE_Destroyed" }, - { 13179082, "Play_Hunter_AbilX_HitConf_Death" }, - { 40135221, "Play_Hunter_AbilE_Missile" }, - { 63787629, "Play_Hunter_AbilX_Channel" }, - { 69970482, "Play_Mvt_Hunter_S0_Arm_Fast_Dramatic_1P" }, - { 84650306, "Play_Hunter_S0_AB_X_SuperBolt_Equip_HUD_Appear" }, - { 142463243, "Play_Mvt_Hunter_S0_Arm_Inspect_Down_Small_1P" }, - { 146954197, "Play_Mvt_Hunter_S0_Arm_Long_Ramp_1P" }, - { 150999043, "Play_Hunter_S0_AB_Q_SonarBolt_Equip_Circle" }, - { 152922219, "Play_Mvt_Hunter_S0_Arm_Both_Slam_1P" }, - { 155443141, "Play_Hunter_AbilQ_Destroyed" }, - { 179132661, "Play_FS_Hunter_Land" }, - { 180058477, "Play_Mvt_Hunter_S0_Arm_Fast_Dramatic_1P" }, - { 204699503, "Play_Hunter_S0_AB_X_SuperBolt_Cancel_Bow_Mvt_D" }, - { 212941910, "Play_Mvt_Hunter_S0_Arm_Fast_Dramatic_1P" }, - { 237048942, "Play_Mvt_Hunter_S0_ArmR_Med_GunDown1_1P" }, - { 246303013, "Play_Hunter_AbilX_Channel_BowMvt_A_FP" }, - { 257083749, "Play_Mvt_Hunter_S0_Arm_Long_Ramp_1P" }, - { 257804690, "Play_Hunter_AbilE_Equip" }, - { 278209818, "Play_Mvt_Hunter_S0_Arm_Fast_Short_1P" }, - { 301192990, "Play_Hunter_Abil4_Equip_Bow_Mvt_B" }, - { 303555850, "Play_Mvt_Hunter_S0_ArmR_Short_Fast2_1P" }, - { 345810069, "Play_Mvt_Hunter_S0_ArmR_Short_Slow2_1P" }, - { 347140840, "Play_Mvt_Hunter_S0_Arm_Fast_Short_1P" }, - { 348014624, "Play_Mvt_Hunter_S0_ArmR_Med_GunDown1_1P" }, - { 359206669, "Play_Hunter_AbilGrenade_Hit_Confirm" }, - { 366618498, "Play_Hunter_S0_AB_Q_SonarBolt_Cancel_Bow_Mvt" }, - { 371605645, "Play_Hunter_AbilE_Dart_Complete" }, - { 405301431, "Play_Mvt_Hunter_S0_Arm_Inspect_Med_Fast_1P" }, - { 416724551, "Play_Mvt_Hunter_S0_Arm_Inspect_Short_1P" }, - { 433705435, "Play_Mvt_Hunter_S0_ArmR_Med_GunDown1_1P" }, - { 462434580, "Play_Mvt_Hunter_S0_Arm_Inspect_Rifle_Med_1P" }, - { 475500538, "Play_FS_Hunter_Run" }, - { 475978051, "Play_Mvt_Hunter_S0_ArmR_Charge_Rifle_Up_1P" }, - { 477924749, "Play_Hunter_AbilQ_Ricochet_3P" }, - { 479626970, "Play_Mvt_Hunter_S0_Arm_Inspect_Down_Small_1P" }, - { 486162629, "Play_Hunter_S0_AB_X_SuperBolt_Cancel_Bow_Mvt_B" }, - { 501493240, "Play_Hunter_Abil_SonarBolt_SonarPing" }, - { 513846439, "Play_Hunter_S0_AB_Q_SonarBolt_Equip_Elec_A" }, - { 517943327, "Play_Hunter_S0_AB_X_SuperBolt_Cancel_Bow_Mvt_A" }, - { 518974246, "Play_Mvt_Hunter_S0_Arm_Inspect_Short_1P" }, - { 528190088, "Play_Hunter_AbilX_HitConf_Death" }, - { 537436209, "Play_Mvt_Hunter_S0_Arm_Med_1P" }, - { 537586624, "Play_Hunter_S0_AB_X_SuperBolt_Cancel_Bow_Mvt_C" }, - { 537886988, "Play_Mvt_Hunter_S0_ArmL_Med_Ramp_1P" }, - { 543066845, "Play_Hunter_AbilE_Dart_Complete" }, - { 546032425, "Play_Mvt_Hunter_S0_ArmL_Long_Slow_1P" }, - { 557246503, "Play_Mvt_Hunter_S0_ArmL_Med_Ramp_1P" }, - { 570451217, "Play_Hunter_AbilE_Dart_HitConfirm" }, - { 581179766, "Play_FS_Hunter_Jump" }, - { 591246537, "Play_Mvt_Hunter_S0_Impact_Light_1P" }, - { 592275078, "Play_Hunter_AbilX_OnBeam_Fire" }, - { 607763976, "Play_Mvt_Hunter_S0_Arm_Inspect_Short_1P" }, - { 612629035, "Play_Mvt_Hunter_S0_ArmR_Charge_Rifle_Down_1P" }, - { 625581571, "Play_Mvt_Hunter_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 636924082, "Play_Mvt_Hunter_S0_Arm_Fast_Short_1P" }, - { 644227778, "Play_Hunter_AbilE_Drone_Destroyed" }, - { 659154469, "Play_Hunter_AbilX_Fire_BowMvt_A_FP" }, - { 665772451, "Play_Mvt_Hunter_S0_Arm_Inspect_Med_Fast_1P" }, - { 683523352, "Play_Abil_Joules_X_LaserReady" }, - { 695069383, "Play_Mvt_Hunter_S0_Arm_Inspect_Med_1P" }, - { 723394308, "Play_Hunter_Abil4_Deployed_Start" }, - { 754945721, "Play_Hunter_AbilE_Deploy" }, - { 769104514, "Play_Hunter_Abil4_Equip_Bow_Mvt_A" }, - { 786000043, "Play_Hunter_AbilX_Channel" }, - { 815837420, "Play_Mvt_Hunter_S0_Arm_Inspect_Rifle_Med_1P" }, - { 820883538, "Play_Hunter_S0_AB_Q_SonarBolt_Cancel_Zap" }, - { 846536626, "Play_Hunter_AbilX_Equip_BowMvt_B" }, - { 848346435, "Play_Hunter_AbilX_Equip_Energy" }, - { 857585574, "Play_Mvt_Hunter_S0_ArmR_Med_GunUp1_1P" }, - { 870334179, "Play_Mvt_Hunter_S0_Arm_Inspect_Rifle_Med_1P" }, - { 880269375, "Play_Mvt_Hunter_S0_ArmR_Charge_Rifle_Down_1P" }, - { 891851574, "Play_Mvt_Hunter_S0_ArmL_Long_Slow_1P" }, - { 918654276, "Play_Hunter_AbilX_Channel_BowMvt_A_FP" }, - { 933178236, "Play_Mvt_Hunter_S0_ArmL_Med_Ramp_1P" }, - { 968722011, "Play_Mvt_Hunter_S0_ArmL_Long_Slow_1P" }, - { 970109952, "Play_Hunter_AbilQ_Cast" }, - { 1018099411, "Play_Hunter_AbilQ_Ricochet_3P" }, - { 1018470853, "Play_Hunter_AbilE_Missile" }, - { 1019981508, "Play_Hunter_AbilQ_Hit_3P" }, - { 1024013262, "Play_Hunter_AbilX_OnBeam_Warning" }, - { 1029410771, "Play_Hunter_S0_AB_Q_SonarBolt_Equip_Bow_Mvt_C" }, - { 1038565365, "Play_Hunter_AbilX_Channel_BowMvt_B_FP" }, - { 1040322472, "Play_Mvt_Hunter_S0_ArmL_Fast_Ramp_1P" }, - { 1057456715, "Play_Mvt_Hunter_S0_ArmR_Charge_Rifle_Down_1P" }, - { 443429107, "Play_Killjoy_AbilX_Lockdown_Detained_End" }, - { 864881051, "Play_Killjoy_AbilX_Lockdown_Detained_End" }, - { 16669629, "Play_Phoenix_AbilX_FormDecay" }, - { 67988597, "Play_Mvt_Phoenix_S0_Arm_Inspect_Med_Fast_1P" }, - { 71358294, "Play_Mvt_Phoenix_S0_Arm_Inspect_Rifle_Med_1P" }, - { 72061220, "Play_Phoenix_Abil4_Damage" }, - { 84281831, "Play_Phoenix_Abil4_Projectile_Drop" }, - { 94252168, "Play_Mvt_Phoenix_S0_Arm_Fast_Dramatic_1P" }, - { 119517181, "Play_Phoenix_AbilX_FormDecay" }, - { 129503895, "Play_Mvt_Phoenix_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 140488807, "Play_Mvt_Phoenix_ArmL_Long_Slow_1P_01" }, - { 215162538, "Play_Mvt_Phoenix_S0_Arm_Inspect_Short_1P" }, - { 225099451, "Play_Mvt_Phoenix_S0_Arm_Fast_Dramatic_1P" }, - { 229065898, "Play_Mvt_Phoenix_S0_Arm_Inspect_Rifle_Med_1P" }, - { 229370313, "Play_Mvt_Phoenix_S0_Arm_Fast_Short_1P" }, - { 235118468, "Play_Mvt_Phoenix_Impact_Light_1P_01" }, - { 262598031, "Play_Mvt_Phoenix_ArmR_Med_GunDown1_1P_01" }, - { 278308601, "Play_Mvt_Phoenix_ArmR_Med_GunDown1_1P_01" }, - { 291943220, "Play_FS_Mvt_Phoenix_Land_Normal" }, - { 309240851, "Play_Phoenix_AbilX_FormDecay" }, - { 312501155, "Play_Mvt_Phoenix_S0_Arm_Inspect_Short_1P" }, - { 340157568, "Play_FS_Mvt_Phoenix_Run" }, - { 367189794, "Play_Mvt_Phoenix_ArmR_Charge_Rifle_Down_1P_01" }, - { 371615188, "Play_Mvt_Phoenix_ArmL_Med_Ramp_1P_01" }, - { 371815030, "Play_Mvt_Phoenix_ArmL_Long_Slow_1P_01" }, - { 374168422, "Play_Phoenix_AbilX_FormDecay" }, - { 377526034, "Play_Mvt_Phoenix_Arm_Long_Ramp_1P_01" }, - { 386423188, "Play_Phoenix_Abil4_ZoneDecay" }, - { 431496456, "Play_Mvt_Phoenix_ArmR_Med_GunUp1_1P_01" }, - { 467694713, "Play_Mvt_Phoenix_S0_Arm_Fast_Short_1P" }, - { 504125435, "Play_Mvt_Phoenix_S0_ArmL_Fast_Ramp_1P" }, - { 504911721, "Play_Mvt_Phoenix_ArmR_Charge_Rifle_Down_1P_01" }, - { 557848170, "Play_Mvt_Phoenix_Arm_Long_Ramp_1P_01" }, - { 571842583, "Play_Mvt_Phoenix_S0_Arm_Fast_Dramatic_1P" }, - { 652091217, "Play_Phoenix_AbilQ_Projectile" }, - { 659166348, "Play_Mvt_Phoenix_ArmR_Short_Slow2_1P_01" }, - { 671252989, "Play_Mvt_Phoenix_S0_Arm_Inspect_Rifle_Med_1P" }, - { 684020280, "Play_Phoenix_AbilQ_WallDecay" }, - { 690792176, "Play_Mvt_Phoenix_ArmR_Charge_Rifle_Down_1P_01" }, - { 697896528, "Play_Mvt_Phoenix_ArmR_Short_Fast2_1P_01" }, - { 703777731, "Play_Mvt_Phoenix_S0_Arm_Inspect_Med_Fast_1P" }, - { 712864531, "Play_Mvt_Phoenix_S0_Arm_Inspect_Short_1P" }, - { 736822635, "Play_Phoenix_AbilE_FlashPlayer" }, - { 738425851, "Play_Mvt_Phoenix_ArmR_Charge_Rifle_Up_1P_01" }, - { 751949940, "Play_Phoenix_AbilE_FlashPlayer" }, - { 777183187, "Play_Phoenix_AbilE_FlashPlayer" }, - { 810549734, "Play_Mvt_Phoenix_S0_Arm_Inspect_Med_1P" }, - { 847270043, "Play_Mvt_Phoenix_ArmR_Med_GunDown1_1P_01" }, - { 850229954, "Play_Phoenix_AbilE_Projectile" }, - { 865632355, "Play_Mvt_Phoenix_ArmL_Med_Ramp_1P_01" }, - { 892550313, "Play_Mvt_Phoenix_ArmL_Long_Slow_1P_01" }, - { 921339326, "Play_Mvt_Phoenix_S0_Arm_Inspect_Down_Small_1P" }, - { 932383103, "Play_Mvt_Phoenix_S0_Arm_Fast_Short_1P" }, - { 970595663, "Play_Mvt_Phoenix_ArmL_Med_Ramp_1P_01" }, - { 1021373450, "Play_Mvt_Phoenix_S0_Arm_Inspect_Down_Small_1P" }, - { 1057678816, "Play_FS_Mvt_Phoenix_Jump" }, - { 1073182211, "Play_Mvt_Phoenix_Arm_Med_1P_01" }, - { 1861258, "Play_Mvt_Sarge_S0_Arm_Med_Short_1P" }, - { 14658819, "Play_Sarge_AbilQ_Projectile_Bounce" }, - { 35600789, "Play_Mvt_Sarge_S0_Arm_Fast_Dramatic_1P" }, - { 47740383, "Play_Sarge_OrbitalStrike_Equip_B" }, - { 82450467, "Play_Sarge_Smoke_Equip_C" }, - { 87246914, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Down_1P" }, - { 88728930, "Play_FS_Mvt_Sarge_Land_Normal" }, - { 103007205, "Play_Sarge_Molotov_Equip_D" }, - { 122828273, "Play_Sarge_Molotov_Equip_B" }, - { 143920235, "Play_sarge_temp_Orbital_Laser_Target_Warning" }, - { 155207807, "Play_Sarge_Smoke_DeployButton" }, - { 157842772, "Play_Mvt_Sarge_S0_Arm_Long_Ramp_1P" }, - { 192029875, "Play_Sarge_Smoke_SelectLocation" }, - { 203972786, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_Fast_1P" }, - { 204677409, "Play_Sarge_Smoke_Equip_B" }, - { 211236803, "Play_Mvt_Sarge_S0_Arm_Long_Slow_1P" }, - { 211550494, "Play_Sarge_Smoke_SelectLocation" }, - { 227424184, "Play_Mvt_Sarge_S0_Arm_Med_GunDown1_1P" }, - { 239582629, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Down_1P" }, - { 243476854, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Up_1P" }, - { 255528481, "Play_Mvt_Sarge_S0_Arm_Med_1P" }, - { 278060208, "Play_Sarge_StimBeacon_Equip_E_FP" }, - { 308908440, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_Fast_1P" }, - { 322014451, "Play_Mvt_Sarge_S0_Arm_Inspect_Down_Small_1P" }, - { 337659281, "Play_Mvt_Sarge_S0_Arm_Inspect_Short_1P" }, - { 342919638, "Play_FS_Mvt_Sarge_Jump" }, - { 349187678, "Play_Sarge_StimBeacon_Cast" }, - { 358450983, "Play_Sarge_Molotov_Equip_C" }, - { 360426448, "Play_Sarge_OrbitalStrike_Equip_C" }, - { 379432893, "Play_Sarge_StimBeacon_Collapse" }, - { 406035264, "Play_Mvt_Sarge_S0_Arm_Med_GunUp1_1P" }, - { 411247999, "Play_Sarge_Abil4_Smoke_Form" }, - { 411613279, "Play_Sarge_StimBeacon_Buff_On" }, - { 413098362, "Play_Mvt_Sarge_S0_Arm_Med_Short_1P" }, - { 414954141, "Play_sarge_temp_Orbital_Laser_Hit_Confirm" }, - { 419921929, "Play_Mvt_Sarge_S0_Arm_Fast_Ramp_1P" }, - { 432681955, "Play_Sarge_StimBeacon_Cast" }, - { 440131116, "Play_Mvt_Sarge_S0_Arm_Long_Ramp_1P" }, - { 461072743, "Play_Sarge_StimBeacon_Equip_C_FP" }, - { 494264610, "Play_Sarge_OrbitalStrike_Equip_D" }, - { 495469114, "Play_Sarge_Smoke_Equip_A" }, - { 495752772, "Play_Sarge_StimBeacon_Equip_C_FP" }, - { 496430666, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_1P" }, - { 505941553, "Play_Mvt_Sarge_S0_Arm_Fast_Short_1P" }, - { 517064942, "Play_Sarge_StimBeacon_Equip_D_FP" }, - { 524042586, "Play_Sarge_OrbitalStrike_Equip_A" }, - { 537617327, "Play_Sarge_Abil4_Smoke_End" }, - { 552612160, "Play_Sarge_Smoke_Equip_3P" }, - { 556284069, "Play_Sarge_AbilQ_Projectile_Bounce" }, - { 557904287, "Play_Mvt_Sarge_S0_Arm_Long_Slow_1P" }, - { 570534951, "Play_Sarge_OrbitalStrike_Cast" }, - { 599682216, "Play_Sarge_Molotov_Equip_3P" }, - { 619777985, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Lower_1P" }, - { 629012902, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Down_1P" }, - { 691650820, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Up_1P" }, - { 697191195, "Play_Mvt_Sarge_S0_Arm_Med_Short_1P" }, - { 699641145, "Play_Sarge_Molotov_Equip_A" }, - { 706726328, "Play_Mvt_Sarge_S0_Arm_Fast_Dramatic_1P" }, - { 737330214, "Play_Mvt_Sarge_S0_Arm_Med_Ramp_1P" }, - { 743359947, "Play_Sarge_StimBeacon_Equip_C_FP" }, - { 746473770, "Play_Sarge_StimBeacon_Deploy" }, - { 749260517, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 771138405, "Play_Sarge_OrbitalStrike_Equip_3P" }, - { 788510999, "Play_Sarge_StimBeacon_Equip_3P" }, - { 804884580, "Play_Sarge_StimBeacon_Projectile_Land" }, - { 823415195, "Play_Mvt_Sarge_S0_Arm_Med_Stress_1P" }, - { 832806490, "Play_Sarge_AbilQ_Explode" }, - { 834670918, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_Fast_1P" }, - { 837075431, "Play_Sarge_AbilQ_Loop_End" }, - { 841115197, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_1P" }, - { 862175703, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Med_1P" }, - { 876363789, "Play_Sarge_AbilQ_Projectile_Bounce" }, - { 913252438, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 934204886, "Play_Sarge_Smoke_SelectLocation" }, - { 945903952, "Play_FS_Mvt_Sarge_Run" }, - { 951645695, "Play_Mvt_Sarge_S0_Arm_Long_Ramp_1P" }, - { 963376920, "Play_Sarge_Smoke_SelectLocation" }, - { 982953628, "Play_Mvt_Sarge_S0_Arm_Long_Slow_1P" }, - { 994279565, "Play_sarge_temp_Orbital_Laser_Fire" }, - { 1004937274, "Play_Mvt_Sarge_S0_Arm_Short_Slow2_1P" }, - { 1010619139, "Play_Sarge_StimBeacon_Cast" }, - { 1015907668, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Up_1P" }, - { 1047577156, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Med_1P" }, - { 1073036365, "Play_Mvt_Sarge_S0_Arm_Short_Fast_1P" }, - { 54583453, "Play_Thorne_AbilQ_Equip" }, - { 65553124, "Play_Thorne_Abil4_Explode" }, - { 71807128, "Play_Mvt_Thorne_S0_Impact_Light_1P" }, - { 74660681, "Play_Thorne_Abil4_Cast" }, - { 80328692, "Play_Thorne_AbilQ_Equip" }, - { 80793395, "Play_Mvt_Thorne_S0_ArmL_Med_Ramp_1P" }, - { 111520316, "Play_FS_Mvt_Thorne_Land_Normal" }, - { 116078668, "Play_Thorne_AbilX_Equip" }, - { 118933396, "Play_Thorne_AbilQ_Cast_Self" }, - { 125743997, "Play_Thorne_Abil4_Cast" }, - { 145831728, "Play_Thorne_Abil4_SlowFieldForm" }, - { 151022496, "Play_Mvt_Thorne_S0_Arm_Fast_Short_1P" }, - { 157259221, "Play_Mvt_Thorne_S0_Arm_Inspect_Med_Fast_1P" }, - { 173347704, "Play_Mvt_Thorne_S0_Arm_Med_Short_1P" }, - { 177460724, "Play_Mvt_Thorne_S0_ArmR_Med_Stress_1P" }, - { 181170872, "Play_Mvt_Thorne_S0_ArmR_Charge_Rifle_Down_1P" }, - { 193538982, "Play_Mvt_Thorne_S0_ArmR_Short_Fast2_1P" }, - { 212521999, "Play_Mvt_Thorne_S0_Arm_Long_Ramp_1P" }, - { 223035641, "Play_Thorne_Abil4_FootstepLayer" }, - { 226245579, "Play_Mvt_Thorne_S0_ArmL_Long_Slow_1P" }, - { 233943405, "Play_Thorne_AbilQ_Cast_Ally" }, - { 240201757, "Play_Thorne_Abil4_SlowFieldForm" }, - { 262117706, "Play_Thorne_AbilX_Equip" }, - { 288509825, "Play_Thorne_AbilQ_Cast_Self" }, - { 321998463, "Play_Mvt_Thorne_S0_ArmR_Short_Slow2_1P" }, - { 327667376, "Play_Thorne_AbilE_Cast" }, - { 360543173, "Play_Mvt_Thorne_S0_Arm_Fast_Dramatic_1P" }, - { 374837155, "Play_Thorne_Abil4_SlowFieldForm" }, - { 395794647, "Play_Mvt_Thorne_S0_Arm_Inspect_Short_1P" }, - { 409283538, "Play_Mvt_Thorne_S0_Arm_Fast_Dramatic_1P" }, - { 428199092, "Play_FS_Mvt_Thorne_Run" }, - { 443472445, "Play_Mvt_Thorne_S0_Arm_Both_Slam_1P" }, - { 457356267, "Play_Mvt_Thorne_S0_ArmL_Long_Slow_1P" }, - { 458849282, "Play_Thorne_AbilQ_Equip" }, - { 466396739, "Play_Mvt_Thorne_S0_ArmR_Short_Fast_1P" }, - { 487679136, "Play_Mvt_Thorne_S0_Arm_Inspect_Short_1P" }, - { 497358860, "Play_Thorne_Abil4_SlowFieldDecay" }, - { 512633259, "Play_Mvt_Thorne_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 524358433, "Play_Thorne_Abil4_SlowFieldDecay" }, - { 547072264, "Play_Thorne_AbilE_Equip" }, - { 552039229, "Play_Thorne_AbilX_Equip" }, - { 567727144, "Play_Thorne_AbilQ_Equip" }, - { 570118613, "Play_Thorne_AbilE_Equip" }, - { 571249917, "Play_Thorne_Abil4_SlowFieldDecay" }, - { 571898791, "Play_Mvt_Thorne_S0_ArmR_Short_Fast_1P" }, - { 579002065, "Play_Thorne_AbilQ_Equip" }, - { 595089752, "Play_Thorne_Abil4_Cast" }, - { 620615067, "Play_Thorne_AbilE_ToggleDirection" }, - { 652263699, "Play_FS_Mvt_Thorne_Jump" }, - { 660920585, "Play_Thorne_Abil4_FootstepLayer" }, - { 679813000, "Play_Thorne_AbilQ_Equip" }, - { 683471058, "Play_Thorne_Abil4_Cast" }, - { 687490128, "Play_Thorne_AbilQ_Equip" }, - { 698094853, "Play_Thorne_AbilX_Equip" }, - { 740816690, "Play_Mvt_Thorne_S0_Arm_Inspect_Med_1P" }, - { 744728871, "Play_Mvt_Thorne_S0_Arm_Inspect_Rifle_Lower_1P" }, - { 782591688, "Play_Thorne_AbilQ_Cast_Ally" }, - { 784045015, "Play_Mvt_Thorne_S0_Arm_Fast_Short_1P" }, - { 797446930, "Play_Mvt_Thorne_S0_Arm_Inspect_Rifle_Med_1P" }, - { 801522368, "Play_Thorne_AbilQ_Equip" }, - { 814212794, "Play_Mvt_Thorne_S0_ArmR_Charge_Rifle_Up_1P" }, - { 814563982, "Play_Mvt_Thorne_S0_Arm_Inspect_Short_1P" }, - { 840381748, "Play_Mvt_Thorne_S0_Arm_Med_1P" }, - { 850944671, "Play_Thorne_Abil4_FootstepLayer" }, - { 906821277, "Play_Mvt_Thorne_S0_ArmR_Short_Fast_1P" }, - { 944334151, "Play_Thorne_AbilX_Equip" }, - { 953479377, "Play_Mvt_Thorne_S0_ArmR_Med_GunDown1_1P" }, - { 962422402, "Play_Mvt_Thorne_S0_Arm_Inspect_Down_Small_1P" }, - { 976915023, "Play_Mvt_Thorne_S0_ArmL_Fast_Ramp_1P" }, - { 1042843630, "Play_Thorne_AbilX_Equip" }, - { 1050903132, "Play_Mvt_Thorne_S0_ArmL_Long_Slow_1P" }, - { 29972006, "Play_FS_Mvt_TrainingBot_Run" }, - { 868989185, "Play_FS_Mvt_TrainingBot_Land" }, - { 3537009, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Down_1P" }, - { 17168921, "Play_Mvt_Vampire_S0_ArmR_Short_Fast2_1P" }, - { 21662791, "Play_Mvt_Vampire_S0_ArmR_Short_Fast2_1P" }, - { 46511427, "Play_Mvt_Vampire_S0_ArmR_Med_Stress_1P" }, - { 56001895, "Play_Mvt_Vampire_S0_Arm_Inspect_Short_1P" }, - { 60755082, "Play_FS_Mvt_Vampire_Run" }, - { 64835709, "Play_FS_Mvt_Vampire_Run" }, - { 72653719, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Up_1P" }, - { 72708929, "Play_Mvt_Vampire_S0_ArmL_Med_Ramp_1P" }, - { 78835955, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_Fast_1P" }, - { 96228023, "Play_Mvt_Vampire_S0_ArmR_Med_GunDown1_1P" }, - { 101303189, "Play_ResetCarry_AbilQ_Cast" }, - { 136750681, "Play_Mvt_Vampire_S0_Arm_Fast_Dramatic_1P" }, - { 142433750, "Play_Mvt_Vampire_S0_ArmL_Fast_Ramp_1P" }, - { 147836769, "Play_Mvt_Vampire_S0_Arm_Inspect_Down_Small_1P" }, - { 156485494, "Play_Mvt_Vampire_S0_ArmR_Med_GunUp1_1P" }, - { 162107359, "Play_Mvt_Vampire_S0_ArmR_Short_Slow2_1P" }, - { 162124327, "Play_Mvt_Vampire_S0_ArmL_Fast_Ramp_1P" }, - { 174774862, "Play_ResetCarry_AbilE_Deactivate" }, - { 197719974, "Play_FS_Mvt_Vampire_Land" }, - { 215615142, "Play_FS_Mvt_Vampire_Run" }, - { 241308482, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Med_1P" }, - { 244906250, "Play_Mvt_Vampire_S0_ArmR_Short_Fast2_1P" }, - { 260876013, "Play_Mvt_Vampire_S0_ArmR_Med_GunDown1_1P" }, - { 268339589, "Play_Mvt_Vampire_S0_ArmR_Med_GunUp1_1P" }, - { 288523007, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Down_1P" }, - { 292736539, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Up_1P" }, - { 314267508, "Play_Mvt_Vampire_S0_Arm_Fast_Short_1P" }, - { 344844371, "Play_Mvt_Vampire_S0_ArmL_Long_Slow_1P" }, - { 355923655, "Play_ResetCarry_AbilE_Deactivate" }, - { 362160170, "Play_Mvt_Vampire_S0_Arm_Inspect_Short_1P" }, - { 374831254, "Play_Mvt_Vampire_S0_Arm_Med_Short_1P" }, - { 376353558, "Play_Mvt_Vampire_S0_Arm_Long_Ramp_1P" }, - { 383442030, "Play_Mvt_Vampire_S0_Arm_Fast_Short_1P" }, - { 384048274, "Play_FS_Mvt_Vampire_Run" }, - { 395226003, "Play_Mvt_Vampire_S0_Arm_Inspect_Down_Small_1P" }, - { 405841292, "Play_Mvt_Vampire_S0_Arm_Med_1P" }, - { 459969818, "Play_FS_Mvt_Vampire_Run" }, - { 468847661, "Play_Mvt_Vampire_S0_ArmL_Long_Slow_1P" }, - { 475879086, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_Fast_1P" }, - { 504637574, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_1P" }, - { 515409053, "Play_Mvt_Vampire_S0_ArmR_Med_Stress_1P" }, - { 534544196, "Play_ResetCarry_AbilE_Cast" }, - { 548412965, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 549762167, "Play_Mvt_Vampire_S0_ArmR_Short_Slow2_1P" }, - { 572244281, "Play_Mvt_Vampire_S0_Arm_Med_1P" }, - { 590894200, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 612277804, "Play_Mvt_Vampire_S0_Arm_Long_Ramp_1P" }, - { 614605314, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_1P" }, - { 654307619, "Play_FS_Mvt_Vampire_Run" }, - { 668417798, "Play_Mvt_Vampire_S0_Arm_Fast_Dramatic_1P" }, - { 669949459, "Play_Mvt_Vampire_S0_Arm_Inspect_Down_Small_1P" }, - { 674449208, "Play_Mvt_Vampire_S0_Arm_Med_1P" }, - { 675905828, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Up_1P" }, - { 678792563, "Play_Mvt_Vampire_S0_Impact_Light_1P" }, - { 685485980, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Med_1P" }, - { 693747001, "Play_Mvt_Vampire_S0_Arm_Inspect_Short_1P" }, - { 707198898, "Play_ResetCarry_AbilE_Deactivate" }, - { 712074996, "Play_Vampire_AbilX_Cast" }, - { 736274053, "Play_Mvt_Vampire_S0_ArmL_Fast_Ramp_1P" }, - { 780252837, "Play_Mvt_Vampire_S0_ArmR_Med_GunUp1_1P" }, - { 798536451, "Play_FS_Mvt_Vampire_Run" }, - { 844682614, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_Fast_1P" }, - { 848030033, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 849450261, "Play_Mvt_Vampire_S0_Impact_Light_1P" }, - { 854703033, "Play_Mvt_Vampire_S0_ArmR_Med_GunDown1_1P" }, - { 857101205, "Play_Mvt_Vampire_S0_Impact_Light_1P" }, - { 857112583, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Down_1P" }, - { 859194195, "Play_FS_Mvt_Vampire_Run" }, - { 862235303, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Med_1P" }, - { 864615907, "Play_FS_Mvt_Vampire_Jump" }, - { 871439535, "Play_ResetCarry_AbilQ_Cast" }, - { 875569689, "Play_Mvt_Vampire_S0_Arm_Med_Short_1P" }, - { 878768338, "Play_Mvt_Vampire_S0_ArmR_Short_Slow2_1P" }, - { 887936833, "Play_Vampire_AbilX_Cast" }, - { 894144433, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_1P" }, - { 921181750, "Play_Mvt_Vampire_S0_Arm_Fast_Short_1P" }, - { 932430738, "Play_FS_Mvt_Vampire_Jump" }, - { 948123795, "Play_Mvt_Vampire_S0_Arm_Fast_Dramatic_1P" }, - { 952738235, "Play_Mvt_Vampire_S0_Arm_Med_Short_1P" }, - { 953513700, "Play_FS_Mvt_Vampire_Land" }, - { 982162107, "Play_Mvt_Vampire_S0_ArmL_Med_Ramp_1P" }, - { 1002877773, "Play_FS_Mvt_Vampire_Land" }, - { 1023994028, "Play_FS_Mvt_Vampire_Jump" }, - { 1041837620, "Play_Mvt_Vampire_S0_ArmR_Med_Stress_1P" }, - { 1044758147, "Play_Mvt_Vampire_S0_Arm_Long_Ramp_1P" }, - { 1050359042, "Play_Mvt_Vampire_S0_ArmL_Med_Ramp_1P" }, - { 1055850039, "Play_Mvt_Vampire_S0_ArmL_Long_Slow_1P" }, - { 8959714, "Play_Wraith_Abil_SmokeDome_DeActivate" }, - { 13240462, "Play_Wraith_Abil_GlobalTeleport_Equip_Cancel" }, - { 45492547, "Play_Abil_Wraith_Q_Cast" }, - { 49106408, "Play_Wp_Fear_Toxin_Grenade_Flying_Whoosh" }, - { 68524465, "Play_Mvt_Wraith_ArmR_Med_GunDown1_1P" }, - { 77889031, "Play_Mvt_Wraith_S0_Arm_Both_Slam_1P" }, - { 97177343, "Play_Mvt_Wraith_ArmR_Med_Stress_1P" }, - { 103806149, "Play_Mvt_Wraith_ArmL_Long_Slow_1P" }, - { 116756646, "Play_Wraith_Abil_GlobalTeleport_Equip" }, - { 118470567, "Play_Mvt_Wraith_S0_Arm_Fast_Dramatic_1P" }, - { 129283207, "Play_Mvt_Wraith_S0_ArmL_Fast_Ramp_1P" }, - { 129813847, "Play_Abil_Wraith_ShadowStep_Equip" }, - { 166550228, "Play_Mvt_Wraith_S0_Arm_Inspect_Down_Small_1P" }, - { 179367065, "Play_Mvt_Wraith_S0_Arm_Fast_Short_1P" }, - { 216235062, "Play_FS_Mvt_Wraith_Run" }, - { 230272760, "Play_FS_Mvt_Wraith_Jump" }, - { 243897124, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Up_1P" }, - { 246451573, "Play_Abil_Wraith_Q_Cast" }, - { 254940229, "Play_FS_Mvt_Wraith_Jump" }, - { 257270347, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Down_1P" }, - { 266739425, "Play_Mvt_Wraith_Arm_Long_Ramp_1P" }, - { 284202383, "Play_Mvt_Wraith_Impact_Light_1P" }, - { 304677599, "Play_Wraith_Abil_SmokeDome_Transition_In" }, - { 312767832, "Play_FS_Mvt_Wraith_Jump" }, - { 323368716, "Play_Mvt_Wraith_S0_Arm_Fast_Dramatic_1P" }, - { 348753060, "Play_Abil_Wraith_X_Destroyed" }, - { 356506345, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Med_1P" }, - { 358965353, "Play_Mvt_Wraith_ArmR_Short_Fast2_1P" }, - { 361099193, "Play_Mvt_Wraith_ArmL_Med_Ramp_1P" }, - { 382599570, "Play_Mvt_Wraith_S0_Arm_Both_Slam_1P" }, - { 430348861, "Play_Mvt_Wraith_ArmL_Long_Slow_1P" }, - { 431599355, "Play_Mvt_Wraith_ArmR_Short_Slow2_1P" }, - { 445585554, "Play_Mvt_Wraith_ArmL_Med_Ramp_1P" }, - { 447010724, "Play_Abil_Wraith_ShadowStep_Arrive_3P" }, - { 469319217, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Med_1P" }, - { 471267623, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Up_1P" }, - { 476536422, "Play_Mvt_Wraith_S0_Arm_Both_Slam_1P" }, - { 477008422, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Down_1P" }, - { 477655996, "Play_Char_Wraith_Arm_Move_Generic_Slow_1" }, - { 498543584, "Play_FS_Mvt_Wraith_Run" }, - { 512274485, "Play_Wp_Grenade_Bounce_Fear_Toxin" }, - { 520747007, "Play_Mvt_Wraith_ArmR_Short_Slow2_1P" }, - { 531849988, "Play_FS_Mvt_Wraith_Land_Normal" }, - { 550151484, "Play_Mvt_Wraith_ArmR_Med_GunUp1_1P" }, - { 560619527, "Play_Mvt_Wraith_ArmR_Med_GunDown1_1P" }, - { 570331835, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_Fast_1P" }, - { 587643827, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_1P" }, - { 592899010, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Up_1P" }, - { 604480988, "Play_Mvt_Wraith_S0_Arm_Med_Short_1P" }, - { 610762968, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_1P" }, - { 611838008, "Play_Mvt_Wraith_S0_Arm_Med_Short_1P" }, - { 623428095, "Play_Mvt_Wraith_ArmR_Short_Slow2_1P" }, - { 624915884, "Play_Abil_Wraith_ShadowStep_Equip" }, - { 645639833, "Play_Mvt_Wraith_ArmL_Med_Ramp_1P" }, - { 647096067, "Play_Mvt_Wraith_ArmR_Med_GunDown1_1P" }, - { 652805359, "Play_Mvt_Wraith_Arm_Med_1P" }, - { 673825096, "Play_Wraith_Abil_SmokeDome_Activate" }, - { 675876984, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Down_1P" }, - { 681788241, "Play_Wp_Fear_Toxin_Grenade_Flying_Whoosh" }, - { 684555603, "Play_FS_Mvt_Wraith_Run" }, - { 698319873, "Play_Mvt_Wraith_ArmR_Short_Slow2_1P" }, - { 701142745, "Play_Mvt_Wraith_S0_Arm_Inspect_Short_1P" }, - { 709754131, "Play_FS_Mvt_Wraith_Run" }, - { 732199884, "Play_Mvt_Wraith_S0_Arm_Fast_Short_1P" }, - { 742189981, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 747559503, "Play_Abil_Wraith_ShadowStep_Depart" }, - { 757088592, "Play_Abil_Wraith_Kindred_Spirit_Destroyed" }, - { 773407509, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 774120850, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_1P" }, - { 795993406, "Play_Wraith_Abil_GlobalTeleport_EquipIdle_LP" }, - { 800844913, "Play_Wraith_Abil_Q_Equip" }, - { 813488662, "Play_FS_Mvt_Wraith_Run" }, - { 817224127, "Play_Mvt_Wraith_ArmL_Long_Slow_1P" }, - { 848220026, "Play_FS_Mvt_Wraith_Land_Normal" }, - { 853121545, "Play_FS_Mvt_Wraith_Land_Normal" }, - { 857918440, "Play_FS_Mvt_Wraith_Run" }, - { 872811635, "Play_Mvt_Wraith_S0_ArmL_Fast_Ramp_1P" }, - { 894643453, "Play_Mvt_Wraith_Arm_Long_Ramp_1P" }, - { 901538286, "Play_Mvt_Wraith_S0_Arm_Med_Short_1P" }, - { 910985732, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Up_1P" }, - { 911178837, "Play_Mvt_Wraith_S0_ArmL_Fast_Ramp_1P" }, - { 911260495, "Play_Mvt_Wraith_S0_Arm_Inspect_Down_Small_1P" }, - { 916957390, "Play_Abil_Wraith_ShadowStep_Depart" }, - { 935942945, "Play_Mvt_Wraith_S0_Arm_Inspect_Short_1P" }, - { 936734788, "Play_Mvt_Wraith_ArmR_Short_Fast2_1P" }, - { 942339248, "Play_Mvt_Wraith_Arm_Med_1P" }, - { 954567647, "Play_Mvt_Wraith_ArmR_Short_Fast2_1P" }, - { 957288101, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 960773454, "Play_Mvt_Wraith_ArmR_Med_Stress_1P" }, - { 970154406, "Play_Mvt_Wraith_S0_Arm_Inspect_Down_Small_1P" }, - { 978099724, "Play_Wraith_Abil_GlobalTeleport_Equip" }, - { 981753641, "Play_Mvt_Wraith_ArmR_Med_GunUp1_1P" }, - { 994556783, "Play_Mvt_Wraith_Impact_Light_1P" }, - { 995143198, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Med_1P" }, - { 1004510602, "Play_FS_Mvt_Wraith_Run" }, - { 1007168683, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_Fast_1P" }, - { 1009723388, "Play_Mvt_Wraith_Arm_Long_Ramp_1P" }, - { 1015621490, "Play_Wp_Fear_Toxin_Grenade_Flying_Whoosh" }, - { 1018658095, "Play_FS_Mvt_Wraith_Run" }, - { 1021538285, "Play_Abil_Wraith_Kindred_Spirit_Eye_Appears" }, - { 1032990188, "Play_Mvt_Wraith_S0_Arm_Fast_Dramatic_1P" }, - { 1041417578, "Play_Mvt_Wraith_Arm_Med_1P" }, - { 1042327916, "Play_Wraith_Abil_SmokeDome_Cast" }, - { 1049808220, "Play_Wraith_Abil_SmokeDome_Explode" }, - { 1049873388, "Play_Mvt_Wraith_S0_Arm_Fast_Short_1P" }, - { 1049910497, "Play_Mvt_Wraith_ArmR_Med_GunUp1_1P" }, - { 1056066760, "Play_Mvt_Wraith_Impact_Light_1P" }, - { 1065067601, "Play_Mvt_Wraith_S0_Arm_Inspect_Short_1P" }, - { 1065201638, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_Fast_1P" }, - { 1069488825, "Play_Mvt_Wraith_ArmR_Med_Stress_1P" }, - { 15497162, "Play_Mvt_Wushu_S0_Arm_Both_Slam_1P" }, - { 22383443, "Play_Wushu_Grenade_Missile_Test" }, - { 73353640, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_Fast_1P" }, - { 93015402, "Play_Wushu_AbilX_Equip_FromWeapon" }, - { 93618121, "Play_Wushu_AbilX_Cast_Dagger" }, - { 99651206, "Play_Mvt_Wushu_ArmR_Short_Slow2_1P" }, - { 110070071, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_1P" }, - { 112424955, "Play_Mvt_Wushu_S0_Arm_Med_Short_1P" }, - { 112917194, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_1P" }, - { 134878911, "Play_Wushu_Grenade_Missile_Test" }, - { 145614036, "Play_Mvt_Wushu_ArmR_Short_Fast2_1P" }, - { 157840895, "Play_Mvt_Wushu_S0_Arm_Inspect_Short_1P" }, - { 170662202, "Play_Mvt_Wushu_S0_Arm_Inspect_Short_1P" }, - { 178060289, "Play_Wushu_AbilE_Cast_Back" }, - { 178476211, "Play_Mvt_Wushu_ArmR_Charge_Rifle_Up_1P" }, - { 191713836, "Play_Mvt_Wushu_S0_Arm_Fast_Short_1P" }, - { 202346916, "Play_Mvt_Wushu_Arm_Med_1P" }, - { 222118776, "Play_Wushu_AbilX_Equip_From4" }, - { 222375597, "Play_Mvt_Wushu_Impact_Light_1P" }, - { 240579993, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_Fast_1P" }, - { 279911937, "Play_Mvt_Wushu_S0_Arm_Fast_Dramatic_1P" }, - { 291034810, "Play_Mvt_Wushu_S0_ArmL_Fast_Ramp_1P" }, - { 291770746, "Play_Mvt_Wushu_S0_ArmL_Fast_Ramp_1P" }, - { 328859862, "Play_Wushu_AbilX_Equip_From4" }, - { 373036992, "Play_Mvt_Wushu_S0_Arm_Both_Slam_1P" }, - { 378609382, "Play_FS_Mvt_Wushu_Land_Normal" }, - { 388900626, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_1P" }, - { 407899081, "Play_Mvt_Wushu_S0_Arm_Both_Slam_1P" }, - { 413992935, "Play_FS_Mvt_Wushu_Jump" }, - { 418358338, "Play_Wushu_AbilX_Equip_From4" }, - { 418479055, "Play_Wushu_AbilE_Cast_Strafe" }, - { 422486933, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_Fast_1P" }, - { 423391309, "Play_Wushu_AbilQ_Cast" }, - { 426514806, "Play_Mvt_Wushu_ArmR_Charge_Rifle_Down_1P" }, - { 428544093, "Play_Wp_Wushu_Dagger_Impact" }, - { 437504723, "Play_Mvt_Wushu_ArmL_Long_Slow_1P" }, - { 447761214, "Play_Mvt_Wushu_ArmR_Med_GunUp1_1P" }, - { 461475923, "Play_Mvt_Wushu_ArmR_Med_Stress_1P" }, - { 471028317, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Med_1P" }, - { 508460160, "Play_Wushu_AbilX_Equip_From4" }, - { 516608186, "Play_Mvt_Wushu_S0_Arm_Inspect_Down_Small_1P" }, - { 557995263, "Play_Wp_Wushu_MeleeDagger_Strike1" }, - { 583340821, "Play_Mvt_Wushu_S0_Arm_Fast_Short_1P" }, - { 592086762, "Play_Wushu_AbilX_Cast_Dagger" }, - { 602457287, "Play_Mvt_Wushu_S0_Arm_Inspect_Down_Small_1P" }, - { 604905557, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 611619404, "Play_Wushu_AbilP_Jump" }, - { 638250938, "Play_Mvt_Wushu_S0_Arm_Med_Short_1P" }, - { 644459416, "Play_Mvt_Wushu_S0_Arm_Inspect_Short_1P" }, - { 709951077, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Med_1P" }, - { 748919522, "Play_Wushu_AbilX_Equip_FromWeapon" }, - { 752081616, "Play_Mvt_Wushu_ArmR_Short_Slow_1P" }, - { 760086505, "Play_Mvt_Wushu_ArmL_Med_Ramp_1P" }, - { 765193507, "Play_Mvt_Wushu_S0_ArmL_Fast_Ramp_1P" }, - { 770403244, "Play_Wushu_Grenade_PreExplode" }, - { 841282944, "Play_Mvt_Wushu_S0_Arm_Fast_Short_1P" }, - { 844027386, "Play_Wushu_AbilE_Cast_Back" }, - { 853956127, "Play_Wushu_AbilX_Cast_Dagger_Multi" }, - { 858623005, "Play_Wushu_Grenade_Explode_Decay" }, - { 860025049, "Play_Mvt_Wushu_S0_Arm_Med_Short_1P" }, - { 860584502, "Play_Mvt_Wushu_ArmR_Med_GunDown1_1P" }, - { 893748091, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 905508592, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Swing_1P" }, - { 918626895, "Play_Mvt_Wushu_S0_Arm_Inspect_Down_Small_1P" }, - { 945519404, "Play_Wushu_AbilE_Cast_Forward" }, - { 964988218, "Play_Mvt_Wushu_Arm_Long_Ramp_1P" }, - { 967679984, "Play_Wushu_Grenade_Missile_Test" }, - { 972383597, "Play_Wushu_AbilE_Cast_Strafe" }, - { 980697692, "Play_Wushu_AbilE_Cast_Forward" }, - { 985606206, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Med_1P" }, - { 996054582, "Play_Wushu_AbilP_Jump" }, - { 1008221347, "Play_Mvt_Wushu_S0_Arm_Fast_Dramatic_1P" }, - { 1040839522, "Play_Mvt_Wushu_ArmR_Short_Fast_1P" }, - { 1055523901, "Play_Wushu_AbilQ_Cast" }, - { 1068927851, "Play_Mvt_Wushu_S0_Arm_Fast_Dramatic_1P" }, - { 131223731, "Play_Clay_CharacterSelect_Arrive_Abilities" }, - { 156379850, "Play_Hunter_CharacterSelect_Idle_01" }, - { 228679376, "Play_Clay_CharacterSelect_Arrive_Explosion2" }, - { 267243372, "Play_Wraith_CharacterSelect_Arrive" }, - { 280046394, "Play_Thorne_CharacterSelect_Idle" }, - { 322197515, "Play_Gumshoe_CharacterSelect_Fidget" }, - { 491211431, "Play_Vampire_CharacterSelect_Idle_Abilities" }, - { 523634569, "Play_Gumshoe_CharacterSelect_Arrive" }, - { 641708471, "Play_Hunter_CharacterSelect_Arrive_01" }, - { 679600709, "Play_Breach_CharacterSelect_Arrive" }, - { 849624945, "Play_Sarge_CharacterSelect_Idle_01" }, - { 852951369, "Play_Clay_CharacterSelect_Idle_01" }, - { 893700681, "Play_Thorne_CharacterSelect_Arrive" }, - { 902446960, "Play_Sarge_CharaterSelect_Arrive_01" }, - { 975327491, "Play_Clay_CharacterSelect_Arrive_Explosion1" }, - { 584961524, "Play_Exp_Debris" }, - //{ 583926868, "Play_FS_CombatBootFemale_Jump" }, - //{ 583926868, "Play_FS_CombatBootMale_Jump" }, - //{ 583926868, "Play_FS_DressShoe_Jump" }, - //{ 583926868, "Play_FS_HardSoleBoot_Jump" }, - //{ 583926868, "Play_FS_HeavyBootMale_Jump" }, - //{ 583926868, "Play_FS_QuietSneaker_Jump" }, - //{ 583926868, "Play_FS_SoftSoleBoot_Jump" }, - { 143455841, "Play_Wp_GunDrop_HMG_Lnd" }, - { 623430681, "Play_Wp_GunDrop_HMG_Bnc" }, - { 440349472, "Play_Wp_GunDrop_Pistol_Bnc" }, - { 931203618, "Play_Wp_GunDrop_Pistol_Lnd" }, - { 112037919, "Play_Wp_GunDrop_Rifle_Lnd" }, - { 151979683, "Play_Wp_GunDrop_Rifle_Bnc" }, - { 329017739, "Play_Wp_GunDrop_SMG_Lnd" }, - { 678134318, "Play_Wp_GunDrop_SMG_Bnc" }, - { 551022060, "Play_GunDrop_Bounce_Generic_Temp" }, - { 693663570, "Play_GunDrop_Generic_Temp" }, - { 715319073, "Play_GunDrop_Throw_Generic_Temp" }, - { 775435039, "Play_GunPickup_Generic_Temp" }, - { 109816390, "Play_FS_Shatter_Jump" }, - { 119316015, "Play_Abil_Joules_Q_Sonar_Detected" }, - { 119741053, "Play_Crusader_Shield_Start" }, - { 134120335, "Play_Crusader_Rez" }, - { 164690686, "Play_Crusader_Shield_Break" }, - { 169419921, "Play_FS_Shatter_Land_Normal" }, - { 214966180, "Play_Wp_Grenade_Shock_Explo" }, - { 424650757, "Play_Wp_Flashbang_Crystal_Blinded_Positional" }, - { 460250694, "Play_Abil_Decoy_Shatter_TimeOut" }, - { 530157466, "Play_Crusader_Charge_Blind_Warn" }, - { 554490726, "Play_Crusader_Charge_Impact" }, - { 583926868, "Play_FS_Shatter_Run" }, - { 591783989, "Play_Abil_Shatter_s0_Decoy_Explode_Start" }, - { 594339259, "Play_Crusader_Grenade_Windup" }, - { 621805271, "Play_Crusader_Charge_Slash_Impact" }, - { 717273212, "Play_Abil_Decoy_Shatter_Deploy" }, - { 860882192, "Play_Crusader_Charge_Startup" }, - { 920045214, "Play_FS_Shatter_Land_Normal" }, - { 1002598022, "Play_FS_Shatter_Land_Normal" }, - { 52911557, "Play_VALskinpreview_PrimeGuardian02" }, - { 133255939, "Play_Dragon_Judge_LV1_AUDIO_V01" }, - { 176169953, "Play_Dragon_Judge_LV2_AUDIO_V01" }, - { 177320170, "Play_VALskinpreview_PrimeGuardian04" }, - { 215020609, "Play_VALskinpreview_SovereignGuardian01" }, - { 290058408, "Play_VALskinpreview_PrimeSpectre02" }, - { 308194486, "Play_VALskinpreview_SovereignGhost03_rev2" }, - { 309448227, "Play_Dragon_Knife_Lv2_AUDIO_V01" }, - { 320249563, "Play_VALskinpreview_SovereignGuardian02" }, - { 342606429, "Play_VALskinpreview_PrimeClassic02" }, - { 368593311, "Play_VALskinpreview_SovereignMelee02" }, - { 381196381, "Play_VALskinpreview_PrimeGuardian03" }, - { 393997754, "Play_VALskinpreview_SovereignStinger01" }, - { 421052864, "Play_Dragon_Knife_Lv1_AUDIO_V01" }, - { 426524079, "Play_Dragon_Frenzy_Lv3_AUDIO_V01" }, - { 445208315, "Play_VALskinpreview_SovereignStinger03_rev2" }, - { 452455240, "Play_VALskinpreview_PrimeVandal02" }, - { 473230862, "Play_Dragon_Judge_LV3_AUDIO_V01" }, - { 491059289, "Play_Dragon_Frenzy_Lv1_AUDIO_V01" }, - { 502425231, "Play_VALskinpreview_PrimeSpectre04" }, - { 519715812, "Play_Dragon_Judge_LV4_AUDIO_V01" }, - { 553072718, "Play_VALskinpreview_PrimeVandal03" }, - { 635073236, "Play_Dragon_VANDAL_LV1_AUDIO_V01" }, - { 645159186, "Play_VALskinpreview_PrimeClassic04" }, - { 659744095, "Play_Dragon_VANDAL_LV3_AUDIO_V01" }, - { 673689292, "Play_VALskinpreview_PrimeClassic03" }, - { 736808770, "Play_VALskinpreview_PrimeMelee02" }, - { 778230569, "Play_VALskinpreview_SovereignGhost01" }, - { 822293512, "Play_VALskinpreview_SovereignMelee01" }, - { 828076861, "Play_VALskinpreview_SovereignGhost04_rev2" }, - { 835207393, "Play_Dragon_Frenzy_Lv2_AUDIO_V01" }, - { 870910286, "Play_Dragon_VANDAL_LV2_AUDIO_V01" }, - { 873644110, "Play_VALskinpreview_PrimeVandal02" }, - { 1057876830, "Play_VALskinpreview_SovereignGuardian03_rev2" }, - { 1058451914, "Play_VALskinpreview_SovereignGhost02" }, - { 1069129536, "Play_Dragon_Frenzy_Lv4_AUDIO_V01" }, - { 25237355, "Play_sfx_UI_RoundWon" }, - { 62378620, "Play_UI_AnnouncementDisappear" }, - { 183547783, "Play_sfx_UI_ObjectivePickedUp" }, - { 207123841, "Play_sfx_UI_planterkilledbanner" }, - { 257594382, "Play_Ping_Beep" }, - { 346164533, "Play_UI_Shop_Open" }, - { 352731057, "Play_UI_Error_Beep_Generic" }, - { 492582446, "Play_sfx_UI_MatchDefeat" }, - { 507143434, "Play_sfx_UI_DefendersObjectiveInitiated" }, - { 535784847, "Play_UI_Stinger_KillConfirm" }, - { 540464887, "Play_UI_RoundNumber" }, - { 574056354, "Play_sfx_UI_MatchVictory" }, - { 694452281, "Play_UI_Shop_Close" }, - { 799405049, "Play_sfx_UI_RoundLost" }, - { 855187485, "Play_sfx_UI_ObjectiveDropped" }, - { 925199360, "Play_sfx_UI_AttackersObjectiveInitiated" }, - { 981687460, "Play_sfx_UI_MatchVictory" }, - { 999896814, "Play_sfx_UI_AnnouncementFinish" }, - { 1039191558, "Play_UI_Ping_Intention" }, - { 29559311, "Play_Bomb_Foley_Start_Movement" }, - { 61635483, "Play_Bomb_Plant_Outro_04" }, - { 92460827, "Play_Bomb_Beep" }, - { 99568597, "Play_Bomb_Open_Part_01" }, - { 153664614, "Play_Bomb_Plant_Outro_05" }, - { 162618248, "Play_Bomb_Plant_Outro_01" }, - { 199054218, "Play_Bomb_Open_Mechanical_Part_1" }, - { 247120219, "Play_Bomb_Explo" }, - { 254585614, "Play_Bomb_Plant_Outro_03" }, - { 341709229, "Play_Bomb_Drop_Land" }, - { 388239633, "Play_Rad_Bomb_Kill_1P" }, - { 437828768, "Play_Bomb_Beep_Long" }, - { 493866865, "Play_Bomb_Drop_Land" }, - { 558889963, "Play_Spike_Defuse_Start" }, - { 576883029, "Play_Objective_Pickup" }, - { 628863363, "Play_Spike_Plant_Start" }, - { 653615419, "Play_Bomb_Open_Part_02" }, - { 752569044, "Play_Bomb_Drop_Bounce" }, - { 756196685, "Play_Rad_Bomb_Kill_1P" }, - { 756297722, "Play_Bomb_Foley_Plant_Grabs_With_Lift_Post_Open" }, - { 785060064, "Play_Bomb_Plant_Big_Hit" }, - { 798441295, "Play_Ares_Mode_Bomb_BarrierCountdown" }, - { 846346525, "Play_Rad_Bomb_Ring" }, - { 871697084, "Play_Bomb_Plant_Outro_01" }, - { 957790318, "Play_Bomb_Open_Part_04" }, - { 966068874, "Play_Bomb_Foley_Plant_Slam" }, - { 998447475, "Play_Bomb_Plant_Intro_01" }, - { 1069876360, "Play_Bomb_Drop_Bounce" }, - { 467578783, "Play_Wp_Melee_Oni_Equip_1P_Lvl2" }, - { 424872654, "Play_Wp_Finisher_Oni" }, - { 1013606431, "Play_Wp_Carbine_Oni_Silenced_Fire" }, - { 392577348, "Play_Wp_Shotgun_Pump_MagePunk_Fire_Alt_RemoteBlast" }, - { 10719599, "Play_Wp_Carbine_Oni_Inspect_Element_C_FP" }, - { 95077989, "Play_Wp_Carbine_Oni_Equip_Element_A_FP" }, - { 97355598, "Play_Wp_Carbine_Oni_Inspect_Element_B_FP" }, - { 150907956, "Play_Wp_Carbine_Oni_Inspect_Mvt_A_FP" }, - { 255778446, "Play_Wp_Carbine_Oni_Inspect_Element_A_FP" }, - { 268584898, "Play_Wp_Carbine_Oni_Reload_Element_B_FP" }, - { 273001458, "Play_Wp_Carbine_Oni_Equip_Element_A_FP" }, - { 309087885, "Play_Wp_Carbine_Oni_Mag_Out_FP" }, - { 312762255, "Play_Wp_Carbine_Oni_Inspect_Element_B_FP" }, - { 329146364, "Play_Wp_Carbine_Oni_Inspect_Element_B_FP" }, - { 333887615, "Play_Wp_Carbine_Oni_Inspect_Element_C_FP" }, - { 348821097, "Play_Wp_Carbine_Oni_Equip_Mvt_Grab_FP" }, - { 365048659, "Play_Wp_Carbine_Oni_Reload_Element_D_FP" }, - { 387174817, "Play_Wp_Carbine_Oni_Reload_Element_B_FP" }, - { 397383781, "Play_Wp_Carbine_Oni_Reload_Mvt_B_FP" }, - { 437043323, "Play_Wp_Carbine_Oni_Equip_Element_A_FP" }, - { 460557635, "Play_Wp_Carbine_Oni_Inspect_Element_C_FP" }, - { 484183554, "Play_Wp_Carbine_Oni_Reload_Mvt_Grab_FP" }, - { 518773888, "Play_Wp_Carbine_Oni_Reload_Chg_Hnd_Back_FP" }, - { 523856920, "Play_Wp_Carbine_Oni_Reload_Mvt_A_FP" }, - { 528537112, "Play_Wp_Carbine_Oni_Inspect_Mvt_Grab_FP" }, - { 575869628, "Play_Wp_Carbine_Oni_Equip_Mvt_A_FP" }, - { 643849265, "Play_Wp_Carbine_Oni_Inspect_Element_A_FP" }, - { 685675369, "Play_Wp_Carbine_Oni_Reload_Element_C_FP" }, - { 812971282, "Play_Wp_Carbine_Oni_Reload_Element_C_FP" }, - { 844910882, "Play_Wp_Carbine_Oni_Reload_Chg_Hnd_Fwd_FP" }, - { 871137564, "Play_Wp_Carbine_Oni_Reload_Element_C_FP" }, - { 895009894, "Play_Wp_Carbine_Oni_Mag_In_FP" }, - { 936326076, "Play_Wp_Carbine_Oni_Inspect_Element_A_FP" }, - { 979491769, "Play_Wp_Carbine_Oni_Inspect_Mvt_C_FP" }, - { 1010089630, "Play_Wp_Carbine_Oni_Reload_Element_B_FP" }, - { 1061292768, "Play_Wp_Carbine_Oni_Inspect_Mvt_B_FP" }, - { 76653560, "Play_Wp_Oni_DMR_Equip_Mvt_Element_A" }, - { 246952494, "Play_Wp_Oni_DMR_Equip_Mvt_Element_B" }, - { 328586668, "Play_Wp_Oni_DMR_Reload_Mvt_Element_A" }, - { 616322611, "Play_Wp_Oni_DMR_Equip_Mvt_Element_C" }, - { 695739042, "Play_Wp_Oni_DMR_Inspect_Mvt_Element_C" }, - { 729048643, "Play_Wp_Oni_DMR_Reload_Mvt_Element_B" }, - { 787432024, "Play_Wp_Oni_DMR_Reload_Mvt_Element_E" }, - { 819357532, "Play_Wp_Oni_DMR_Inspect_Mvt_Element_A" }, - { 1066309683, "Play_Wp_Oni_DMR_Inspect_Mvt_Element_B" }, - { 80372429, "Play_Wp_Oni_Pump_Reload_Mvt_Element_B" }, - { 405274204, "Play_Wp_Oni_Pump_Inspect_Mvt_Element_A" }, - { 479658674, "Play_Wp_Oni_Pump_Equip_Mvt_Element_A" }, - { 527246789, "Play_Wp_Oni_Pump_Inspect_Mvt_Element_C" }, - { 627881474, "Play_Wp_Oni_Pump_Reload_Mvt_Element_C" }, - { 895756588, "Play_Wp_Oni_Pump_Equip_Mvt_Element_B" }, - { 938809816, "Play_Wp_Oni_Pump_Inspect_Mvt_Element_B" }, - { 16907461, "Play_Wp_Oni_SawedOff_Reload_Mvt_Element_C" }, - { 361321823, "Play_Wp_Oni_SawedOff_Reload_Mvt_Element_A" }, - { 364969835, "Play_Wp_Oni_SawedOff_Equip_Mvt_Element_A" }, - { 474046400, "Play_Wp_Oni_SawedOff_Reload_Mvt_Element_B" }, - { 576794135, "Play_Wp_Oni_SawedOff_Inspect_Mvt_Element_A" }, - { 600379645, "Play_Wp_Oni_SawedOff_Inspect_Mvt_Element_B" }, - { 119899004, "Play_UI_KillBanner_Oni_4" }, - { 585551763, "Play_UI_KillBanner_Oni_3" }, - { 906892702, "Play_UI_KillBanner_Oni_1" }, - { 907593259, "Play_UI_KillBanner_Oni_5" }, - }; public static readonly Notifier gNotifier = new Notifier(cfg => { cfg.LifetimeSupervisor = new TimeAndCountBasedLifetimeSupervisor(TimeSpan.FromSeconds(7), MaximumNotificationCount.FromCount(15)); diff --git a/FModel/PakReader/Parsers/Objects/FGuid.cs b/FModel/PakReader/Parsers/Objects/FGuid.cs index c9309645..b6c1788b 100644 --- a/FModel/PakReader/Parsers/Objects/FGuid.cs +++ b/FModel/PakReader/Parsers/Objects/FGuid.cs @@ -58,6 +58,6 @@ namespace PakReader.Parsers.Objects public static bool operator !=(FGuid left, FGuid right) => !left.Equals(right); // TODO: maybe make this more performant? - public override string ToString() => $"{A}-{B}-{C}-{D}"; + public override string ToString() => $"{A:X8}{B:X8}{C:X8}{D:X8}"; } } diff --git a/FModel/PakReader/WwiseReader.cs b/FModel/PakReader/WwiseReader.cs index 07f41a8b..8540300b 100644 --- a/FModel/PakReader/WwiseReader.cs +++ b/FModel/PakReader/WwiseReader.cs @@ -1,4 +1,5 @@ -using System; +using FModel.Utils; +using System; using System.Collections.Generic; using System.IO; using System.Text; @@ -97,7 +98,7 @@ namespace FModel.PakReader string key = $"{didxSection.WemFilesRef[i].Id}.wem"; if (stidSection != null && stidSection.SoundBanks.TryGetValue(didxSection.WemFilesRef[i].Id, out string name)) key = $"{name}.wem"; - else if (Globals.Game.ActualGame == EGame.Valorant && Globals.ValorantWemToName.TryGetValue(didxSection.WemFilesRef[i].Id, out string hardcodedname)) + else if (Globals.Game.ActualGame == EGame.Valorant && ValoloWwiseDict.ValorantWemToName.TryGetValue(didxSection.WemFilesRef[i].Id, out string hardcodedname)) key = $"{hardcodedname}.wem"; AudioFiles[key] = dataSection.WemFiles[i]; @@ -112,7 +113,7 @@ namespace FModel.PakReader string key = $"{entry.Path.ToUpper()}_{entry.NameHash}.wem"; if (stidSection != null && stidSection.SoundBanks.TryGetValue(entry.NameHash, out string name)) key = $"{name}.wem"; - else if (Globals.Game.ActualGame == EGame.Valorant && Globals.ValorantWemToName.TryGetValue(entry.NameHash, out string hardcodedname)) + else if (Globals.Game.ActualGame == EGame.Valorant && ValoloWwiseDict.ValorantWemToName.TryGetValue(entry.NameHash, out string hardcodedname)) key = $"{hardcodedname}.wem"; AudioFiles[key] = entry.Data; diff --git a/FModel/Utils/Assets.cs b/FModel/Utils/Assets.cs index e43f22a0..c4b1e698 100644 --- a/FModel/Utils/Assets.cs +++ b/FModel/Utils/Assets.cs @@ -25,8 +25,7 @@ using System.Text; using FModel.ViewModels.DataGrid; using FModel.PakReader; using ICSharpCode.AvalonEdit.Highlighting; -using static FModel.Creator.FortniteCreator; -using static FModel.Creator.ValorantCreator; +using static FModel.Creator.Creator; namespace FModel.Utils { @@ -280,9 +279,7 @@ namespace FModel.Utils } // Image Creator - if (Globals.Game.ActualGame == EGame.Fortnite && TryDrawFortniteIcon(entry.Name, p.ExportTypes[0].String, p.Exports[0])) - return p; - else if (Globals.Game.ActualGame == EGame.Valorant && TryDrawValorantIcon(entry.Name, p.ExportTypes.Length > 1 ? p.ExportTypes[1].String : p.ExportTypes[0].String, p.Exports.Length > 1 ? p.Exports[1] : p.Exports[0])) + if (TryDrawIcon(entry.Name, p.ExportTypes, p.Exports)) return p; } diff --git a/FModel/Utils/ValoloWwiseDict.cs b/FModel/Utils/ValoloWwiseDict.cs new file mode 100644 index 00000000..1fe2529c --- /dev/null +++ b/FModel/Utils/ValoloWwiseDict.cs @@ -0,0 +1,1080 @@ +using System.Collections.Generic; + +namespace FModel.Utils +{ + static class ValoloWwiseDict + { + public static readonly Dictionary ValorantWemToName = new Dictionary + { + { 1055663626, "Play_Armor_ShieldBreak" }, + { 1068023171, "Play_Armor_Regen_Start_Heal_Self" }, + { 243493710, "Play_BF_LimbHit_Soft" }, + { 258738577, "Play_BF_BodyHit_Soft" }, + { 312058225, "Play_BF_HeadHit_Hard" }, + { 336005838, "Play_BF_BodyHit_Hard" }, + { 387854440, "Play_BF_LimbHit_Soft" }, + { 412387394, "Play_BF_LimbHit_Hard" }, + { 441213393, "Play_BF_LimbHit_Soft" }, + { 550471401, "Play_BF_LimbHit_Soft" }, + { 573927398, "Play_BF_LimbHit_Soft" }, + { 579121856, "Play_BF_LimbHit_Hard" }, + { 670782981, "Play_BF_HeadHit_Soft" }, + { 811225202, "Play_BF_LimbHit_Hard" }, + { 819059272, "Play_BF_LimbHit_Hard" }, + { 898784993, "Play_BF_HeadHit_Hard" }, + { 1020040599, "Play_BF_LimbHit_Hard" }, + { 325810485, "Play_Buff_Nearsight_Base_End" }, + { 653991800, "Play_Buff_Nearsight_Base_Start" }, + //{ 119316015, "Play_Buff_RevealLocation_Base_Start" }, + { 171285278, "Play_Bullet_Impact_FirstImpact" }, + { 127480547, "Play_Wp_Bullet_Whiz_SMG_Stereo" }, + { 190125904, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, + { 194661660, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, + { 276438884, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, + { 323625973, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, + { 480048034, "Play_Wp_Bullet_Whiz_Pistol_Stereo" }, + { 586259199, "Play_Wp_Bullet_Whiz_Sniper_Stereo" }, + { 666162086, "Play_Wp_Bullet_Whiz_Rifle_Stereo" }, + { 748393306, "Play_Wp_Bullet_Whiz_SMG_Stereo" }, + { 980875791, "Play_Wp_Bullet_Whiz_SMG_Stereo" }, + { 11005701, "Play_Mvt_Breach_S0_ArmR_Charge_Rifle_Down_1P" }, + { 27804678, "Play_Mvt_Breach_S0_Arm_Fast_Short_1P" }, + { 41379056, "Play_Mvt_Breach_S0_ArmL_Long_Slow_1P" }, + { 47426058, "Play_Mvt_Breach_S0_Arm_Inspect_Med_Fast_1P" }, + { 48824560, "Play_FS_Mvt_Breach_Land" }, + { 68839967, "Play_Mvt_Breach_S0_ArmL_Fast_Ramp_1P" }, + { 74832429, "Play_Mvt_Breach_S0_Arm_Long_Ramp_1P" }, + { 76447012, "Play_Mvt_Breach_S0_ArmR_Med_GunUp1_1P" }, + { 77286081, "Play_Mvt_Breach_S0_ArmL_Med_Ramp_1P" }, + { 120624101, "Play_Mvt_Breach_S0_Arm_Both_Slam_1P" }, + { 177533091, "Play_Mvt_Breach_S0_Arm_Long_Ramp_1P" }, + { 196823849, "Play_Mvt_Breach_S0_Arm_Fast_Short_1P" }, + { 199696126, "Play_Breach_Common_Concuss" }, + { 205972869, "Play_FS_Mvt_Breach_Run" }, + { 216132641, "Play_Mvt_Breach_S0_Arm_Inspect_Med_Fast_1P" }, + { 251105321, "Play_Mvt_Breach_S0_Arm_Inspect_Short_1P" }, + { 387411583, "Play_Mvt_Breach_S0_ArmR_Med_GunDown1_1P" }, + { 411458477, "Play_Mvt_Breach_S0_Arm_Fast_Dramatic_1P" }, + { 466143584, "Play_Mvt_Breach_S0_Arm_Inspect_Short_1P" }, + { 487712690, "Play_Mvt_Breach_S0_Arm_Inspect_Rifle_Med_1P" }, + { 490604922, "Play_Mvt_Breach_S0_Arm_Inspect_Short_1P" }, + { 494379384, "Play_FS_Mvt_Breach_Jump" }, + { 496108727, "Play_Mvt_Breach_S0_Impact_Light_1P" }, + { 501164797, "Play_Mvt_Breach_S0_Arm_Med_1P" }, + { 533813197, "Play_Mvt_Breach_S0_Arm_Inspect_Down_Small_1P" }, + { 535971986, "Play_Mvt_Breach_S0_ArmR_Charge_Rifle_Down_1P" }, + { 591987146, "Play_Mvt_Breach_S0_Arm_Inspect_Down_Small_1P" }, + { 606318652, "Play_Mvt_Breach_S0_ArmL_Med_Ramp_1P" }, + { 627559003, "Play_Mvt_Breach_S0_ArmR_Charge_Rifle_Down_1P" }, + { 673248071, "Play_Breach_Common_Concuss_Sweep" }, + { 690489098, "Play_Mvt_Breach_S0_ArmR_Charge_Rifle_Up_1P" }, + { 751928640, "Play_Mvt_Breach_S0_ArmR_Short_Fast2_1P" }, + { 773765385, "Play_Mvt_Breach_S0_ArmL_Long_Slow_1P" }, + { 775709565, "Play_Mvt_Breach_S0_ArmL_Med_Ramp_1P" }, + { 794251355, "Play_Mvt_Breach_S0_Arm_Inspect_Rifle_Med_1P" }, + { 804371661, "Play_Mvt_Breach_S0_ArmR_Med_GunDown1_1P" }, + { 854273216, "Play_Mvt_Breach_S0_Arm_Fast_Short_1P" }, + { 855277942, "Play_Mvt_Breach_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 867638637, "Play_Mvt_Breach_S0_ArmR_Short_Slow2_1P" }, + { 870354289, "Play_Mvt_Breach_S0_Arm_Inspect_Rifle_Med_1P" }, + { 910372736, "Play_Mvt_Breach_S0_ArmL_Long_Slow_1P" }, + { 946645250, "Play_Mvt_Breach_S0_ArmR_Med_GunDown1_1P" }, + { 1012366820, "Play_Mvt_Breach_S0_Arm_Inspect_Med_1P" }, + { 1054028264, "Play_Mvt_Breach_S0_Arm_Fast_Dramatic_1P" }, + { 1073353812, "Play_Mvt_Breach_S0_Arm_Fast_Dramatic_1P" }, + { 13235962, "Play_Mvt_Clay_S0_ArmL_Fast_Ramp_1P" }, + { 27198428, "Play_Mvt_Clay_S0_ArmL_Fast_Ramp_1P" }, + { 29189838, "Play_Clay_Boomba_Equip_End" }, + { 43342306, "Play_Clay_Rocket_QuickEquip" }, + { 51203384, "Play_FS_Mvt_Clay_Run" }, + { 57792514, "Play_FS_Mvt_Clay_Jump" }, + { 67055588, "Play_Mvt_Clay_S0_Arm_Inspect_Short_1P" }, + { 68358691, "Play_Mvt_Clay_ArmR_Charge_Rifle_Up_1P" }, + { 68443316, "Play_Mvt_Clay_ArmR_Med_Stress_1P" }, + { 68923613, "Play_Mvt_Clay_ArmR_Med_GunDown1_1P" }, + { 83046698, "Play_FS_Mvt_Clay_Run" }, + { 84723802, "Play_WP_Cluster_Equip_PinSpin" }, + { 93899033, "Play_Abil_Boomba_TinTank_Move_Wall_Bounce" }, + { 129916599, "Play_Mvt_Clay_Arm_Med_1P" }, + { 139568643, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 154985308, "Play_FS_Mvt_Clay_Run" }, + { 159864180, "Play_Wp_Rocket_Launcher_Explo" }, + { 169215155, "Play_Clay_Rocket_Equip_Mech_4_PopOut" }, + { 176510090, "Play_Mvt_Clay_S0_Arm_Both_Slam_1P" }, + { 198659821, "Play_Abil_Boomba_TinTank_Hit_Confirm" }, + { 206580165, "Play_Mvt_Clay_ArmR_Med_Stress_1P" }, + { 207961325, "Play_FS_Mvt_Clay_Run" }, + { 212576009, "Play_Clay_Rocket_FirstEquip_TP" }, + { 217502397, "Play_Clay_Boomba_Equip_Start" }, + { 219403755, "Play_Clay_Rocket_FirstEquip_TP" }, + { 220005448, "Play_Mvt_Clay_ArmR_Med_GunUp1_1P" }, + { 221540076, "Play_Mvt_Clay_ArmR_Charge_Rifle_Down_1P" }, + { 228510317, "Play_Abil_Boomba_TinTank_Drop_Impact_Deployed" }, + { 240822222, "Play_Mvt_Clay_S0_Arm_Inspect_Med_1P" }, + { 250659261, "Play_FS_Mvt_Clay_Land_Normal" }, + { 250931299, "Play_Mvt_Clay_S0_Arm_Inspect_Down_Small_1P" }, + { 253498510, "Play_Mvt_Clay_ArmR_Charge_Rifle_Down_1P" }, + { 254303121, "Play_Abil_Boomba_EnemySpottedAlert_1" }, + { 292878989, "Play_Clay_Rocket_Equip_Energy_FinalCharge_01" }, + { 295710658, "Play_Mvt_Clay_S0_Arm_Inspect_Down_Small_1P" }, + { 297410203, "Play_Mvt_Clay_S0_Arm_Fast_Dramatic_1P" }, + { 313035005, "Play_Clay_Boomba_Cast" }, + { 313491279, "Play_Wp_Cluster_Equip_PinPull" }, + { 316890761, "Play_FS_Mvt_Clay_Run" }, + { 317772774, "Play_Mvt_Clay_ArmR_Short_Slow2_1P" }, + { 327964453, "Play_Clay_Boomba_Equip_Knock" }, + { 329078754, "Play_Mvt_Clay_Arm_Long_Ramp_1P" }, + { 332740160, "Play_Mvt_Clay_ArmR_Short_Fast2_1P" }, + { 343098184, "Play_Wp_Cluster_Equip_Shake" }, + { 348396496, "Play_Mvt_Clay_ArmR_Short_Slow2_1P" }, + { 358781643, "Play_Mvt_Clay_ArmR_Med_Stress_1P" }, + { 373097122, "Play_FS_Mvt_Clay_Jump" }, + { 387254339, "Play_Mvt_Clay_ArmR_Charge_Rifle_Up_1P" }, + { 389587049, "Play_Clay_Rocket_Equip_Mech_5_Strap_01" }, + { 396316093, "Play_Wp_Grenade_Bounce_Cluster_Submunition" }, + { 400220120, "Play_Mvt_Clay_S0_Arm_Fast_Dramatic_1P" }, + { 405974285, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 409002720, "Play_Wp_RocketLauncher_Fire" }, + { 423472498, "Play_Mvt_Clay_S0_Arm_Inspect_Short_1P" }, + { 431910233, "Play_Clay_Rocket_Equip_Mech_1_Lift_01" }, + { 434192349, "Play_Mvt_Clay_Impact_Light_1P" }, + { 456078022, "Play_Mvt_Clay_S0_Arm_Fast_Short_1P" }, + { 457128485, "Play_Mvt_Clay_ArmR_Med_GunDown1_1P" }, + { 458733334, "Play_Mvt_Clay_Arm_Med_1P" }, + { 466758902, "Play_Clay_Rocket_Equip_Energy_Ripple_01" }, + { 474271417, "Play_Wp_RocketLauncher_Fire" }, + { 486669115, "Play_Mvt_Clay_ArmR_Med_GunUp1_1P" }, + { 494406199, "Play_FS_Mvt_Clay_Run" }, + { 508507831, "Play_Wp_Cluster_Equip_Start" }, + { 509886637, "Play_Wp_Grenade_Bounce_Cluster_Submunition" }, + { 522097561, "Play_Mvt_Clay_ArmL_Long_Slow_1P" }, + { 524836223, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 528756048, "Play_Mvt_Clay_Impact_Light_1P" }, + { 529622927, "Play_Mvt_Clay_ArmL_Long_Slow_1P" }, + { 534260737, "Play_Mvt_Clay_ArmL_Med_Ramp_1P" }, + { 571487001, "Play_Abil_Clay_Satchel_Charge_Explo" }, + { 575779251, "Play_Mvt_Clay_S0_Arm_Inspect_Med_Fast_1P" }, + { 592348689, "Play_Mvt_Clay_S0_Arm_Both_Slam_1P" }, + { 594854309, "Play_Mvt_Clay_ArmR_Charge_Rifle_Down_1P" }, + { 607390262, "Play_Mvt_Clay_ArmL_Med_Ramp_1P" }, + { 610076857, "Play_Mvt_Clay_S0_Arm_Inspect_Med_1P" }, + { 639233670, "Play_Mvt_Clay_ArmL_Med_Ramp_1P" }, + { 640216924, "Play_Mvt_Clay_ArmL_Long_Slow_1P" }, + { 645276863, "Play_FS_Mvt_Clay_Land_Normal" }, + { 650395409, "Play_Clay_Rocket_Equip_Mech_1_Lift_01" }, + { 654451637, "Play_Mvt_Clay_S0_Arm_Inspect_Med_1P" }, + { 657430683, "Play_Clay_Rocket_Equip_Mech_2_Ripple_01" }, + { 666732565, "Play_Mvt_Clay_ArmR_Charge_Rifle_Up_1P" }, + { 685646540, "Play_Mvt_Clay_S0_Arm_Med_Short_1P" }, + { 697977623, "Play_Abil_Clay_Satchel_Charge_Beep" }, + { 698034986, "Play_Mvt_Clay_S0_Arm_Med_Short_1P" }, + { 703796714, "Play_Mvt_Clay_S0_Arm_Med_Short_1P" }, + { 703982704, "Play_FS_Mvt_Clay_Run" }, + { 718403422, "Play_Mvt_Clay_Impact_Light_1P" }, + { 723459897, "Play_Wp_Cluster_Submunition_Explo" }, + { 731307578, "Play_Mvt_Clay_S0_Arm_Both_Slam_1P" }, + { 740540152, "Play_Mvt_Clay_ArmR_Short_Fast2_1P" }, + { 760697239, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Med_1P" }, + { 761326639, "Play_Mvt_Clay_ArmR_Med_GunUp1_1P" }, + { 769220912, "Play_Clay_Rocket_Equip_Mech_6_Optic_01" }, + { 806251378, "Play_Mvt_Clay_ArmR_Med_GunDown1_1P" }, + { 817513811, "Play_Clay_Cluster_PreExplo_Primary" }, + { 824652467, "Play_FS_Mvt_Clay_Run" }, + { 826289993, "Play_Mvt_Clay_Arm_Long_Ramp_1P" }, + { 828249212, "Play_Mvt_Clay_S0_Arm_Inspect_Med_Fast_1P" }, + { 837139934, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Med_1P" }, + { 843672614, "Play_Abil_Boomba_TinTank_Die_Time_Out" }, + { 845658530, "Play_Abil_Boomba_TinTank_Explo_C" }, + { 852064256, "Play_Mvt_Clay_Arm_Med_1P" }, + { 858781729, "Play_Mvt_Clay_ArmR_Short_Slow2_1P" }, + { 861152823, "Play_Mvt_Clay_S0_Arm_Fast_Short_1P" }, + { 877709024, "Play_Wp_Grenade_Bounce_Cluster_Submunition" }, + { 878888669, "Play_Mvt_Clay_ArmR_Short_Fast2_1P" }, + { 914318658, "Play_FS_Mvt_Clay_Land_Normal" }, + { 930793133, "Play_Abil_Clay_Jump_Satchel_Throw" }, + { 932166160, "Play_Mvt_Clay_S0_Arm_Inspect_Med_Fast_1P" }, + { 935063894, "Play_Wp_Cluster_Equip_End" }, + { 945820609, "Play_Mvt_Clay_Arm_Long_Ramp_1P" }, + { 956744032, "Play_Mvt_Clay_Impact_Light_1P" }, + { 962567452, "Play_Mvt_Clay_S0_Arm_Inspect_Short_1P" }, + { 974950466, "Play_Mvt_Clay_S0_Arm_Fast_Dramatic_1P" }, + { 978346971, "Play_Clay_Rocket_Equip_Energy_Initialize_01" }, + { 1017734376, "Play_Mvt_Clay_S0_ArmL_Fast_Ramp_1P" }, + { 1021435229, "Play_Mvt_Clay_S0_Arm_Inspect_Rifle_Med_1P" }, + { 1061535882, "Play_Mvt_Clay_S0_Arm_Fast_Short_1P" }, + { 1063142655, "Play_Mvt_Clay_S0_Arm_Inspect_Down_Small_1P" }, + { 1071340743, "Play_FS_Mvt_Clay_Jump" }, + { 2360986, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 5533847, "Play_Mvt_Gumshoe_S0_Arm_Fast_Dramatic_1P" }, + { 7261830, "Play_Mvt_Gumshoe_Arm_Long_Ramp_1P" }, + { 37183230, "Play_Mvt_Gumshoe_ArmR_Charge_Rifle_Down_1P" }, + { 37496776, "Play_Mvt_Gumshoe_ArmR_Med_GunDown1_1P" }, + { 37753943, "Play_Gumshoe_AbilE_Cast" }, + { 44363629, "Play_Gumshoe_AbilX_RevealEnemy_3P" }, + { 45394379, "Play_Mvt_Gumshoe_ArmL_Med_Ramp_1P" }, + { 71390614, "Play_Gumshoe_AbilE_Cast" }, + { 94663211, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Rifle_Med_1P" }, + { 101413693, "Play_Mvt_Gumshoe_ArmR_Short_Fast2_1P" }, + { 104447453, "Play_Gumshoe_AbilQ_Possess" }, + { 111630024, "Play_Gumshoe_AbilX_Hat_Projectile" }, + { 111786622, "Play_Gumshoe_AbilX_Drone_FlyAway" }, + { 148819059, "Play_Gumshoe_AbilE_Equip" }, + { 171992738, "Play_Mvt_Gumshoe_S0_Arm_Med_Short_1P" }, + { 172822608, "Play_Mvt_Gumshoe_S0_Arm_Fast_Short_1P" }, + { 188992570, "Play_Gumshoe_AbilQ_Equip" }, + { 189682582, "Play_Mvt_Gumshoe_ArmR_Short_Slow2_1P" }, + { 221924872, "Play_Gumshoe_AbilE_Cast" }, + { 224137550, "Play_Mvt_Gumshoe_S0_Arm_Fast_Dramatic_1P" }, + { 286319199, "Play_Gumshoe_AbilQ_Dart_Explode" }, + { 292807303, "Play_Mvt_Gumshoe_Impact_Light_1P" }, + { 296306347, "Play_Gumshoe_Abil_GadgetCatch" }, + { 298507778, "Play_Gumshoe_AbilX_Hat_Projectile" }, + { 303651157, "Play_Gumshoe_AbilE_Equip" }, + { 320999092, "Play_Gumshoe_AbilQ_Unpossess" }, + { 332652404, "Play_Gumshoe_AbilQ_Equip" }, + { 346165264, "Play_Gumshoe_AbilQ_Cloak" }, + { 354326435, "Play_Gumshoe_AbilE_Equip" }, + { 362689037, "Play_Gumshoe_AbilQ_Cast" }, + { 377418659, "Play_Gumshoe_AbilQ_Equip" }, + { 390407554, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Down_Small_1P" }, + { 393746614, "Play_Gumshoe_AbilE_TrapExplosion" }, + { 394682899, "Play_Gumshoe_AbilQ_Cloak" }, + { 397935079, "Play_Gumshoe_AbilQ_Unpossess" }, + { 415944717, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Rifle_Med_1P" }, + { 435077897, "Play_Gumshoe_AbilX_Drone_FlyAway" }, + { 440208938, "Play_Gumshoe_Abil_GadgetRecall" }, + { 443649765, "Play_Mvt_Gumshoe_Arm_Med_1P" }, + { 458730654, "Play_Gumshoe_AbilE_Equip" }, + { 474873959, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Short_1P" }, + { 480508859, "Play_Mvt_Gumshoe_ArmR_Med_GunUp1_1P" }, + { 484135740, "Play_gumshoe_abil4_trap_cloak" }, + { 496786542, "Play_Gumshoe_AbilX_Cast" }, + { 504661995, "Play_Gumshoe_AbilQ_Unpossess" }, + { 505593477, "Play_Gumshoe_AbilQ_Projectile" }, + { 514344038, "Play_Gumshoe_AbilGrenade_Cast" }, + { 516282224, "Play_Gumshoe_AbilGrenade_Cast" }, + { 528097960, "Play_Gumshoe_AbilQ_RemoveDartComplete" }, + { 539588545, "Play_Mvt_Gumshoe_S0_Arm_Fast_Short_1P" }, + { 542934283, "Play_Gumshoe_Abil_Trap_Mark" }, + { 546477651, "Play_Gumshoe_AbilE_ChainTarget" }, + { 564994001, "Play_Mvt_Gumshoe_S0_Arm_Fast_Short_1P" }, + { 570994647, "Play_Mvt_Gumshoe_ArmR_Short_Slow2_1P" }, + { 589319912, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Med_Fast_1P" }, + { 594862987, "Play_Mvt_Gumshoe_ArmR_Med_GunDown1_1P" }, + { 602015029, "Play_Gumshoe_AbilE_Cast" }, + { 622741076, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Rifle_Lower_1P" }, + { 625063946, "Play_Gumshoe_AbilQ_Cast" }, + { 633727612, "Play_Mvt_Gumshoe_ArmR_Short_Fast2_1P" }, + { 634625341, "Play_gumshoe_abil4_bounce" }, + { 644812904, "Play_Gumshoe_AbilE_Equip" }, + { 658448341, "Play_Gumshoe_Grenade_Cage_Activate_3P" }, + { 662290975, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Short_1P" }, + { 664059727, "Play_Gumshoe_AbilQ_Dart_HitConfirm" }, + { 664651963, "Play_Gumshoe_AbilQ_Dart_Fire" }, + { 665367922, "Play_Gumshoe_AbilQ_Possess" }, + { 667791074, "Play_Gumshoe_AbilX_Cast" }, + { 692475394, "Play_Gumshoe_AbilX_Hat_Projectile" }, + { 711656157, "Play_Gumshoe_AbilQ_Cloak" }, + { 725688578, "Play_Gumshoe_AbilQ_Possess" }, + { 737236125, "Play_Mvt_Gumshoe_ArmL_Long_Slow_1P" }, + { 762605826, "Play_Gumshoe_AbilX_Drone_FlyAway" }, + { 771677780, "Play_gumshoe_abil4_land" }, + { 778572725, "Play_Gumshoe_AbilE_Equip" }, + { 802170339, "Play_Gumshoe_AbilP_Cast_1P" }, + { 823139676, "Play_Gumshoe_Abil_device_returnprojectile" }, + { 829984300, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Med_1P" }, + { 832047044, "Play_Gumshoe_AbilX_Cast" }, + { 850436846, "Play_Gumshoe_AbilQ_RemoveDart" }, + { 862825942, "Play_Mvt_Gumshoe_S0_Arm_Inspect_Short_1P" }, + { 864326029, "Play_Mvt_Gumshoe_S0_ArmL_Fast_Ramp_1P" }, + { 889676119, "Play_Gumshoe_AbilQ_Dart_HitConfirm" }, + { 901610901, "Play_Mvt_Gumshoe_S0_Arm_Fast_Dramatic_1P" }, + { 923382065, "Play_Gumshoe_AbilQ_Place" }, + { 932147218, "Play_Gumshoe_AbilX_Cast" }, + { 944573705, "Play_Gumshoe_Abil_Trap_Mark" }, + { 947887246, "Play_Mvt_Gumshoe_ArmR_Short_Fast2_1P" }, + { 950215755, "Play_Gumshoe_AbilQ_Destroyed" }, + { 965053122, "Play_Mvt_Gumshoe_ArmR_Med_Stress_1P" }, + { 974591021, "Play_Gumshoe_Abil_device_returnshake" }, + { 976065589, "Play_Gumshoe_AbilE_Cast" }, + { 976148207, "Play_FS_Mvt_Gumshoe_Jump" }, + { 976186921, "Play_Gumshoe_AbilQ_Equip" }, + { 976306022, "Play_Mvt_Gumshoe_ArmR_Short_Slow2_1P" }, + { 980281516, "Play_Gumshoe_AbilE_Cast" }, + { 1031239042, "Play_FS_Mvt_Gumshoe_Land" }, + { 1044802595, "Play_Gumshoe_AbilQ_RemoveDart" }, + { 1059777015, "Play_Gumshoe_AbilQ_RemoveDartComplete" }, + { 1071249383, "Play_Gumshoe_AbilE_Destroyed" }, + { 13179082, "Play_Hunter_AbilX_HitConf_Death" }, + { 40135221, "Play_Hunter_AbilE_Missile" }, + { 63787629, "Play_Hunter_AbilX_Channel" }, + { 69970482, "Play_Mvt_Hunter_S0_Arm_Fast_Dramatic_1P" }, + { 84650306, "Play_Hunter_S0_AB_X_SuperBolt_Equip_HUD_Appear" }, + { 142463243, "Play_Mvt_Hunter_S0_Arm_Inspect_Down_Small_1P" }, + { 146954197, "Play_Mvt_Hunter_S0_Arm_Long_Ramp_1P" }, + { 150999043, "Play_Hunter_S0_AB_Q_SonarBolt_Equip_Circle" }, + { 152922219, "Play_Mvt_Hunter_S0_Arm_Both_Slam_1P" }, + { 155443141, "Play_Hunter_AbilQ_Destroyed" }, + { 179132661, "Play_FS_Hunter_Land" }, + { 180058477, "Play_Mvt_Hunter_S0_Arm_Fast_Dramatic_1P" }, + { 204699503, "Play_Hunter_S0_AB_X_SuperBolt_Cancel_Bow_Mvt_D" }, + { 212941910, "Play_Mvt_Hunter_S0_Arm_Fast_Dramatic_1P" }, + { 237048942, "Play_Mvt_Hunter_S0_ArmR_Med_GunDown1_1P" }, + { 246303013, "Play_Hunter_AbilX_Channel_BowMvt_A_FP" }, + { 257083749, "Play_Mvt_Hunter_S0_Arm_Long_Ramp_1P" }, + { 257804690, "Play_Hunter_AbilE_Equip" }, + { 278209818, "Play_Mvt_Hunter_S0_Arm_Fast_Short_1P" }, + { 301192990, "Play_Hunter_Abil4_Equip_Bow_Mvt_B" }, + { 303555850, "Play_Mvt_Hunter_S0_ArmR_Short_Fast2_1P" }, + { 345810069, "Play_Mvt_Hunter_S0_ArmR_Short_Slow2_1P" }, + { 347140840, "Play_Mvt_Hunter_S0_Arm_Fast_Short_1P" }, + { 348014624, "Play_Mvt_Hunter_S0_ArmR_Med_GunDown1_1P" }, + { 359206669, "Play_Hunter_AbilGrenade_Hit_Confirm" }, + { 366618498, "Play_Hunter_S0_AB_Q_SonarBolt_Cancel_Bow_Mvt" }, + { 371605645, "Play_Hunter_AbilE_Dart_Complete" }, + { 405301431, "Play_Mvt_Hunter_S0_Arm_Inspect_Med_Fast_1P" }, + { 416724551, "Play_Mvt_Hunter_S0_Arm_Inspect_Short_1P" }, + { 433705435, "Play_Mvt_Hunter_S0_ArmR_Med_GunDown1_1P" }, + { 462434580, "Play_Mvt_Hunter_S0_Arm_Inspect_Rifle_Med_1P" }, + { 475500538, "Play_FS_Hunter_Run" }, + { 475978051, "Play_Mvt_Hunter_S0_ArmR_Charge_Rifle_Up_1P" }, + { 477924749, "Play_Hunter_AbilQ_Ricochet_3P" }, + { 479626970, "Play_Mvt_Hunter_S0_Arm_Inspect_Down_Small_1P" }, + { 486162629, "Play_Hunter_S0_AB_X_SuperBolt_Cancel_Bow_Mvt_B" }, + { 501493240, "Play_Hunter_Abil_SonarBolt_SonarPing" }, + { 513846439, "Play_Hunter_S0_AB_Q_SonarBolt_Equip_Elec_A" }, + { 517943327, "Play_Hunter_S0_AB_X_SuperBolt_Cancel_Bow_Mvt_A" }, + { 518974246, "Play_Mvt_Hunter_S0_Arm_Inspect_Short_1P" }, + { 528190088, "Play_Hunter_AbilX_HitConf_Death" }, + { 537436209, "Play_Mvt_Hunter_S0_Arm_Med_1P" }, + { 537586624, "Play_Hunter_S0_AB_X_SuperBolt_Cancel_Bow_Mvt_C" }, + { 537886988, "Play_Mvt_Hunter_S0_ArmL_Med_Ramp_1P" }, + { 543066845, "Play_Hunter_AbilE_Dart_Complete" }, + { 546032425, "Play_Mvt_Hunter_S0_ArmL_Long_Slow_1P" }, + { 557246503, "Play_Mvt_Hunter_S0_ArmL_Med_Ramp_1P" }, + { 570451217, "Play_Hunter_AbilE_Dart_HitConfirm" }, + { 581179766, "Play_FS_Hunter_Jump" }, + { 591246537, "Play_Mvt_Hunter_S0_Impact_Light_1P" }, + { 592275078, "Play_Hunter_AbilX_OnBeam_Fire" }, + { 607763976, "Play_Mvt_Hunter_S0_Arm_Inspect_Short_1P" }, + { 612629035, "Play_Mvt_Hunter_S0_ArmR_Charge_Rifle_Down_1P" }, + { 625581571, "Play_Mvt_Hunter_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 636924082, "Play_Mvt_Hunter_S0_Arm_Fast_Short_1P" }, + { 644227778, "Play_Hunter_AbilE_Drone_Destroyed" }, + { 659154469, "Play_Hunter_AbilX_Fire_BowMvt_A_FP" }, + { 665772451, "Play_Mvt_Hunter_S0_Arm_Inspect_Med_Fast_1P" }, + { 683523352, "Play_Abil_Joules_X_LaserReady" }, + { 695069383, "Play_Mvt_Hunter_S0_Arm_Inspect_Med_1P" }, + { 723394308, "Play_Hunter_Abil4_Deployed_Start" }, + { 754945721, "Play_Hunter_AbilE_Deploy" }, + { 769104514, "Play_Hunter_Abil4_Equip_Bow_Mvt_A" }, + { 786000043, "Play_Hunter_AbilX_Channel" }, + { 815837420, "Play_Mvt_Hunter_S0_Arm_Inspect_Rifle_Med_1P" }, + { 820883538, "Play_Hunter_S0_AB_Q_SonarBolt_Cancel_Zap" }, + { 846536626, "Play_Hunter_AbilX_Equip_BowMvt_B" }, + { 848346435, "Play_Hunter_AbilX_Equip_Energy" }, + { 857585574, "Play_Mvt_Hunter_S0_ArmR_Med_GunUp1_1P" }, + { 870334179, "Play_Mvt_Hunter_S0_Arm_Inspect_Rifle_Med_1P" }, + { 880269375, "Play_Mvt_Hunter_S0_ArmR_Charge_Rifle_Down_1P" }, + { 891851574, "Play_Mvt_Hunter_S0_ArmL_Long_Slow_1P" }, + { 918654276, "Play_Hunter_AbilX_Channel_BowMvt_A_FP" }, + { 933178236, "Play_Mvt_Hunter_S0_ArmL_Med_Ramp_1P" }, + { 968722011, "Play_Mvt_Hunter_S0_ArmL_Long_Slow_1P" }, + { 970109952, "Play_Hunter_AbilQ_Cast" }, + { 1018099411, "Play_Hunter_AbilQ_Ricochet_3P" }, + { 1018470853, "Play_Hunter_AbilE_Missile" }, + { 1019981508, "Play_Hunter_AbilQ_Hit_3P" }, + { 1024013262, "Play_Hunter_AbilX_OnBeam_Warning" }, + { 1029410771, "Play_Hunter_S0_AB_Q_SonarBolt_Equip_Bow_Mvt_C" }, + { 1038565365, "Play_Hunter_AbilX_Channel_BowMvt_B_FP" }, + { 1040322472, "Play_Mvt_Hunter_S0_ArmL_Fast_Ramp_1P" }, + { 1057456715, "Play_Mvt_Hunter_S0_ArmR_Charge_Rifle_Down_1P" }, + { 443429107, "Play_Killjoy_AbilX_Lockdown_Detained_End" }, + { 864881051, "Play_Killjoy_AbilX_Lockdown_Detained_End" }, + { 16669629, "Play_Phoenix_AbilX_FormDecay" }, + { 67988597, "Play_Mvt_Phoenix_S0_Arm_Inspect_Med_Fast_1P" }, + { 71358294, "Play_Mvt_Phoenix_S0_Arm_Inspect_Rifle_Med_1P" }, + { 72061220, "Play_Phoenix_Abil4_Damage" }, + { 84281831, "Play_Phoenix_Abil4_Projectile_Drop" }, + { 94252168, "Play_Mvt_Phoenix_S0_Arm_Fast_Dramatic_1P" }, + { 119517181, "Play_Phoenix_AbilX_FormDecay" }, + { 129503895, "Play_Mvt_Phoenix_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 140488807, "Play_Mvt_Phoenix_ArmL_Long_Slow_1P_01" }, + { 215162538, "Play_Mvt_Phoenix_S0_Arm_Inspect_Short_1P" }, + { 225099451, "Play_Mvt_Phoenix_S0_Arm_Fast_Dramatic_1P" }, + { 229065898, "Play_Mvt_Phoenix_S0_Arm_Inspect_Rifle_Med_1P" }, + { 229370313, "Play_Mvt_Phoenix_S0_Arm_Fast_Short_1P" }, + { 235118468, "Play_Mvt_Phoenix_Impact_Light_1P_01" }, + { 262598031, "Play_Mvt_Phoenix_ArmR_Med_GunDown1_1P_01" }, + { 278308601, "Play_Mvt_Phoenix_ArmR_Med_GunDown1_1P_01" }, + { 291943220, "Play_FS_Mvt_Phoenix_Land_Normal" }, + { 309240851, "Play_Phoenix_AbilX_FormDecay" }, + { 312501155, "Play_Mvt_Phoenix_S0_Arm_Inspect_Short_1P" }, + { 340157568, "Play_FS_Mvt_Phoenix_Run" }, + { 367189794, "Play_Mvt_Phoenix_ArmR_Charge_Rifle_Down_1P_01" }, + { 371615188, "Play_Mvt_Phoenix_ArmL_Med_Ramp_1P_01" }, + { 371815030, "Play_Mvt_Phoenix_ArmL_Long_Slow_1P_01" }, + { 374168422, "Play_Phoenix_AbilX_FormDecay" }, + { 377526034, "Play_Mvt_Phoenix_Arm_Long_Ramp_1P_01" }, + { 386423188, "Play_Phoenix_Abil4_ZoneDecay" }, + { 431496456, "Play_Mvt_Phoenix_ArmR_Med_GunUp1_1P_01" }, + { 467694713, "Play_Mvt_Phoenix_S0_Arm_Fast_Short_1P" }, + { 504125435, "Play_Mvt_Phoenix_S0_ArmL_Fast_Ramp_1P" }, + { 504911721, "Play_Mvt_Phoenix_ArmR_Charge_Rifle_Down_1P_01" }, + { 557848170, "Play_Mvt_Phoenix_Arm_Long_Ramp_1P_01" }, + { 571842583, "Play_Mvt_Phoenix_S0_Arm_Fast_Dramatic_1P" }, + { 652091217, "Play_Phoenix_AbilQ_Projectile" }, + { 659166348, "Play_Mvt_Phoenix_ArmR_Short_Slow2_1P_01" }, + { 671252989, "Play_Mvt_Phoenix_S0_Arm_Inspect_Rifle_Med_1P" }, + { 684020280, "Play_Phoenix_AbilQ_WallDecay" }, + { 690792176, "Play_Mvt_Phoenix_ArmR_Charge_Rifle_Down_1P_01" }, + { 697896528, "Play_Mvt_Phoenix_ArmR_Short_Fast2_1P_01" }, + { 703777731, "Play_Mvt_Phoenix_S0_Arm_Inspect_Med_Fast_1P" }, + { 712864531, "Play_Mvt_Phoenix_S0_Arm_Inspect_Short_1P" }, + { 736822635, "Play_Phoenix_AbilE_FlashPlayer" }, + { 738425851, "Play_Mvt_Phoenix_ArmR_Charge_Rifle_Up_1P_01" }, + { 751949940, "Play_Phoenix_AbilE_FlashPlayer" }, + { 777183187, "Play_Phoenix_AbilE_FlashPlayer" }, + { 810549734, "Play_Mvt_Phoenix_S0_Arm_Inspect_Med_1P" }, + { 847270043, "Play_Mvt_Phoenix_ArmR_Med_GunDown1_1P_01" }, + { 850229954, "Play_Phoenix_AbilE_Projectile" }, + { 865632355, "Play_Mvt_Phoenix_ArmL_Med_Ramp_1P_01" }, + { 892550313, "Play_Mvt_Phoenix_ArmL_Long_Slow_1P_01" }, + { 921339326, "Play_Mvt_Phoenix_S0_Arm_Inspect_Down_Small_1P" }, + { 932383103, "Play_Mvt_Phoenix_S0_Arm_Fast_Short_1P" }, + { 970595663, "Play_Mvt_Phoenix_ArmL_Med_Ramp_1P_01" }, + { 1021373450, "Play_Mvt_Phoenix_S0_Arm_Inspect_Down_Small_1P" }, + { 1057678816, "Play_FS_Mvt_Phoenix_Jump" }, + { 1073182211, "Play_Mvt_Phoenix_Arm_Med_1P_01" }, + { 1861258, "Play_Mvt_Sarge_S0_Arm_Med_Short_1P" }, + { 14658819, "Play_Sarge_AbilQ_Projectile_Bounce" }, + { 35600789, "Play_Mvt_Sarge_S0_Arm_Fast_Dramatic_1P" }, + { 47740383, "Play_Sarge_OrbitalStrike_Equip_B" }, + { 82450467, "Play_Sarge_Smoke_Equip_C" }, + { 87246914, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Down_1P" }, + { 88728930, "Play_FS_Mvt_Sarge_Land_Normal" }, + { 103007205, "Play_Sarge_Molotov_Equip_D" }, + { 122828273, "Play_Sarge_Molotov_Equip_B" }, + { 143920235, "Play_sarge_temp_Orbital_Laser_Target_Warning" }, + { 155207807, "Play_Sarge_Smoke_DeployButton" }, + { 157842772, "Play_Mvt_Sarge_S0_Arm_Long_Ramp_1P" }, + { 192029875, "Play_Sarge_Smoke_SelectLocation" }, + { 203972786, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_Fast_1P" }, + { 204677409, "Play_Sarge_Smoke_Equip_B" }, + { 211236803, "Play_Mvt_Sarge_S0_Arm_Long_Slow_1P" }, + { 211550494, "Play_Sarge_Smoke_SelectLocation" }, + { 227424184, "Play_Mvt_Sarge_S0_Arm_Med_GunDown1_1P" }, + { 239582629, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Down_1P" }, + { 243476854, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Up_1P" }, + { 255528481, "Play_Mvt_Sarge_S0_Arm_Med_1P" }, + { 278060208, "Play_Sarge_StimBeacon_Equip_E_FP" }, + { 308908440, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_Fast_1P" }, + { 322014451, "Play_Mvt_Sarge_S0_Arm_Inspect_Down_Small_1P" }, + { 337659281, "Play_Mvt_Sarge_S0_Arm_Inspect_Short_1P" }, + { 342919638, "Play_FS_Mvt_Sarge_Jump" }, + { 349187678, "Play_Sarge_StimBeacon_Cast" }, + { 358450983, "Play_Sarge_Molotov_Equip_C" }, + { 360426448, "Play_Sarge_OrbitalStrike_Equip_C" }, + { 379432893, "Play_Sarge_StimBeacon_Collapse" }, + { 406035264, "Play_Mvt_Sarge_S0_Arm_Med_GunUp1_1P" }, + { 411247999, "Play_Sarge_Abil4_Smoke_Form" }, + { 411613279, "Play_Sarge_StimBeacon_Buff_On" }, + { 413098362, "Play_Mvt_Sarge_S0_Arm_Med_Short_1P" }, + { 414954141, "Play_sarge_temp_Orbital_Laser_Hit_Confirm" }, + { 419921929, "Play_Mvt_Sarge_S0_Arm_Fast_Ramp_1P" }, + { 432681955, "Play_Sarge_StimBeacon_Cast" }, + { 440131116, "Play_Mvt_Sarge_S0_Arm_Long_Ramp_1P" }, + { 461072743, "Play_Sarge_StimBeacon_Equip_C_FP" }, + { 494264610, "Play_Sarge_OrbitalStrike_Equip_D" }, + { 495469114, "Play_Sarge_Smoke_Equip_A" }, + { 495752772, "Play_Sarge_StimBeacon_Equip_C_FP" }, + { 496430666, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_1P" }, + { 505941553, "Play_Mvt_Sarge_S0_Arm_Fast_Short_1P" }, + { 517064942, "Play_Sarge_StimBeacon_Equip_D_FP" }, + { 524042586, "Play_Sarge_OrbitalStrike_Equip_A" }, + { 537617327, "Play_Sarge_Abil4_Smoke_End" }, + { 552612160, "Play_Sarge_Smoke_Equip_3P" }, + { 556284069, "Play_Sarge_AbilQ_Projectile_Bounce" }, + { 557904287, "Play_Mvt_Sarge_S0_Arm_Long_Slow_1P" }, + { 570534951, "Play_Sarge_OrbitalStrike_Cast" }, + { 599682216, "Play_Sarge_Molotov_Equip_3P" }, + { 619777985, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Lower_1P" }, + { 629012902, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Down_1P" }, + { 691650820, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Up_1P" }, + { 697191195, "Play_Mvt_Sarge_S0_Arm_Med_Short_1P" }, + { 699641145, "Play_Sarge_Molotov_Equip_A" }, + { 706726328, "Play_Mvt_Sarge_S0_Arm_Fast_Dramatic_1P" }, + { 737330214, "Play_Mvt_Sarge_S0_Arm_Med_Ramp_1P" }, + { 743359947, "Play_Sarge_StimBeacon_Equip_C_FP" }, + { 746473770, "Play_Sarge_StimBeacon_Deploy" }, + { 749260517, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 771138405, "Play_Sarge_OrbitalStrike_Equip_3P" }, + { 788510999, "Play_Sarge_StimBeacon_Equip_3P" }, + { 804884580, "Play_Sarge_StimBeacon_Projectile_Land" }, + { 823415195, "Play_Mvt_Sarge_S0_Arm_Med_Stress_1P" }, + { 832806490, "Play_Sarge_AbilQ_Explode" }, + { 834670918, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_Fast_1P" }, + { 837075431, "Play_Sarge_AbilQ_Loop_End" }, + { 841115197, "Play_Mvt_Sarge_S0_Arm_Inspect_Med_1P" }, + { 862175703, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Med_1P" }, + { 876363789, "Play_Sarge_AbilQ_Projectile_Bounce" }, + { 913252438, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 934204886, "Play_Sarge_Smoke_SelectLocation" }, + { 945903952, "Play_FS_Mvt_Sarge_Run" }, + { 951645695, "Play_Mvt_Sarge_S0_Arm_Long_Ramp_1P" }, + { 963376920, "Play_Sarge_Smoke_SelectLocation" }, + { 982953628, "Play_Mvt_Sarge_S0_Arm_Long_Slow_1P" }, + { 994279565, "Play_sarge_temp_Orbital_Laser_Fire" }, + { 1004937274, "Play_Mvt_Sarge_S0_Arm_Short_Slow2_1P" }, + { 1010619139, "Play_Sarge_StimBeacon_Cast" }, + { 1015907668, "Play_Mvt_Sarge_S0_Arm_Charge_Rifle_Up_1P" }, + { 1047577156, "Play_Mvt_Sarge_S0_Arm_Inspect_Rifle_Med_1P" }, + { 1073036365, "Play_Mvt_Sarge_S0_Arm_Short_Fast_1P" }, + { 54583453, "Play_Thorne_AbilQ_Equip" }, + { 65553124, "Play_Thorne_Abil4_Explode" }, + { 71807128, "Play_Mvt_Thorne_S0_Impact_Light_1P" }, + { 74660681, "Play_Thorne_Abil4_Cast" }, + { 80328692, "Play_Thorne_AbilQ_Equip" }, + { 80793395, "Play_Mvt_Thorne_S0_ArmL_Med_Ramp_1P" }, + { 111520316, "Play_FS_Mvt_Thorne_Land_Normal" }, + { 116078668, "Play_Thorne_AbilX_Equip" }, + { 118933396, "Play_Thorne_AbilQ_Cast_Self" }, + { 125743997, "Play_Thorne_Abil4_Cast" }, + { 145831728, "Play_Thorne_Abil4_SlowFieldForm" }, + { 151022496, "Play_Mvt_Thorne_S0_Arm_Fast_Short_1P" }, + { 157259221, "Play_Mvt_Thorne_S0_Arm_Inspect_Med_Fast_1P" }, + { 173347704, "Play_Mvt_Thorne_S0_Arm_Med_Short_1P" }, + { 177460724, "Play_Mvt_Thorne_S0_ArmR_Med_Stress_1P" }, + { 181170872, "Play_Mvt_Thorne_S0_ArmR_Charge_Rifle_Down_1P" }, + { 193538982, "Play_Mvt_Thorne_S0_ArmR_Short_Fast2_1P" }, + { 212521999, "Play_Mvt_Thorne_S0_Arm_Long_Ramp_1P" }, + { 223035641, "Play_Thorne_Abil4_FootstepLayer" }, + { 226245579, "Play_Mvt_Thorne_S0_ArmL_Long_Slow_1P" }, + { 233943405, "Play_Thorne_AbilQ_Cast_Ally" }, + { 240201757, "Play_Thorne_Abil4_SlowFieldForm" }, + { 262117706, "Play_Thorne_AbilX_Equip" }, + { 288509825, "Play_Thorne_AbilQ_Cast_Self" }, + { 321998463, "Play_Mvt_Thorne_S0_ArmR_Short_Slow2_1P" }, + { 327667376, "Play_Thorne_AbilE_Cast" }, + { 360543173, "Play_Mvt_Thorne_S0_Arm_Fast_Dramatic_1P" }, + { 374837155, "Play_Thorne_Abil4_SlowFieldForm" }, + { 395794647, "Play_Mvt_Thorne_S0_Arm_Inspect_Short_1P" }, + { 409283538, "Play_Mvt_Thorne_S0_Arm_Fast_Dramatic_1P" }, + { 428199092, "Play_FS_Mvt_Thorne_Run" }, + { 443472445, "Play_Mvt_Thorne_S0_Arm_Both_Slam_1P" }, + { 457356267, "Play_Mvt_Thorne_S0_ArmL_Long_Slow_1P" }, + { 458849282, "Play_Thorne_AbilQ_Equip" }, + { 466396739, "Play_Mvt_Thorne_S0_ArmR_Short_Fast_1P" }, + { 487679136, "Play_Mvt_Thorne_S0_Arm_Inspect_Short_1P" }, + { 497358860, "Play_Thorne_Abil4_SlowFieldDecay" }, + { 512633259, "Play_Mvt_Thorne_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 524358433, "Play_Thorne_Abil4_SlowFieldDecay" }, + { 547072264, "Play_Thorne_AbilE_Equip" }, + { 552039229, "Play_Thorne_AbilX_Equip" }, + { 567727144, "Play_Thorne_AbilQ_Equip" }, + { 570118613, "Play_Thorne_AbilE_Equip" }, + { 571249917, "Play_Thorne_Abil4_SlowFieldDecay" }, + { 571898791, "Play_Mvt_Thorne_S0_ArmR_Short_Fast_1P" }, + { 579002065, "Play_Thorne_AbilQ_Equip" }, + { 595089752, "Play_Thorne_Abil4_Cast" }, + { 620615067, "Play_Thorne_AbilE_ToggleDirection" }, + { 652263699, "Play_FS_Mvt_Thorne_Jump" }, + { 660920585, "Play_Thorne_Abil4_FootstepLayer" }, + { 679813000, "Play_Thorne_AbilQ_Equip" }, + { 683471058, "Play_Thorne_Abil4_Cast" }, + { 687490128, "Play_Thorne_AbilQ_Equip" }, + { 698094853, "Play_Thorne_AbilX_Equip" }, + { 740816690, "Play_Mvt_Thorne_S0_Arm_Inspect_Med_1P" }, + { 744728871, "Play_Mvt_Thorne_S0_Arm_Inspect_Rifle_Lower_1P" }, + { 782591688, "Play_Thorne_AbilQ_Cast_Ally" }, + { 784045015, "Play_Mvt_Thorne_S0_Arm_Fast_Short_1P" }, + { 797446930, "Play_Mvt_Thorne_S0_Arm_Inspect_Rifle_Med_1P" }, + { 801522368, "Play_Thorne_AbilQ_Equip" }, + { 814212794, "Play_Mvt_Thorne_S0_ArmR_Charge_Rifle_Up_1P" }, + { 814563982, "Play_Mvt_Thorne_S0_Arm_Inspect_Short_1P" }, + { 840381748, "Play_Mvt_Thorne_S0_Arm_Med_1P" }, + { 850944671, "Play_Thorne_Abil4_FootstepLayer" }, + { 906821277, "Play_Mvt_Thorne_S0_ArmR_Short_Fast_1P" }, + { 944334151, "Play_Thorne_AbilX_Equip" }, + { 953479377, "Play_Mvt_Thorne_S0_ArmR_Med_GunDown1_1P" }, + { 962422402, "Play_Mvt_Thorne_S0_Arm_Inspect_Down_Small_1P" }, + { 976915023, "Play_Mvt_Thorne_S0_ArmL_Fast_Ramp_1P" }, + { 1042843630, "Play_Thorne_AbilX_Equip" }, + { 1050903132, "Play_Mvt_Thorne_S0_ArmL_Long_Slow_1P" }, + { 29972006, "Play_FS_Mvt_TrainingBot_Run" }, + { 868989185, "Play_FS_Mvt_TrainingBot_Land" }, + { 3537009, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Down_1P" }, + { 17168921, "Play_Mvt_Vampire_S0_ArmR_Short_Fast2_1P" }, + { 21662791, "Play_Mvt_Vampire_S0_ArmR_Short_Fast2_1P" }, + { 46511427, "Play_Mvt_Vampire_S0_ArmR_Med_Stress_1P" }, + { 56001895, "Play_Mvt_Vampire_S0_Arm_Inspect_Short_1P" }, + { 60755082, "Play_FS_Mvt_Vampire_Run" }, + { 64835709, "Play_FS_Mvt_Vampire_Run" }, + { 72653719, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Up_1P" }, + { 72708929, "Play_Mvt_Vampire_S0_ArmL_Med_Ramp_1P" }, + { 78835955, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_Fast_1P" }, + { 96228023, "Play_Mvt_Vampire_S0_ArmR_Med_GunDown1_1P" }, + { 101303189, "Play_ResetCarry_AbilQ_Cast" }, + { 136750681, "Play_Mvt_Vampire_S0_Arm_Fast_Dramatic_1P" }, + { 142433750, "Play_Mvt_Vampire_S0_ArmL_Fast_Ramp_1P" }, + { 147836769, "Play_Mvt_Vampire_S0_Arm_Inspect_Down_Small_1P" }, + { 156485494, "Play_Mvt_Vampire_S0_ArmR_Med_GunUp1_1P" }, + { 162107359, "Play_Mvt_Vampire_S0_ArmR_Short_Slow2_1P" }, + { 162124327, "Play_Mvt_Vampire_S0_ArmL_Fast_Ramp_1P" }, + { 174774862, "Play_ResetCarry_AbilE_Deactivate" }, + { 197719974, "Play_FS_Mvt_Vampire_Land" }, + { 215615142, "Play_FS_Mvt_Vampire_Run" }, + { 241308482, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Med_1P" }, + { 244906250, "Play_Mvt_Vampire_S0_ArmR_Short_Fast2_1P" }, + { 260876013, "Play_Mvt_Vampire_S0_ArmR_Med_GunDown1_1P" }, + { 268339589, "Play_Mvt_Vampire_S0_ArmR_Med_GunUp1_1P" }, + { 288523007, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Down_1P" }, + { 292736539, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Up_1P" }, + { 314267508, "Play_Mvt_Vampire_S0_Arm_Fast_Short_1P" }, + { 344844371, "Play_Mvt_Vampire_S0_ArmL_Long_Slow_1P" }, + { 355923655, "Play_ResetCarry_AbilE_Deactivate" }, + { 362160170, "Play_Mvt_Vampire_S0_Arm_Inspect_Short_1P" }, + { 374831254, "Play_Mvt_Vampire_S0_Arm_Med_Short_1P" }, + { 376353558, "Play_Mvt_Vampire_S0_Arm_Long_Ramp_1P" }, + { 383442030, "Play_Mvt_Vampire_S0_Arm_Fast_Short_1P" }, + { 384048274, "Play_FS_Mvt_Vampire_Run" }, + { 395226003, "Play_Mvt_Vampire_S0_Arm_Inspect_Down_Small_1P" }, + { 405841292, "Play_Mvt_Vampire_S0_Arm_Med_1P" }, + { 459969818, "Play_FS_Mvt_Vampire_Run" }, + { 468847661, "Play_Mvt_Vampire_S0_ArmL_Long_Slow_1P" }, + { 475879086, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_Fast_1P" }, + { 504637574, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_1P" }, + { 515409053, "Play_Mvt_Vampire_S0_ArmR_Med_Stress_1P" }, + { 534544196, "Play_ResetCarry_AbilE_Cast" }, + { 548412965, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 549762167, "Play_Mvt_Vampire_S0_ArmR_Short_Slow2_1P" }, + { 572244281, "Play_Mvt_Vampire_S0_Arm_Med_1P" }, + { 590894200, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 612277804, "Play_Mvt_Vampire_S0_Arm_Long_Ramp_1P" }, + { 614605314, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_1P" }, + { 654307619, "Play_FS_Mvt_Vampire_Run" }, + { 668417798, "Play_Mvt_Vampire_S0_Arm_Fast_Dramatic_1P" }, + { 669949459, "Play_Mvt_Vampire_S0_Arm_Inspect_Down_Small_1P" }, + { 674449208, "Play_Mvt_Vampire_S0_Arm_Med_1P" }, + { 675905828, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Up_1P" }, + { 678792563, "Play_Mvt_Vampire_S0_Impact_Light_1P" }, + { 685485980, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Med_1P" }, + { 693747001, "Play_Mvt_Vampire_S0_Arm_Inspect_Short_1P" }, + { 707198898, "Play_ResetCarry_AbilE_Deactivate" }, + { 712074996, "Play_Vampire_AbilX_Cast" }, + { 736274053, "Play_Mvt_Vampire_S0_ArmL_Fast_Ramp_1P" }, + { 780252837, "Play_Mvt_Vampire_S0_ArmR_Med_GunUp1_1P" }, + { 798536451, "Play_FS_Mvt_Vampire_Run" }, + { 844682614, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_Fast_1P" }, + { 848030033, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 849450261, "Play_Mvt_Vampire_S0_Impact_Light_1P" }, + { 854703033, "Play_Mvt_Vampire_S0_ArmR_Med_GunDown1_1P" }, + { 857101205, "Play_Mvt_Vampire_S0_Impact_Light_1P" }, + { 857112583, "Play_Mvt_Vampire_S0_ArmR_Charge_Rifle_Down_1P" }, + { 859194195, "Play_FS_Mvt_Vampire_Run" }, + { 862235303, "Play_Mvt_Vampire_S0_Arm_Inspect_Rifle_Med_1P" }, + { 864615907, "Play_FS_Mvt_Vampire_Jump" }, + { 871439535, "Play_ResetCarry_AbilQ_Cast" }, + { 875569689, "Play_Mvt_Vampire_S0_Arm_Med_Short_1P" }, + { 878768338, "Play_Mvt_Vampire_S0_ArmR_Short_Slow2_1P" }, + { 887936833, "Play_Vampire_AbilX_Cast" }, + { 894144433, "Play_Mvt_Vampire_S0_Arm_Inspect_Med_1P" }, + { 921181750, "Play_Mvt_Vampire_S0_Arm_Fast_Short_1P" }, + { 932430738, "Play_FS_Mvt_Vampire_Jump" }, + { 948123795, "Play_Mvt_Vampire_S0_Arm_Fast_Dramatic_1P" }, + { 952738235, "Play_Mvt_Vampire_S0_Arm_Med_Short_1P" }, + { 953513700, "Play_FS_Mvt_Vampire_Land" }, + { 982162107, "Play_Mvt_Vampire_S0_ArmL_Med_Ramp_1P" }, + { 1002877773, "Play_FS_Mvt_Vampire_Land" }, + { 1023994028, "Play_FS_Mvt_Vampire_Jump" }, + { 1041837620, "Play_Mvt_Vampire_S0_ArmR_Med_Stress_1P" }, + { 1044758147, "Play_Mvt_Vampire_S0_Arm_Long_Ramp_1P" }, + { 1050359042, "Play_Mvt_Vampire_S0_ArmL_Med_Ramp_1P" }, + { 1055850039, "Play_Mvt_Vampire_S0_ArmL_Long_Slow_1P" }, + { 8959714, "Play_Wraith_Abil_SmokeDome_DeActivate" }, + { 13240462, "Play_Wraith_Abil_GlobalTeleport_Equip_Cancel" }, + { 45492547, "Play_Abil_Wraith_Q_Cast" }, + { 49106408, "Play_Wp_Fear_Toxin_Grenade_Flying_Whoosh" }, + { 68524465, "Play_Mvt_Wraith_ArmR_Med_GunDown1_1P" }, + { 77889031, "Play_Mvt_Wraith_S0_Arm_Both_Slam_1P" }, + { 97177343, "Play_Mvt_Wraith_ArmR_Med_Stress_1P" }, + { 103806149, "Play_Mvt_Wraith_ArmL_Long_Slow_1P" }, + { 116756646, "Play_Wraith_Abil_GlobalTeleport_Equip" }, + { 118470567, "Play_Mvt_Wraith_S0_Arm_Fast_Dramatic_1P" }, + { 129283207, "Play_Mvt_Wraith_S0_ArmL_Fast_Ramp_1P" }, + { 129813847, "Play_Abil_Wraith_ShadowStep_Equip" }, + { 166550228, "Play_Mvt_Wraith_S0_Arm_Inspect_Down_Small_1P" }, + { 179367065, "Play_Mvt_Wraith_S0_Arm_Fast_Short_1P" }, + { 216235062, "Play_FS_Mvt_Wraith_Run" }, + { 230272760, "Play_FS_Mvt_Wraith_Jump" }, + { 243897124, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Up_1P" }, + { 246451573, "Play_Abil_Wraith_Q_Cast" }, + { 254940229, "Play_FS_Mvt_Wraith_Jump" }, + { 257270347, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Down_1P" }, + { 266739425, "Play_Mvt_Wraith_Arm_Long_Ramp_1P" }, + { 284202383, "Play_Mvt_Wraith_Impact_Light_1P" }, + { 304677599, "Play_Wraith_Abil_SmokeDome_Transition_In" }, + { 312767832, "Play_FS_Mvt_Wraith_Jump" }, + { 323368716, "Play_Mvt_Wraith_S0_Arm_Fast_Dramatic_1P" }, + { 348753060, "Play_Abil_Wraith_X_Destroyed" }, + { 356506345, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Med_1P" }, + { 358965353, "Play_Mvt_Wraith_ArmR_Short_Fast2_1P" }, + { 361099193, "Play_Mvt_Wraith_ArmL_Med_Ramp_1P" }, + { 382599570, "Play_Mvt_Wraith_S0_Arm_Both_Slam_1P" }, + { 430348861, "Play_Mvt_Wraith_ArmL_Long_Slow_1P" }, + { 431599355, "Play_Mvt_Wraith_ArmR_Short_Slow2_1P" }, + { 445585554, "Play_Mvt_Wraith_ArmL_Med_Ramp_1P" }, + { 447010724, "Play_Abil_Wraith_ShadowStep_Arrive_3P" }, + { 469319217, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Med_1P" }, + { 471267623, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Up_1P" }, + { 476536422, "Play_Mvt_Wraith_S0_Arm_Both_Slam_1P" }, + { 477008422, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Down_1P" }, + { 477655996, "Play_Char_Wraith_Arm_Move_Generic_Slow_1" }, + { 498543584, "Play_FS_Mvt_Wraith_Run" }, + { 512274485, "Play_Wp_Grenade_Bounce_Fear_Toxin" }, + { 520747007, "Play_Mvt_Wraith_ArmR_Short_Slow2_1P" }, + { 531849988, "Play_FS_Mvt_Wraith_Land_Normal" }, + { 550151484, "Play_Mvt_Wraith_ArmR_Med_GunUp1_1P" }, + { 560619527, "Play_Mvt_Wraith_ArmR_Med_GunDown1_1P" }, + { 570331835, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_Fast_1P" }, + { 587643827, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_1P" }, + { 592899010, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Up_1P" }, + { 604480988, "Play_Mvt_Wraith_S0_Arm_Med_Short_1P" }, + { 610762968, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_1P" }, + { 611838008, "Play_Mvt_Wraith_S0_Arm_Med_Short_1P" }, + { 623428095, "Play_Mvt_Wraith_ArmR_Short_Slow2_1P" }, + { 624915884, "Play_Abil_Wraith_ShadowStep_Equip" }, + { 645639833, "Play_Mvt_Wraith_ArmL_Med_Ramp_1P" }, + { 647096067, "Play_Mvt_Wraith_ArmR_Med_GunDown1_1P" }, + { 652805359, "Play_Mvt_Wraith_Arm_Med_1P" }, + { 673825096, "Play_Wraith_Abil_SmokeDome_Activate" }, + { 675876984, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Down_1P" }, + { 681788241, "Play_Wp_Fear_Toxin_Grenade_Flying_Whoosh" }, + { 684555603, "Play_FS_Mvt_Wraith_Run" }, + { 698319873, "Play_Mvt_Wraith_ArmR_Short_Slow2_1P" }, + { 701142745, "Play_Mvt_Wraith_S0_Arm_Inspect_Short_1P" }, + { 709754131, "Play_FS_Mvt_Wraith_Run" }, + { 732199884, "Play_Mvt_Wraith_S0_Arm_Fast_Short_1P" }, + { 742189981, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 747559503, "Play_Abil_Wraith_ShadowStep_Depart" }, + { 757088592, "Play_Abil_Wraith_Kindred_Spirit_Destroyed" }, + { 773407509, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 774120850, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_1P" }, + { 795993406, "Play_Wraith_Abil_GlobalTeleport_EquipIdle_LP" }, + { 800844913, "Play_Wraith_Abil_Q_Equip" }, + { 813488662, "Play_FS_Mvt_Wraith_Run" }, + { 817224127, "Play_Mvt_Wraith_ArmL_Long_Slow_1P" }, + { 848220026, "Play_FS_Mvt_Wraith_Land_Normal" }, + { 853121545, "Play_FS_Mvt_Wraith_Land_Normal" }, + { 857918440, "Play_FS_Mvt_Wraith_Run" }, + { 872811635, "Play_Mvt_Wraith_S0_ArmL_Fast_Ramp_1P" }, + { 894643453, "Play_Mvt_Wraith_Arm_Long_Ramp_1P" }, + { 901538286, "Play_Mvt_Wraith_S0_Arm_Med_Short_1P" }, + { 910985732, "Play_Mvt_Wraith_ArmR_Charge_Rifle_Up_1P" }, + { 911178837, "Play_Mvt_Wraith_S0_ArmL_Fast_Ramp_1P" }, + { 911260495, "Play_Mvt_Wraith_S0_Arm_Inspect_Down_Small_1P" }, + { 916957390, "Play_Abil_Wraith_ShadowStep_Depart" }, + { 935942945, "Play_Mvt_Wraith_S0_Arm_Inspect_Short_1P" }, + { 936734788, "Play_Mvt_Wraith_ArmR_Short_Fast2_1P" }, + { 942339248, "Play_Mvt_Wraith_Arm_Med_1P" }, + { 954567647, "Play_Mvt_Wraith_ArmR_Short_Fast2_1P" }, + { 957288101, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 960773454, "Play_Mvt_Wraith_ArmR_Med_Stress_1P" }, + { 970154406, "Play_Mvt_Wraith_S0_Arm_Inspect_Down_Small_1P" }, + { 978099724, "Play_Wraith_Abil_GlobalTeleport_Equip" }, + { 981753641, "Play_Mvt_Wraith_ArmR_Med_GunUp1_1P" }, + { 994556783, "Play_Mvt_Wraith_Impact_Light_1P" }, + { 995143198, "Play_Mvt_Wraith_S0_Arm_Inspect_Rifle_Med_1P" }, + { 1004510602, "Play_FS_Mvt_Wraith_Run" }, + { 1007168683, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_Fast_1P" }, + { 1009723388, "Play_Mvt_Wraith_Arm_Long_Ramp_1P" }, + { 1015621490, "Play_Wp_Fear_Toxin_Grenade_Flying_Whoosh" }, + { 1018658095, "Play_FS_Mvt_Wraith_Run" }, + { 1021538285, "Play_Abil_Wraith_Kindred_Spirit_Eye_Appears" }, + { 1032990188, "Play_Mvt_Wraith_S0_Arm_Fast_Dramatic_1P" }, + { 1041417578, "Play_Mvt_Wraith_Arm_Med_1P" }, + { 1042327916, "Play_Wraith_Abil_SmokeDome_Cast" }, + { 1049808220, "Play_Wraith_Abil_SmokeDome_Explode" }, + { 1049873388, "Play_Mvt_Wraith_S0_Arm_Fast_Short_1P" }, + { 1049910497, "Play_Mvt_Wraith_ArmR_Med_GunUp1_1P" }, + { 1056066760, "Play_Mvt_Wraith_Impact_Light_1P" }, + { 1065067601, "Play_Mvt_Wraith_S0_Arm_Inspect_Short_1P" }, + { 1065201638, "Play_Mvt_Wraith_S0_Arm_Inspect_Med_Fast_1P" }, + { 1069488825, "Play_Mvt_Wraith_ArmR_Med_Stress_1P" }, + { 15497162, "Play_Mvt_Wushu_S0_Arm_Both_Slam_1P" }, + { 22383443, "Play_Wushu_Grenade_Missile_Test" }, + { 73353640, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_Fast_1P" }, + { 93015402, "Play_Wushu_AbilX_Equip_FromWeapon" }, + { 93618121, "Play_Wushu_AbilX_Cast_Dagger" }, + { 99651206, "Play_Mvt_Wushu_ArmR_Short_Slow2_1P" }, + { 110070071, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_1P" }, + { 112424955, "Play_Mvt_Wushu_S0_Arm_Med_Short_1P" }, + { 112917194, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_1P" }, + { 134878911, "Play_Wushu_Grenade_Missile_Test" }, + { 145614036, "Play_Mvt_Wushu_ArmR_Short_Fast2_1P" }, + { 157840895, "Play_Mvt_Wushu_S0_Arm_Inspect_Short_1P" }, + { 170662202, "Play_Mvt_Wushu_S0_Arm_Inspect_Short_1P" }, + { 178060289, "Play_Wushu_AbilE_Cast_Back" }, + { 178476211, "Play_Mvt_Wushu_ArmR_Charge_Rifle_Up_1P" }, + { 191713836, "Play_Mvt_Wushu_S0_Arm_Fast_Short_1P" }, + { 202346916, "Play_Mvt_Wushu_Arm_Med_1P" }, + { 222118776, "Play_Wushu_AbilX_Equip_From4" }, + { 222375597, "Play_Mvt_Wushu_Impact_Light_1P" }, + { 240579993, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_Fast_1P" }, + { 279911937, "Play_Mvt_Wushu_S0_Arm_Fast_Dramatic_1P" }, + { 291034810, "Play_Mvt_Wushu_S0_ArmL_Fast_Ramp_1P" }, + { 291770746, "Play_Mvt_Wushu_S0_ArmL_Fast_Ramp_1P" }, + { 328859862, "Play_Wushu_AbilX_Equip_From4" }, + { 373036992, "Play_Mvt_Wushu_S0_Arm_Both_Slam_1P" }, + { 378609382, "Play_FS_Mvt_Wushu_Land_Normal" }, + { 388900626, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_1P" }, + { 407899081, "Play_Mvt_Wushu_S0_Arm_Both_Slam_1P" }, + { 413992935, "Play_FS_Mvt_Wushu_Jump" }, + { 418358338, "Play_Wushu_AbilX_Equip_From4" }, + { 418479055, "Play_Wushu_AbilE_Cast_Strafe" }, + { 422486933, "Play_Mvt_Wushu_S0_Arm_Inspect_Med_Fast_1P" }, + { 423391309, "Play_Wushu_AbilQ_Cast" }, + { 426514806, "Play_Mvt_Wushu_ArmR_Charge_Rifle_Down_1P" }, + { 428544093, "Play_Wp_Wushu_Dagger_Impact" }, + { 437504723, "Play_Mvt_Wushu_ArmL_Long_Slow_1P" }, + { 447761214, "Play_Mvt_Wushu_ArmR_Med_GunUp1_1P" }, + { 461475923, "Play_Mvt_Wushu_ArmR_Med_Stress_1P" }, + { 471028317, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Med_1P" }, + { 508460160, "Play_Wushu_AbilX_Equip_From4" }, + { 516608186, "Play_Mvt_Wushu_S0_Arm_Inspect_Down_Small_1P" }, + { 557995263, "Play_Wp_Wushu_MeleeDagger_Strike1" }, + { 583340821, "Play_Mvt_Wushu_S0_Arm_Fast_Short_1P" }, + { 592086762, "Play_Wushu_AbilX_Cast_Dagger" }, + { 602457287, "Play_Mvt_Wushu_S0_Arm_Inspect_Down_Small_1P" }, + { 604905557, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 611619404, "Play_Wushu_AbilP_Jump" }, + { 638250938, "Play_Mvt_Wushu_S0_Arm_Med_Short_1P" }, + { 644459416, "Play_Mvt_Wushu_S0_Arm_Inspect_Short_1P" }, + { 709951077, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Med_1P" }, + { 748919522, "Play_Wushu_AbilX_Equip_FromWeapon" }, + { 752081616, "Play_Mvt_Wushu_ArmR_Short_Slow_1P" }, + { 760086505, "Play_Mvt_Wushu_ArmL_Med_Ramp_1P" }, + { 765193507, "Play_Mvt_Wushu_S0_ArmL_Fast_Ramp_1P" }, + { 770403244, "Play_Wushu_Grenade_PreExplode" }, + { 841282944, "Play_Mvt_Wushu_S0_Arm_Fast_Short_1P" }, + { 844027386, "Play_Wushu_AbilE_Cast_Back" }, + { 853956127, "Play_Wushu_AbilX_Cast_Dagger_Multi" }, + { 858623005, "Play_Wushu_Grenade_Explode_Decay" }, + { 860025049, "Play_Mvt_Wushu_S0_Arm_Med_Short_1P" }, + { 860584502, "Play_Mvt_Wushu_ArmR_Med_GunDown1_1P" }, + { 893748091, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 905508592, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Swing_1P" }, + { 918626895, "Play_Mvt_Wushu_S0_Arm_Inspect_Down_Small_1P" }, + { 945519404, "Play_Wushu_AbilE_Cast_Forward" }, + { 964988218, "Play_Mvt_Wushu_Arm_Long_Ramp_1P" }, + { 967679984, "Play_Wushu_Grenade_Missile_Test" }, + { 972383597, "Play_Wushu_AbilE_Cast_Strafe" }, + { 980697692, "Play_Wushu_AbilE_Cast_Forward" }, + { 985606206, "Play_Mvt_Wushu_S0_Arm_Inspect_Rifle_Med_1P" }, + { 996054582, "Play_Wushu_AbilP_Jump" }, + { 1008221347, "Play_Mvt_Wushu_S0_Arm_Fast_Dramatic_1P" }, + { 1040839522, "Play_Mvt_Wushu_ArmR_Short_Fast_1P" }, + { 1055523901, "Play_Wushu_AbilQ_Cast" }, + { 1068927851, "Play_Mvt_Wushu_S0_Arm_Fast_Dramatic_1P" }, + { 131223731, "Play_Clay_CharacterSelect_Arrive_Abilities" }, + { 156379850, "Play_Hunter_CharacterSelect_Idle_01" }, + { 228679376, "Play_Clay_CharacterSelect_Arrive_Explosion2" }, + { 267243372, "Play_Wraith_CharacterSelect_Arrive" }, + { 280046394, "Play_Thorne_CharacterSelect_Idle" }, + { 322197515, "Play_Gumshoe_CharacterSelect_Fidget" }, + { 491211431, "Play_Vampire_CharacterSelect_Idle_Abilities" }, + { 523634569, "Play_Gumshoe_CharacterSelect_Arrive" }, + { 641708471, "Play_Hunter_CharacterSelect_Arrive_01" }, + { 679600709, "Play_Breach_CharacterSelect_Arrive" }, + { 849624945, "Play_Sarge_CharacterSelect_Idle_01" }, + { 852951369, "Play_Clay_CharacterSelect_Idle_01" }, + { 893700681, "Play_Thorne_CharacterSelect_Arrive" }, + { 902446960, "Play_Sarge_CharaterSelect_Arrive_01" }, + { 975327491, "Play_Clay_CharacterSelect_Arrive_Explosion1" }, + { 584961524, "Play_Exp_Debris" }, + //{ 583926868, "Play_FS_CombatBootFemale_Jump" }, + //{ 583926868, "Play_FS_CombatBootMale_Jump" }, + //{ 583926868, "Play_FS_DressShoe_Jump" }, + //{ 583926868, "Play_FS_HardSoleBoot_Jump" }, + //{ 583926868, "Play_FS_HeavyBootMale_Jump" }, + //{ 583926868, "Play_FS_QuietSneaker_Jump" }, + //{ 583926868, "Play_FS_SoftSoleBoot_Jump" }, + { 143455841, "Play_Wp_GunDrop_HMG_Lnd" }, + { 623430681, "Play_Wp_GunDrop_HMG_Bnc" }, + { 440349472, "Play_Wp_GunDrop_Pistol_Bnc" }, + { 931203618, "Play_Wp_GunDrop_Pistol_Lnd" }, + { 112037919, "Play_Wp_GunDrop_Rifle_Lnd" }, + { 151979683, "Play_Wp_GunDrop_Rifle_Bnc" }, + { 329017739, "Play_Wp_GunDrop_SMG_Lnd" }, + { 678134318, "Play_Wp_GunDrop_SMG_Bnc" }, + { 551022060, "Play_GunDrop_Bounce_Generic_Temp" }, + { 693663570, "Play_GunDrop_Generic_Temp" }, + { 715319073, "Play_GunDrop_Throw_Generic_Temp" }, + { 775435039, "Play_GunPickup_Generic_Temp" }, + { 109816390, "Play_FS_Shatter_Jump" }, + { 119316015, "Play_Abil_Joules_Q_Sonar_Detected" }, + { 119741053, "Play_Crusader_Shield_Start" }, + { 134120335, "Play_Crusader_Rez" }, + { 164690686, "Play_Crusader_Shield_Break" }, + { 169419921, "Play_FS_Shatter_Land_Normal" }, + { 214966180, "Play_Wp_Grenade_Shock_Explo" }, + { 424650757, "Play_Wp_Flashbang_Crystal_Blinded_Positional" }, + { 460250694, "Play_Abil_Decoy_Shatter_TimeOut" }, + { 530157466, "Play_Crusader_Charge_Blind_Warn" }, + { 554490726, "Play_Crusader_Charge_Impact" }, + { 583926868, "Play_FS_Shatter_Run" }, + { 591783989, "Play_Abil_Shatter_s0_Decoy_Explode_Start" }, + { 594339259, "Play_Crusader_Grenade_Windup" }, + { 621805271, "Play_Crusader_Charge_Slash_Impact" }, + { 717273212, "Play_Abil_Decoy_Shatter_Deploy" }, + { 860882192, "Play_Crusader_Charge_Startup" }, + { 920045214, "Play_FS_Shatter_Land_Normal" }, + { 1002598022, "Play_FS_Shatter_Land_Normal" }, + { 52911557, "Play_VALskinpreview_PrimeGuardian02" }, + { 133255939, "Play_Dragon_Judge_LV1_AUDIO_V01" }, + { 176169953, "Play_Dragon_Judge_LV2_AUDIO_V01" }, + { 177320170, "Play_VALskinpreview_PrimeGuardian04" }, + { 215020609, "Play_VALskinpreview_SovereignGuardian01" }, + { 290058408, "Play_VALskinpreview_PrimeSpectre02" }, + { 308194486, "Play_VALskinpreview_SovereignGhost03_rev2" }, + { 309448227, "Play_Dragon_Knife_Lv2_AUDIO_V01" }, + { 320249563, "Play_VALskinpreview_SovereignGuardian02" }, + { 342606429, "Play_VALskinpreview_PrimeClassic02" }, + { 368593311, "Play_VALskinpreview_SovereignMelee02" }, + { 381196381, "Play_VALskinpreview_PrimeGuardian03" }, + { 393997754, "Play_VALskinpreview_SovereignStinger01" }, + { 421052864, "Play_Dragon_Knife_Lv1_AUDIO_V01" }, + { 426524079, "Play_Dragon_Frenzy_Lv3_AUDIO_V01" }, + { 445208315, "Play_VALskinpreview_SovereignStinger03_rev2" }, + { 452455240, "Play_VALskinpreview_PrimeVandal02" }, + { 473230862, "Play_Dragon_Judge_LV3_AUDIO_V01" }, + { 491059289, "Play_Dragon_Frenzy_Lv1_AUDIO_V01" }, + { 502425231, "Play_VALskinpreview_PrimeSpectre04" }, + { 519715812, "Play_Dragon_Judge_LV4_AUDIO_V01" }, + { 553072718, "Play_VALskinpreview_PrimeVandal03" }, + { 635073236, "Play_Dragon_VANDAL_LV1_AUDIO_V01" }, + { 645159186, "Play_VALskinpreview_PrimeClassic04" }, + { 659744095, "Play_Dragon_VANDAL_LV3_AUDIO_V01" }, + { 673689292, "Play_VALskinpreview_PrimeClassic03" }, + { 736808770, "Play_VALskinpreview_PrimeMelee02" }, + { 778230569, "Play_VALskinpreview_SovereignGhost01" }, + { 822293512, "Play_VALskinpreview_SovereignMelee01" }, + { 828076861, "Play_VALskinpreview_SovereignGhost04_rev2" }, + { 835207393, "Play_Dragon_Frenzy_Lv2_AUDIO_V01" }, + { 870910286, "Play_Dragon_VANDAL_LV2_AUDIO_V01" }, + { 873644110, "Play_VALskinpreview_PrimeVandal02" }, + { 1057876830, "Play_VALskinpreview_SovereignGuardian03_rev2" }, + { 1058451914, "Play_VALskinpreview_SovereignGhost02" }, + { 1069129536, "Play_Dragon_Frenzy_Lv4_AUDIO_V01" }, + { 25237355, "Play_sfx_UI_RoundWon" }, + { 62378620, "Play_UI_AnnouncementDisappear" }, + { 183547783, "Play_sfx_UI_ObjectivePickedUp" }, + { 207123841, "Play_sfx_UI_planterkilledbanner" }, + { 257594382, "Play_Ping_Beep" }, + { 346164533, "Play_UI_Shop_Open" }, + { 352731057, "Play_UI_Error_Beep_Generic" }, + { 492582446, "Play_sfx_UI_MatchDefeat" }, + { 507143434, "Play_sfx_UI_DefendersObjectiveInitiated" }, + { 535784847, "Play_UI_Stinger_KillConfirm" }, + { 540464887, "Play_UI_RoundNumber" }, + { 574056354, "Play_sfx_UI_MatchVictory" }, + { 694452281, "Play_UI_Shop_Close" }, + { 799405049, "Play_sfx_UI_RoundLost" }, + { 855187485, "Play_sfx_UI_ObjectiveDropped" }, + { 925199360, "Play_sfx_UI_AttackersObjectiveInitiated" }, + { 981687460, "Play_sfx_UI_MatchVictory" }, + { 999896814, "Play_sfx_UI_AnnouncementFinish" }, + { 1039191558, "Play_UI_Ping_Intention" }, + { 29559311, "Play_Bomb_Foley_Start_Movement" }, + { 61635483, "Play_Bomb_Plant_Outro_04" }, + { 92460827, "Play_Bomb_Beep" }, + { 99568597, "Play_Bomb_Open_Part_01" }, + { 153664614, "Play_Bomb_Plant_Outro_05" }, + { 162618248, "Play_Bomb_Plant_Outro_01" }, + { 199054218, "Play_Bomb_Open_Mechanical_Part_1" }, + { 247120219, "Play_Bomb_Explo" }, + { 254585614, "Play_Bomb_Plant_Outro_03" }, + { 341709229, "Play_Bomb_Drop_Land" }, + { 388239633, "Play_Rad_Bomb_Kill_1P" }, + { 437828768, "Play_Bomb_Beep_Long" }, + { 493866865, "Play_Bomb_Drop_Land" }, + { 558889963, "Play_Spike_Defuse_Start" }, + { 576883029, "Play_Objective_Pickup" }, + { 628863363, "Play_Spike_Plant_Start" }, + { 653615419, "Play_Bomb_Open_Part_02" }, + { 752569044, "Play_Bomb_Drop_Bounce" }, + { 756196685, "Play_Rad_Bomb_Kill_1P" }, + { 756297722, "Play_Bomb_Foley_Plant_Grabs_With_Lift_Post_Open" }, + { 785060064, "Play_Bomb_Plant_Big_Hit" }, + { 798441295, "Play_Ares_Mode_Bomb_BarrierCountdown" }, + { 846346525, "Play_Rad_Bomb_Ring" }, + { 871697084, "Play_Bomb_Plant_Outro_01" }, + { 957790318, "Play_Bomb_Open_Part_04" }, + { 966068874, "Play_Bomb_Foley_Plant_Slam" }, + { 998447475, "Play_Bomb_Plant_Intro_01" }, + { 1069876360, "Play_Bomb_Drop_Bounce" }, + { 467578783, "Play_Wp_Melee_Oni_Equip_1P_Lvl2" }, + { 424872654, "Play_Wp_Finisher_Oni" }, + { 1013606431, "Play_Wp_Carbine_Oni_Silenced_Fire" }, + { 392577348, "Play_Wp_Shotgun_Pump_MagePunk_Fire_Alt_RemoteBlast" }, + { 10719599, "Play_Wp_Carbine_Oni_Inspect_Element_C_FP" }, + { 95077989, "Play_Wp_Carbine_Oni_Equip_Element_A_FP" }, + { 97355598, "Play_Wp_Carbine_Oni_Inspect_Element_B_FP" }, + { 150907956, "Play_Wp_Carbine_Oni_Inspect_Mvt_A_FP" }, + { 255778446, "Play_Wp_Carbine_Oni_Inspect_Element_A_FP" }, + { 268584898, "Play_Wp_Carbine_Oni_Reload_Element_B_FP" }, + { 273001458, "Play_Wp_Carbine_Oni_Equip_Element_A_FP" }, + { 309087885, "Play_Wp_Carbine_Oni_Mag_Out_FP" }, + { 312762255, "Play_Wp_Carbine_Oni_Inspect_Element_B_FP" }, + { 329146364, "Play_Wp_Carbine_Oni_Inspect_Element_B_FP" }, + { 333887615, "Play_Wp_Carbine_Oni_Inspect_Element_C_FP" }, + { 348821097, "Play_Wp_Carbine_Oni_Equip_Mvt_Grab_FP" }, + { 365048659, "Play_Wp_Carbine_Oni_Reload_Element_D_FP" }, + { 387174817, "Play_Wp_Carbine_Oni_Reload_Element_B_FP" }, + { 397383781, "Play_Wp_Carbine_Oni_Reload_Mvt_B_FP" }, + { 437043323, "Play_Wp_Carbine_Oni_Equip_Element_A_FP" }, + { 460557635, "Play_Wp_Carbine_Oni_Inspect_Element_C_FP" }, + { 484183554, "Play_Wp_Carbine_Oni_Reload_Mvt_Grab_FP" }, + { 518773888, "Play_Wp_Carbine_Oni_Reload_Chg_Hnd_Back_FP" }, + { 523856920, "Play_Wp_Carbine_Oni_Reload_Mvt_A_FP" }, + { 528537112, "Play_Wp_Carbine_Oni_Inspect_Mvt_Grab_FP" }, + { 575869628, "Play_Wp_Carbine_Oni_Equip_Mvt_A_FP" }, + { 643849265, "Play_Wp_Carbine_Oni_Inspect_Element_A_FP" }, + { 685675369, "Play_Wp_Carbine_Oni_Reload_Element_C_FP" }, + { 812971282, "Play_Wp_Carbine_Oni_Reload_Element_C_FP" }, + { 844910882, "Play_Wp_Carbine_Oni_Reload_Chg_Hnd_Fwd_FP" }, + { 871137564, "Play_Wp_Carbine_Oni_Reload_Element_C_FP" }, + { 895009894, "Play_Wp_Carbine_Oni_Mag_In_FP" }, + { 936326076, "Play_Wp_Carbine_Oni_Inspect_Element_A_FP" }, + { 979491769, "Play_Wp_Carbine_Oni_Inspect_Mvt_C_FP" }, + { 1010089630, "Play_Wp_Carbine_Oni_Reload_Element_B_FP" }, + { 1061292768, "Play_Wp_Carbine_Oni_Inspect_Mvt_B_FP" }, + { 76653560, "Play_Wp_Oni_DMR_Equip_Mvt_Element_A" }, + { 246952494, "Play_Wp_Oni_DMR_Equip_Mvt_Element_B" }, + { 328586668, "Play_Wp_Oni_DMR_Reload_Mvt_Element_A" }, + { 616322611, "Play_Wp_Oni_DMR_Equip_Mvt_Element_C" }, + { 695739042, "Play_Wp_Oni_DMR_Inspect_Mvt_Element_C" }, + { 729048643, "Play_Wp_Oni_DMR_Reload_Mvt_Element_B" }, + { 787432024, "Play_Wp_Oni_DMR_Reload_Mvt_Element_E" }, + { 819357532, "Play_Wp_Oni_DMR_Inspect_Mvt_Element_A" }, + { 1066309683, "Play_Wp_Oni_DMR_Inspect_Mvt_Element_B" }, + { 80372429, "Play_Wp_Oni_Pump_Reload_Mvt_Element_B" }, + { 405274204, "Play_Wp_Oni_Pump_Inspect_Mvt_Element_A" }, + { 479658674, "Play_Wp_Oni_Pump_Equip_Mvt_Element_A" }, + { 527246789, "Play_Wp_Oni_Pump_Inspect_Mvt_Element_C" }, + { 627881474, "Play_Wp_Oni_Pump_Reload_Mvt_Element_C" }, + { 895756588, "Play_Wp_Oni_Pump_Equip_Mvt_Element_B" }, + { 938809816, "Play_Wp_Oni_Pump_Inspect_Mvt_Element_B" }, + { 16907461, "Play_Wp_Oni_SawedOff_Reload_Mvt_Element_C" }, + { 361321823, "Play_Wp_Oni_SawedOff_Reload_Mvt_Element_A" }, + { 364969835, "Play_Wp_Oni_SawedOff_Equip_Mvt_Element_A" }, + { 474046400, "Play_Wp_Oni_SawedOff_Reload_Mvt_Element_B" }, + { 576794135, "Play_Wp_Oni_SawedOff_Inspect_Mvt_Element_A" }, + { 600379645, "Play_Wp_Oni_SawedOff_Inspect_Mvt_Element_B" }, + { 119899004, "Play_UI_KillBanner_Oni_4" }, + { 585551763, "Play_UI_KillBanner_Oni_3" }, + { 906892702, "Play_UI_KillBanner_Oni_1" }, + { 907593259, "Play_UI_KillBanner_Oni_5" }, + }; + } +} diff --git a/FModel/Windows/Settings/ChallengeBundlesCreator.xaml.cs b/FModel/Windows/Settings/ChallengeBundlesCreator.xaml.cs index 111100e9..7af46ac2 100644 --- a/FModel/Windows/Settings/ChallengeBundlesCreator.xaml.cs +++ b/FModel/Windows/Settings/ChallengeBundlesCreator.xaml.cs @@ -1,5 +1,5 @@ using FModel.Creator.Bundles; -using FModel.Creator.Fortnite; +using FModel.Creator.Bases; using FModel.Logger; using FModel.Windows.ColorPicker; using Microsoft.Win32;