using System; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.Versioning; using System.Security; using System.Security.Permissions; using System.Text.RegularExpressions; using BepInEx; using BepInEx.Bootstrap; using BepInEx.Configuration; using BepInEx.Logging; using DefenseMatrixManager; using EntityStates; using EntityStates.Captain.Weapon; using EntityStates.CaptainDefenseMatrixItem; using EntityStates.CaptainSupplyDrop; using EntityStates.Chef; using EntityStates.Commando; using EntityStates.Croco; using EntityStates.Drone.Command; using EntityStates.Drone.DroneWeapon; using EntityStates.Engi.Mine; using EntityStates.FalseSon; using EntityStates.Headstompers; using EntityStates.Heretic; using EntityStates.LaserTurbine; using EntityStates.LemurianMonster; using EntityStates.Loader; using EntityStates.Mage; using EntityStates.Seeker; using EntityStates.TeleporterHealNovaController; using EntityStates.Toolbot; using EntityStates.VagrantNovaItem; using EntityStates.VoidSurvivor; using Grumpy; using HG; using HG.GeneralSerializer; using HG.Reflection; using HarmonyLib; using HereticMod; using HuntressAutoaimFix; using IL.EntityStates; using IL.EntityStates.Bandit2.Weapon; using IL.EntityStates.Captain.Weapon; using IL.EntityStates.Chef; using IL.EntityStates.Commando; using IL.EntityStates.Croco; using IL.EntityStates.Drone.Command; using IL.EntityStates.Drone.DroneWeapon; using IL.EntityStates.Engi.Mine; using IL.EntityStates.FalseSon; using IL.EntityStates.Geode; using IL.EntityStates.Headstompers; using IL.EntityStates.Heretic; using IL.EntityStates.LaserTurbine; using IL.EntityStates.LemurianBruiserMonster; using IL.EntityStates.Loader; using IL.EntityStates.Mage; using IL.EntityStates.Merc; using IL.EntityStates.Seeker; using IL.EntityStates.TeleporterHealNovaController; using IL.EntityStates.Toolbot; using IL.EntityStates.Treebot.Weapon; using IL.EntityStates.VagrantNovaItem; using IL.EntityStates.VoidSurvivor; using IL.EntityStates.VoidSurvivor.Weapon; using IL.RoR2; using IL.RoR2.Items; using IL.RoR2.Projectile; using IL.RoR2.Skills; using IL.RoR2.UI; using KinematicCharacterController; using Microsoft.CodeAnalysis; using Mono.Cecil; using Mono.Cecil.Cil; using MonoMod.Cil; using MonoMod.RuntimeDetour; using NetworkedPrayerBeads; using On; using On.EntityStates; using On.EntityStates.Captain.Weapon; using On.EntityStates.CaptainDefenseMatrixItem; using On.EntityStates.CaptainSupplyDrop; using On.EntityStates.Chef; using On.EntityStates.Commando; using On.EntityStates.Croco; using On.EntityStates.FalseSon; using On.EntityStates.Headstompers; using On.EntityStates.LemurianMonster; using On.EntityStates.Mage; using On.EntityStates.Seeker; using On.EntityStates.TeleporterHealNovaController; using On.EntityStates.Toolbot; using On.EntityStates.VagrantNovaItem; using On.RoR2; using On.RoR2.Items; using On.RoR2.Orbs; using On.RoR2.Projectile; using On.RoR2.Skills; using R2API; using R2API.Utils; using RainstormRefinery.Difficulty; using RainstormRefinery.Drones; using RainstormRefinery.Generic; using RainstormRefinery.Items; using RainstormRefinery.Items.BossTier; using RainstormRefinery.Items.CommonTier; using RainstormRefinery.Items.EquipmentTier; using RainstormRefinery.Items.LegendaryTier; using RainstormRefinery.Items.LunarTier; using RainstormRefinery.Items.UncommonTier; using RainstormRefinery.Items.VoidTier; using RainstormRefinery.Survivors; using RainstormRefinery.Survivors.Acrid; using RainstormRefinery.Survivors.Artificer; using RainstormRefinery.Survivors.Bandit; using RainstormRefinery.Survivors.Captain; using RainstormRefinery.Survivors.Chef; using RainstormRefinery.Survivors.Commando; using RainstormRefinery.Survivors.Engineer; using RainstormRefinery.Survivors.FalseSon; using RainstormRefinery.Survivors.Heretic; using RainstormRefinery.Survivors.Huntress; using RainstormRefinery.Survivors.Loader; using RainstormRefinery.Survivors.Mercenary; using RainstormRefinery.Survivors.MulT; using RainstormRefinery.Survivors.Railgunner; using RainstormRefinery.Survivors.Rex; using RainstormRefinery.Survivors.Seeker; using RainstormRefinery.Survivors.VoidFiend; using RainstormRefinery.Utils; using RainstormRefinery.Utils.AssetLibrary; using RoR2; using RoR2.CharacterAI; using RoR2.Items; using RoR2.Orbs; using RoR2.Projectile; using RoR2.Skills; using RoR2.UI; using TMPro; using UnityEngine; using UnityEngine.AddressableAssets; using UnityEngine.AddressableAssets.ResourceLocators; using UnityEngine.Events; using UnityEngine.Networking; using UnityEngine.Rendering.PostProcessing; using UnityEngine.UI; [assembly: CompilationRelaxations(8)] [assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)] [assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)] [assembly: OptIn] [assembly: TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] [assembly: AssemblyCompany("RainstormRefinery")] [assembly: AssemblyConfiguration("Debug")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyInformationalVersion("1.0.0+3f01dfe9c172bc414bf4741ca6be6e12f2ff58cc")] [assembly: AssemblyProduct("RainstormRefinery")] [assembly: AssemblyTitle("RainstormRefinery")] [assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)] [assembly: AssemblyVersion("1.0.0.0")] [module: UnverifiableCode] [module: RefSafetyRules(11)] namespace Microsoft.CodeAnalysis { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] internal sealed class EmbeddedAttribute : Attribute { } } namespace System.Runtime.CompilerServices { [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)] internal sealed class NullableAttribute : Attribute { public readonly byte[] NullableFlags; public NullableAttribute(byte P_0) { NullableFlags = new byte[1] { P_0 }; } public NullableAttribute(byte[] P_0) { NullableFlags = P_0; } } [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)] internal sealed class NullableContextAttribute : Attribute { public readonly byte Flag; public NullableContextAttribute(byte P_0) { Flag = P_0; } } [CompilerGenerated] [Microsoft.CodeAnalysis.Embedded] [AttributeUsage(AttributeTargets.Module, AllowMultiple = false, Inherited = false)] internal sealed class RefSafetyRulesAttribute : Attribute { public readonly int Version; public RefSafetyRulesAttribute(int P_0) { Version = P_0; } } } namespace RainstormRefinery { public static class ConfigSetup { public static ConfigFile SurvivorCfg; public static ConfigFile ItemCfg; public static ConfigFile DifficultyCfg; private const string commandoString = "Survivors - Commando"; private const string huntressString = "Survivors - Huntress"; private const string banditString = "Survivors - Bandit"; private const string toolbotString = "Survivors - MUL-T"; private const string engiString = "Survivors - Engineer"; private const string mageString = "Survivors - Artificer"; private const string mercString = "Survivors - Mercenary"; private const string treebotString = "Survivors - REX"; private const string loaderString = "Survivors - Loader"; private const string crocoString = "Survivors - Acrid"; private const string captainString = "Survivors - Captain"; private const string railgunnerString = "Survivors - Railgunner"; private const string viendString = "Survivors - Void Fiend"; private const string seekerString = "Survivors - Seeker"; private const string chefString = "Survivors - Chef"; private const string falseSonString = "Survivors - False Son"; private const string commonString = "Items - Common"; private const string uncommonString = "Items - Uncommon"; private const string legendaryString = "Items - Legendary"; private const string voidString = "Items - Void"; private const string bossString = "Items - Boss"; private const string lunarString = "Items - Lunar"; private const string equipmentString = "Items - Equipment"; private const string difficultyString = "Base Difficulty"; public static string ConfigFolderPath => Path.Combine(Paths.ConfigPath, RainstormRefinery.pluginInfo.Metadata.GUID); public static void Init() { SetupConfigSurvivors(); SetupConfigItems(); SetupConfigDifficulty(); } private static void SetupConfigSurvivors() { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Expected O, but got Unknown SurvivorCfg = new ConfigFile(Path.Combine(ConfigFolderPath, "RainstormRefinery_Survivors.cfg"), true); SurvivorsRefined.enabled = SurvivorCfg.Bind("Surviors", "Enable survivor changes", true, "Set to false to prevent all survivor-related changes from being applied.").Value; ConfigCommando(); ConfigHuntress(); ConfigBandit(); ConfigMULT(); ConfigEngi(); ConfigArtificer(); ConfigMercenary(); ConfigRex(); ConfigLoader(); ConfigAcrid(); ConfigCaptain(); ConfigRailgunner(); ConfigViend(); ConfigSeeker(); ConfigChef(); ConfigFalseSon(); } private static void ConfigCommando() { MagneticGrenade.enabled = SurvivorCfg.Bind("Survivors - Commando", "Frag Grenade -> Magnetic Grenade", true, "Sticks to enemies.").Value; } private static void ConfigHuntress() { } private static void ConfigBandit() { BanditRefined.enabledSecondaries = SurvivorCfg.Bind("Survivors - Bandit", "Serrated Dagger/Shiv", true, "Various tweaks including having multiple variants of hemorrhage.").Value; } private static void ConfigMULT() { PowersawRework.enabled = SurvivorCfg.Bind("Survivors - MUL-T", "Power Saw", true, "Power Saw fires a piercing sawblade projectile when releasing the attack or interrupted by a skill.").Value; PowerMode.enabled = SurvivorCfg.Bind("Survivors - MUL-T", "Power Mode", true, "Power Mode has a limited duration and increased cooldown.").Value; } private static void ConfigEngi() { BubbleShield.enabled = SurvivorCfg.Bind("Survivors - Engineer", "Bubble Shield", true, "Bubble Shield received several adjustments to make it more flexible.").Value; } private static void ConfigArtificer() { IonSurge.changeToUtility = SurvivorCfg.Bind("Survivors - Artificer", "Ion Surge - Utility", true, "Ion Surge moved to a utility skill.").Value; IonSurge.enabled = SurvivorCfg.Bind("Survivors - Artificer", "Ion Surge - Hit and Run", true, "Ion Surge made to fit a hit and run playstyle, has a short cooldown but only recharges on the ground.").Value; } private static void ConfigMercenary() { } private static void ConfigRex() { RexRefined.enableHealthCosts = SurvivorCfg.Bind("Survivors - REX", "Plant Skills", true, "Skills with a health cost have slightly reduced costs, but ignore armor and block chance. However, they also are unaffected by E8 permanent damage.").Value; } private static void ConfigLoader() { GrappleFist.enabled = SurvivorCfg.Bind("Survivors - Loader", "Spiked Fist", true, "Physics of the alt grapple are reworked.").Value; } private static void ConfigAcrid() { } private static void ConfigCaptain() { DiabloStrike.enabled = SurvivorCfg.Bind("Survivors - Captain", "Diablo Strike", true, "Diablo strike deals less damage but has a shorter cooldown and falls much faster.").Value; RechargingBeacons.enabled = SurvivorCfg.Bind("Survivors - Captain", "Supply Drops", true, "Supply drops are no longer single-use, instead recharging over 3 minutes.").Value; } private static void ConfigRailgunner() { } private static void ConfigViend() { CorruptionRework.enabled = SurvivorCfg.Bind("Survivors - Void Fiend", "Corruption rework", true, "Corruption is no longer affected by damage, healing, or crits, and has modified interactions with void items.").Value; Suppress.enableCooldown = SurvivorCfg.Bind("Survivors - Void Fiend", "Suppress Cooldown", true, "Both forms of Suppress now have a cooldown, but Corrupted Suppress no longer has limited uses.").Value; } private static void ConfigSeeker() { SeekerRevive.enabled = SurvivorCfg.Bind("Survivors - Seeker", "Saving Grace", true, "Major nerfs to Seeker's revive to make it more limited in use.").Value; } private static void ConfigChef() { RollingPin.enabled = SurvivorCfg.Bind("Survivors - Chef", "Rolling Pin", true, "Major changes to rolling pin and entirely reworked boosted version to be synergistic with the rest of CHEF's kit.").Value; } private static void ConfigFalseSon() { } private static void SetupConfigItems() { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Expected O, but got Unknown ItemCfg = new ConfigFile(Path.Combine(ConfigFolderPath, "RainstormRefinery_Items.cfg"), true); ItemsRefined.enabled = ItemCfg.Bind("Items", "Enable item changes", true, "Set to false to prevent all item-related changes from being applied. I recommend doing so if you have other item-focused mods such as Quality.").Value; ConfigCommonItems(); ConfigUncommonItems(); ConfigLegendaryItems(); ConfigBossItems(); ConfigVoidItems(); ConfigLunarItems(); ConfigEquipment(); } private static void ConfigCommonItems() { Fireworks.enabled = ItemCfg.Bind("Items - Common", "Fireworks", true, "Fireworks ignite enemies.").Value; RollOfPennies.enabled = ItemCfg.Bind("Items - Common", "Roll of Pennies", true, "Reworked gold calculations and now grants armor based on recently collected gold.").Value; StunGrenade.enabled = ItemCfg.Bind("Items - Common", "Stun Grenade", true, "Deals damage on proc.").Value; WarBanner.enabled = ItemCfg.Bind("Items - Common", "Warbanner", true, "Completely reworked to trigger upon entering combat.").Value; } private static void ConfigUncommonItems() { Bandolier.enabled = ItemCfg.Bind("Items - Uncommon", "Bandolier", true, "Can overstock skills.").Value; BreachingFin.enabled = ItemCfg.Bind("Items - Uncommon", "Breaching Fin", true, "Reworked to be a chance on hit.").Value; ConsumableInfusion.enabled = ItemCfg.Bind("Items - Uncommon", "Infusion", true, "Item is consumed when maxed out to grant bonus regen.").Value; DeathMark.enabled = ItemCfg.Bind("Items - Uncommon", "Death Mark", true, "Debuff strength reduced but grants a passive damage increase per afflicted debuff.").Value; HarvestersScythe.enabled = ItemCfg.Bind("Items - Uncommon", "Harvesters Scythe", true, "Heals a percentage of damage dealt.").Value; HuntersHarpoon.enabled = ItemCfg.Bind("Items - Uncommon", "Hunters Harpoon", true, "Duration can be extended like in Returns.").Value; IgnitionTank.enabled = ItemCfg.Bind("Items - Uncommon", "Ignition Tank", true, "Now has innate value by applying burn to enemies that you bring below 25% health.").Value; LeechingSeed.enabled = ItemCfg.Bind("Items - Uncommon", "Leeching Seed", true, "Doubled healing and partially unaffected by proc coefficient.").Value; Stealthkit.enabled = ItemCfg.Bind("Items - Uncommon", "Old War Stealthkit", true, "Reworked to have a chance to trigger when hurt.").Value; UnstableTransmitter.enabled = ItemCfg.Bind("Items - Uncommon", "Unstable Transmitter", true, "Returned to being a cooldown.").Value; WillOWisp.noProc = ItemCfg.Bind("Items - Uncommon", "Will-o-the-Wisp - no proc", true, "No longer has a proc coefficient, reducing autoplay from on-kill effects. This also applies to Voidsent Flame.").Value; } private static void ConfigLegendaryItems() { DiosBestFriend.enabled = ItemCfg.Bind("Items - Legendary", "Dios Best Friend", true, "Drops 3 common items upon reviving a player.").Value; FrostRelic.enabled = ItemCfg.Bind("Items - Legendary", "Frost Relic", true, "Reduced damage but inflicts the Frost debuff.").Value; FrostRelic.disableCamera = ItemCfg.Bind("Items - Legendary", "Frost Relic - Disable Camera Change", true, "Disable the zoomout that occurs while Frost Relic is active.").Value; LaserScope.enabled = ItemCfg.Bind("Items - Legendary", "Laser Scope", true, "Reworked to trigger additional hits on critical strikes.").Value; PocketICBM.enabled = ItemCfg.Bind("Items - Legendary", "Pocket ICBM", true, "Reworked stacking behavior, now fires missiles while in combat.").Value; SoulboundCatalyst.enabled = ItemCfg.Bind("Items - Legendary", "Soulbound Catalyst", true, "Complete rework into a damage item while maintaining its on-kill and equipment synergies.").Value; SpareDroneParts.doBlacklist = ItemCfg.Bind("Items - Legendary", "Spare Drone Parts", true, "Only affects actual drones and solus allies from items (also applies to Box of Dynamite).").Value; HappiestMaskYellow.changeToYellow = ItemCfg.Bind("Items - Legendary", "Happiest Mask", true, "Make this a yellow item that drops from Hordes of Many.").Value; } private static void ConfigBossItems() { QueensGland.enabled = ItemCfg.Bind("Items - Boss", "Queens Gland", true, "Spawns up to 2 more offensively-oriented Beetle Guards with a functioning respawn timer.").Value; Shatterspleen.enabled = ItemCfg.Bind("Items - Boss", "Shatterspleen", true, "Grants flat bleed chance instead of being an on-crit item.").Value; TitanicKnurl.enabled = ItemCfg.Bind("Items - Boss", "Titanic Knurl", true, "Grants additional unconditional armor.").Value; } private static void ConfigVoidItems() { BenthicBloom.enabled = ItemCfg.Bind("Items - Void", "Benthic Bloom", true, "Converts individual items at consistent rates.").Value; VoidGlasses.enabled = ItemCfg.Bind("Items - Void", "Lost Seers Lenses", true, "Deals damage on proc with reworked execute mechanics.").Value; } private static void ConfigLunarItems() { NeutroniumWeight.enabled = ItemCfg.Bind("Items - Lunar", "Neutronium Weight", true, "Rework that makes it permanent and simply transfers a debuff around.").Value; } private static void ConfigEquipment() { ExecutiveCard.enabled = ItemCfg.Bind("Items - Equipment", "Executive Card", true, "Reworked into an active equipment, has a cooldown but grants more money back.").Value; } private static void SetupConfigDifficulty() { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_001b: Expected O, but got Unknown DifficultyCfg = new ConfigFile(Path.Combine(ConfigFolderPath, "RainstormRefinery_Difficulty.cfg"), true); GoldScaling.enabled = DifficultyCfg.Bind("Base Difficulty", "Reduced Gold Scaling", true, "Gold drops from enemies slightly increased at base, but drastically fall off as the run goes on to make up for the fact that more enemies are spawning.").Value; EclipseChanges.enabled = DifficultyCfg.Bind("Base Difficulty", "Modify Eclipse Levels", true, "Change eclipse level 1 to be more engaging. If using some other eclipse balancing mod, probably turn this off.").Value; } } internal static class Log { private static ManualLogSource _logSource; internal static void Init(ManualLogSource logSource) { _logSource = logSource; } internal static void Debug(object data) { _logSource.LogDebug(data); } internal static void Error(object data) { _logSource.LogError(data); } internal static void Fatal(object data) { _logSource.LogFatal(data); } internal static void Info(object data) { _logSource.LogInfo(data); } internal static void Message(object data) { _logSource.LogMessage(data); } internal static void Warning(object data) { _logSource.LogWarning(data); } } internal class ModAssets { public static AssetBundle mainBundle; public const string bundleName = "RainstormRefinery.refineryAssetBundle"; public static void Init() { using Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("RainstormRefinery.refineryAssetBundle"); mainBundle = AssetBundle.LoadFromStream(stream); } } [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInDependency(/*Could not decode attribute arguments.*/)] [BepInPlugin("OblivionAXiS.RainstormRefinery", "RainstormRefinery", "1.3.1")] [NetworkCompatibility(/*Could not decode attribute arguments.*/)] public class RainstormRefinery : BaseUnityPlugin { public const string PluginGUID = "OblivionAXiS.RainstormRefinery"; public const string PluginAuthor = "OblivionAXiS"; public const string PluginName = "RainstormRefinery"; public const string PluginVersion = "1.3.1"; public static PluginInfo pluginInfo; public static bool PrayerBeadsLoaded = false; public static bool HIFUAutoaimLoaded = false; public static bool WolfoTweaksLoaded = false; public static bool WolfoClientQOLLoaded = false; public static bool RedAlertLoaded = false; public static bool HereticReworkLoaded = false; public static bool inBazaar = false; private static readonly SceneDef bazaarScene = SceneDef.bazaar.Load(); private static readonly SceneDef goldCoastScene = SceneDef.goldshores.Load(); public static bool inGildedCoast = false; public void Awake() { Log.Init(((BaseUnityPlugin)this).Logger); ModAssets.Init(); pluginInfo = ((BaseUnityPlugin)this).Info; ConfigSetup.Init(); PrayerBeadsLoaded = Chainloader.PluginInfos.ContainsKey("com.Moffein.NetworkedPrayerBeads"); HIFUAutoaimLoaded = Chainloader.PluginInfos.ContainsKey("HIFU.HuntressAutoaimFix"); WolfoTweaksLoaded = Chainloader.PluginInfos.ContainsKey("com.Wolfo.WolfFixes"); WolfoClientQOLLoaded = Chainloader.PluginInfos.ContainsKey("Wolfo.WolfoQoL_Client"); RedAlertLoaded = Chainloader.PluginInfos.ContainsKey("com.TheTimesweeper.RedAlert"); HereticReworkLoaded = Chainloader.PluginInfos.ContainsKey("com.Moffein.Heretic"); new SurvivorsRefined(); new ItemsRefined(); new DifficultyController(); new GenericChanges(); new AllySkillDamage(); SharedHooks.Setup(); Stage.onStageStartGlobal += Stage_onStageStartGlobal; } private void Stage_onStageStartGlobal(Stage obj) { inBazaar = false; inGildedCoast = false; if ((Object)(object)SceneCatalog.GetSceneDefForCurrentScene() == (Object)(object)bazaarScene) { inBazaar = true; } else if ((Object)(object)SceneCatalog.GetSceneDefForCurrentScene() == (Object)(object)goldCoastScene) { inGildedCoast = true; } } public void Start() { if (WolfoTweaksLoaded) { Debug.Log((object)"RainstormRefinery: WolfoFixes why do you have to be weird and load your changes in Start() rather than Awake(), it makes things super annoying to adjust."); EquipmentDef.MultiShopCard.Load().cooldown = ExecutiveCard.cardCooldown; } } } } namespace RainstormRefinery.Utils { public static class GetAssetPaths { public static T Load(this string path) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) return Addressables.LoadAssetAsync((object)path).WaitForCompletion(); } public static T LoadComponent(this string path) where T : Component { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) return ((Component)Addressables.LoadAssetAsync((object)path).WaitForCompletion()).GetComponent(); } } internal class AssetReferencer { public static void GenerateMap() { //IL_01db: Unknown result type (might be due to invalid IL or missing references) //IL_01e0: Unknown result type (might be due to invalid IL or missing references) string path = Assembly.GetExecutingAssembly().Location.Replace("RainstormRefinery.dll", "AssetLibrary.cs"); string text = ""; text += "namespace RainstormRefinery.Utils.AssetLibrary {\n"; List list = new List(); Dictionary dictionary = new Dictionary(); List list2 = new List(); foreach (IResourceLocator resourceLocator in Addressables.ResourceLocators) { foreach (object key in resourceLocator.Keys) { if (key.ToString().ToLower().Contains("bundle") || !key.ToString().Contains("/") || !key.ToString().StartsWith("RoR2")) { continue; } try { string text2 = key.ToString().Split('/')[key.ToString().Split('/').Length - 1]; string[] array = text2.Split('.'); int num = array.Length - 1; string text3 = ""; for (int i = 0; i < num; i++) { text3 += array[i]; } text3.Replace(".", ""); text3 = Regex.Replace(text3, "[^a-zA-Z0-9]", ""); text3 = text3.Replace(" ", ""); if (text3.Length > 3 && !char.IsDigit(text3[0])) { if (list.Contains(text3)) { text3 += Random.Range(0, 37); } list.Add(text3); Object val = Addressables.LoadAssetAsync((object)key.ToString()).WaitForCompletion(); string text4 = ((object)val).GetType().ToString(); text4 = text4.Split('.')[text4.Split('.').Length - 1]; dictionary.Add(" public static string " + text3 + " = \"" + key.ToString() + "\";\n", text4); } } catch { } } } List> list3 = new List>(); string currentType = ""; string text5 = ""; foreach (KeyValuePair item2 in dictionary) { list3.Add(item2); } do { if (currentType == "") { list2.Add(text5); currentType = list3[0].Value; text5 = ""; text5 = text5 + " public static class " + currentType + " {\n"; } try { KeyValuePair item = list3.First((KeyValuePair x) => x.Value == currentType); text5 += item.Key; list3.Remove(item); } catch { currentType = ""; text5 += "\n }\n"; } } while (list3.Count > 1); foreach (string item3 in list2) { text += item3; } File.WriteAllText(path, text); } } public class SharedHooks { public delegate void Handle_GetStatCoefficients(CharacterBody sender, StatHookEventArgs args, Inventory inventory); public delegate void Handle_GlobalKillEvent(DamageReport damageReport); public delegate void Handle_GlobalDamageEvent(DamageReport damageReport); public delegate void Handle_GlobalHitEvent(CharacterBody victim, CharacterBody attacker, DamageInfo damageInfo); public delegate void Handle_CharacterMaster_OnBodyDeath(CharacterMaster master, CharacterBody body); public delegate void Handle_GlobalInventoryChangedEvent(CharacterBody self); public delegate void Handle_PreTakeDamageProcessEvent(HealthComponent self, ref DamageInfo damageInfo); public delegate void Handle_PostTakeDamageProcessEvent(HealthComponent self, DamageInfo damageInfo, CharacterBody? attackerBody); public delegate void Handle_AddRefreshBuffStackBuffs(ILContext il); [CompilerGenerated] private static class <>O { public static StatHookEventHandler <0>__GetStatCoefficients; public static Action <1>__GlobalEventManager_onCharacterDeathGlobal; public static Action <2>__GlobalEventManager_DamageDealt; public static hook_OnHitEnemy <3>__GlobalEventManager_HitEnemy; public static Action <4>__GlobalEventManager_OnInventoryChanged; public static hook_OnBodyDeath <5>__CharacterMaster_OnBodyDeath; public static hook_TakeDamageProcess <6>__HealthComponent_PreTakeDamageProcess; public static hook_TakeDamageProcess <7>__HealthComponent_PostTakeDamageProcess; public static Manipulator <8>__CharacterBody_AddTimedBuff_BuffDef_float; } public static Handle_GetStatCoefficients Handle_GetStatCoefficients_Actions; public static Handle_GlobalKillEvent Handle_GlobalKillEvent_Actions; public static Handle_GlobalDamageEvent Handle_GlobalDamageEvent_Actions; public static Handle_GlobalHitEvent Handle_GlobalHitEvent_Actions; public static Handle_CharacterMaster_OnBodyDeath Handle_CharacterMaster_OnBodyDeath_Actions; public static Handle_GlobalInventoryChangedEvent Handle_GlobalInventoryChangedEvent_Actions; public static Handle_PreTakeDamageProcessEvent Handle_PreTakeDamageProcess_Actions; public static Handle_PostTakeDamageProcessEvent Handle_PostTakeDamageProcess_Actions; public static List List_AddRefreshBuffStackBuffs = new List(); public static void Setup() { //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) //IL_0029: Expected O, but got Unknown //IL_00ab: Unknown result type (might be due to invalid IL or missing references) //IL_00b0: Unknown result type (might be due to invalid IL or missing references) //IL_00b6: Expected O, but got Unknown //IL_010d: Unknown result type (might be due to invalid IL or missing references) //IL_0112: Unknown result type (might be due to invalid IL or missing references) //IL_0118: Expected O, but got Unknown //IL_013e: Unknown result type (might be due to invalid IL or missing references) //IL_0143: Unknown result type (might be due to invalid IL or missing references) //IL_0149: Expected O, but got Unknown //IL_016f: Unknown result type (might be due to invalid IL or missing references) //IL_0174: Unknown result type (might be due to invalid IL or missing references) //IL_017a: Expected O, but got Unknown //IL_01a5: Unknown result type (might be due to invalid IL or missing references) //IL_01aa: Unknown result type (might be due to invalid IL or missing references) //IL_01b0: Expected O, but got Unknown if (Handle_GetStatCoefficients_Actions != null) { object obj = <>O.<0>__GetStatCoefficients; if (obj == null) { StatHookEventHandler val = GetStatCoefficients; <>O.<0>__GetStatCoefficients = val; obj = (object)val; } RecalculateStatsAPI.GetStatCoefficients += (StatHookEventHandler)obj; } if (Handle_GlobalKillEvent_Actions != null) { GlobalEventManager.onCharacterDeathGlobal += GlobalEventManager_onCharacterDeathGlobal; } if (Handle_GlobalDamageEvent_Actions != null) { GlobalEventManager.onServerDamageDealt += GlobalEventManager_DamageDealt; } if (Handle_GlobalHitEvent_Actions != null) { object obj2 = <>O.<3>__GlobalEventManager_HitEnemy; if (obj2 == null) { hook_OnHitEnemy val2 = GlobalEventManager_HitEnemy; <>O.<3>__GlobalEventManager_HitEnemy = val2; obj2 = (object)val2; } GlobalEventManager.OnHitEnemy += (hook_OnHitEnemy)obj2; } if (Handle_GlobalInventoryChangedEvent_Actions != null) { CharacterBody.onBodyInventoryChangedGlobal += GlobalEventManager_OnInventoryChanged; } if (Handle_CharacterMaster_OnBodyDeath_Actions != null) { object obj3 = <>O.<5>__CharacterMaster_OnBodyDeath; if (obj3 == null) { hook_OnBodyDeath val3 = CharacterMaster_OnBodyDeath; <>O.<5>__CharacterMaster_OnBodyDeath = val3; obj3 = (object)val3; } CharacterMaster.OnBodyDeath += (hook_OnBodyDeath)obj3; } if (Handle_PreTakeDamageProcess_Actions != null) { object obj4 = <>O.<6>__HealthComponent_PreTakeDamageProcess; if (obj4 == null) { hook_TakeDamageProcess val4 = HealthComponent_PreTakeDamageProcess; <>O.<6>__HealthComponent_PreTakeDamageProcess = val4; obj4 = (object)val4; } HealthComponent.TakeDamageProcess += (hook_TakeDamageProcess)obj4; } if (Handle_PostTakeDamageProcess_Actions != null) { object obj5 = <>O.<7>__HealthComponent_PostTakeDamageProcess; if (obj5 == null) { hook_TakeDamageProcess val5 = HealthComponent_PostTakeDamageProcess; <>O.<7>__HealthComponent_PostTakeDamageProcess = val5; obj5 = (object)val5; } HealthComponent.TakeDamageProcess += (hook_TakeDamageProcess)obj5; } if (List_AddRefreshBuffStackBuffs.Count > 0) { object obj6 = <>O.<8>__CharacterBody_AddTimedBuff_BuffDef_float; if (obj6 == null) { Manipulator val6 = CharacterBody_AddTimedBuff_BuffDef_float; <>O.<8>__CharacterBody_AddTimedBuff_BuffDef_float = val6; obj6 = (object)val6; } CharacterBody.AddTimedBuff_BuffDef_float += (Manipulator)obj6; } } internal static void GetStatCoefficients(CharacterBody sender, StatHookEventArgs args) { if (Object.op_Implicit((Object)(object)sender.inventory)) { Handle_GetStatCoefficients_Actions(sender, args, sender.inventory); } } internal static void GlobalEventManager_onCharacterDeathGlobal(DamageReport damageReport) { if (NetworkServer.active && Object.op_Implicit((Object)(object)damageReport.attacker) && Object.op_Implicit((Object)(object)damageReport.attackerBody)) { Handle_GlobalKillEvent_Actions(damageReport); } } internal static void GlobalEventManager_DamageDealt(DamageReport damageReport) { if (NetworkServer.active && Object.op_Implicit((Object)(object)damageReport.attacker) && Object.op_Implicit((Object)(object)damageReport.attackerBody)) { Handle_GlobalDamageEvent_Actions(damageReport); } } internal static void GlobalEventManager_HitEnemy(orig_OnHitEnemy orig, GlobalEventManager self, DamageInfo damageInfo, GameObject victim) { orig.Invoke(self, damageInfo, victim); if (NetworkServer.active && Object.op_Implicit((Object)(object)victim) && Object.op_Implicit((Object)(object)damageInfo.attacker)) { CharacterBody component = damageInfo.attacker.GetComponent(); CharacterBody component2 = victim.GetComponent(); if (Object.op_Implicit((Object)(object)component) && Object.op_Implicit((Object)(object)component2)) { Handle_GlobalHitEvent_Actions(component2, component, damageInfo); } } } internal static void CharacterMaster_OnBodyDeath(orig_OnBodyDeath orig, CharacterMaster self, CharacterBody body) { orig.Invoke(self, body); if (NetworkServer.active) { Handle_CharacterMaster_OnBodyDeath_Actions(self, body); } } internal static void GlobalEventManager_OnInventoryChanged(CharacterBody self) { if (NetworkServer.active) { Handle_GlobalInventoryChangedEvent_Actions(self); } } internal static void HealthComponent_PreTakeDamageProcess(orig_TakeDamageProcess orig, HealthComponent self, DamageInfo damageInfo) { if (NetworkServer.active) { Handle_PreTakeDamageProcess_Actions(self, ref damageInfo); } orig.Invoke(self, damageInfo); } internal static void HealthComponent_PostTakeDamageProcess(orig_TakeDamageProcess orig, HealthComponent self, DamageInfo damageInfo) { orig.Invoke(self, damageInfo); if (NetworkServer.active && !self.body.HasBuff(Buffs.HiddenRejectAllDamage) && !damageInfo.rejected && self.alive && !self.godMode && !(self.ospTimer > 0f)) { CharacterBody attackerBody = null; if (Object.op_Implicit((Object)(object)damageInfo.attacker)) { attackerBody = damageInfo.attacker.GetComponent(); } Handle_PostTakeDamageProcess_Actions(self, damageInfo, attackerBody); } } internal static void CharacterBody_AddTimedBuff_BuffDef_float(ILContext il) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Expected O, but got Unknown ILCursor val = new ILCursor(il); if (!val.TryGotoNext(new Func[1] { (Instruction x) => ILPatternMatchingExt.MatchLdsfld(x, typeof(Buffs).GetField("Overheat")) })) { Debug.LogError((object)"RainstormRefinery.Utils.SharedHooks: Handle_AddRefreshBuffStackBuffs hook failed"); return; } int index = val.Index; val.Index = index + 1; val.EmitDelegate>((Func)((BuffDef buffDef, BuffDef overheatDef) => List_AddRefreshBuffStackBuffs.Contains(buffDef) || (Object)(object)buffDef == (Object)(object)overheatDef)); val.Remove(); } } public static class SkillUtils { public static void ReorderSkillDrivers(this GameObject master, int targetIdx) { AISkillDriver[] components = master.GetComponents(); master.ReorderSkillDrivers(components, components.Length - 1, targetIdx); } public static void ReorderSkillDrivers(this GameObject master, AISkillDriver targetSkill, int targetIdx) { AISkillDriver[] components = master.GetComponents(); master.ReorderSkillDrivers(components, Array.IndexOf(components, targetSkill), targetIdx); } public static void ReorderSkillDrivers(this GameObject master, AISkillDriver[] skills, int currentIdx, int targetIdx) { if (currentIdx < 0 || currentIdx >= skills.Length) { Log.Error($"{currentIdx} index not found or out of range. Must be less than {skills.Length}"); return; } string targetName = skills[currentIdx].customName; if (targetIdx < 0 || targetIdx >= skills.Length) { Log.Error($"Unable to reorder skilldriver {targetName} into position {targetIdx}. target must be less than {skills.Length}"); return; } if (targetIdx == currentIdx) { Log.Warning($"Skilldriver {targetName} already has the target index of {targetIdx}"); return; } Dictionary dictionary = skills.Where((AISkillDriver s) => (Object)(object)s.nextHighPriorityOverride != (Object)null).ToDictionary((AISkillDriver s) => s.customName, (AISkillDriver s) => s.nextHighPriorityOverride.customName); if (targetIdx > currentIdx) { master.AddComponentCopy(skills[currentIdx]); Object.DestroyImmediate((Object)(object)skills[currentIdx]); } for (int i = targetIdx; i < skills.Length; i++) { if (i != currentIdx) { master.AddComponentCopy(skills[i]); Object.DestroyImmediate((Object)(object)skills[i]); } } skills = master.GetComponents(); AISkillDriver val = ((IEnumerable)skills).FirstOrDefault((Func)((AISkillDriver s) => s.customName == targetName)); if ((Object)(object)val != (Object)null && Array.IndexOf(skills, val) == targetIdx) { Log.Debug($"Successfully set {targetName} to {targetIdx}"); } else { Log.Error($"Done fucked it up on {targetName} with {targetIdx}"); } if (!dictionary.Any()) { return; } foreach (AISkillDriver val2 in skills) { if (Object.op_Implicit((Object)(object)val2) && dictionary.TryGetValue(val2.customName, out var target)) { AISkillDriver val3 = ((IEnumerable)skills).FirstOrDefault((Func)((AISkillDriver s) => s.customName == target)); if ((Object)(object)val3 == (Object)null) { Log.Error("Unable to reset skill override for " + val2.customName + " targeting " + target); continue; } val2.nextHighPriorityOverride = val3; Log.Debug("successfully reset override for " + val2.customName + " targeting " + target); } } } public static void RemoveComponent(this GameObject go) where T : Component { T val = default(T); if (go.TryGetComponent(ref val)) { Object.Destroy((Object)(object)val); } } public static void RemoveComponents(this GameObject go) where T : Component { T[] components = go.GetComponents(); for (int i = 0; i < components.Length; i++) { Object.Destroy((Object)(object)components[i]); } } public static T GetCopyOf(this Component comp, T other) where T : Component { Type type = ((object)comp).GetType(); if (type != ((object)other).GetType()) { return default(T); } BindingFlags bindingAttr = BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic; PropertyInfo[] properties = type.GetProperties(bindingAttr); PropertyInfo[] array = properties; foreach (PropertyInfo propertyInfo in array) { if (propertyInfo.CanWrite) { try { propertyInfo.SetValue(comp, propertyInfo.GetValue(other, null), null); } catch { } } } FieldInfo[] fields = type.GetFields(bindingAttr); FieldInfo[] array2 = fields; foreach (FieldInfo fieldInfo in array2) { fieldInfo.SetValue(comp, fieldInfo.GetValue(other)); } return (T)(object)((comp is T) ? comp : null); } public static T GetCopyOf(this ScriptableObject comp, T other) where T : ScriptableObject { Type type = ((object)comp).GetType(); if (type != ((object)other).GetType()) { return default(T); } BindingFlags bindingAttr = BindingFlags.DeclaredOnly | BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic; PropertyInfo[] properties = type.GetProperties(bindingAttr); PropertyInfo[] array = properties; foreach (PropertyInfo propertyInfo in array) { if (propertyInfo.CanWrite) { try { propertyInfo.SetValue(comp, propertyInfo.GetValue(other, null), null); } catch { } } } FieldInfo[] fields = type.GetFields(bindingAttr); FieldInfo[] array2 = fields; foreach (FieldInfo fieldInfo in array2) { fieldInfo.SetValue(comp, fieldInfo.GetValue(other)); } return (T)(object)((comp is T) ? comp : null); } public static T AddComponentCopy(this GameObject go, T toAdd) where T : Component { return ((Component)(object)go.AddComponent()).GetCopyOf(toAdd); } public static bool TryModifyFieldValue(this EntityStateConfiguration entityStateConfiguration, string fieldName, T value) { ref SerializedField orCreateField = ref ((SerializedFieldCollection)(ref entityStateConfiguration.serializedFieldsCollection)).GetOrCreateField(fieldName); if (Object.op_Implicit(orCreateField.fieldValue.objectValue) && typeof(Object).IsAssignableFrom(typeof(T))) { ref Object objectValue = ref orCreateField.fieldValue.objectValue; object obj = value; objectValue = (Object)((obj is Object) ? obj : null); return true; } if (orCreateField.fieldValue.stringValue != null && StringSerializer.CanSerializeType(typeof(T))) { orCreateField.fieldValue.stringValue = StringSerializer.Serialize(typeof(T), (object)value); return true; } Debug.LogError((object)("Failed to modify field " + fieldName)); return false; } public static bool TryGetFieldValue(this EntityStateConfiguration entityStateConfiguration, string fieldName, out T value) where T : Object { ref SerializedField orCreateField = ref ((SerializedFieldCollection)(ref entityStateConfiguration.serializedFieldsCollection)).GetOrCreateField(fieldName); if (Object.op_Implicit(orCreateField.fieldValue.objectValue) && typeof(Object).IsAssignableFrom(typeof(T))) { value = (T)(object)orCreateField.fieldValue.objectValue; return true; } if (!string.IsNullOrEmpty(orCreateField.fieldValue.stringValue)) { Debug.LogError((object)("Failed to return " + fieldName + " as an Object, try getting the string value instead.")); } else { Debug.LogError((object)("Field is null " + fieldName)); } value = default(T); return false; } public static bool TryGetFieldValueString(this EntityStateConfiguration entityStateConfiguration, string fieldName, out T value) where T : IEquatable { ref SerializedField orCreateField = ref ((SerializedFieldCollection)(ref entityStateConfiguration.serializedFieldsCollection)).GetOrCreateField(fieldName); if (orCreateField.fieldValue.stringValue != null && StringSerializer.CanSerializeType(typeof(T))) { value = (T)StringSerializer.Deserialize(typeof(T), orCreateField.fieldValue.stringValue); return true; } if (Object.op_Implicit(orCreateField.fieldValue.objectValue)) { Debug.LogError((object)("Failed to return " + fieldName + " as a string, try getting the Object value instead.")); } else { Debug.LogError((object)("Field is null " + fieldName)); } value = default(T); return false; } } internal class SneedUtils { public static bool SetEntityStateField(string entityStateName, string fieldName, GameObject newObject) { EntityStateConfiguration val = LegacyResourcesAPI.Load("entitystateconfigurations/" + entityStateName); for (int i = 0; i < val.serializedFieldsCollection.serializedFields.Length; i++) { if (val.serializedFieldsCollection.serializedFields[i].fieldName == fieldName) { val.serializedFieldsCollection.serializedFields[i].fieldValue.objectValue = (Object)(object)newObject; return true; } } return false; } public static bool SetAddressableEntityStateField(string fullEntityStatePath, string fieldName, string value) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) EntityStateConfiguration val = Addressables.LoadAssetAsync((object)fullEntityStatePath).WaitForCompletion(); for (int i = 0; i < val.serializedFieldsCollection.serializedFields.Length; i++) { if (val.serializedFieldsCollection.serializedFields[i].fieldName == fieldName) { val.serializedFieldsCollection.serializedFields[i].fieldValue.stringValue = value; return true; } } return false; } public static bool GetKeyPressed(ConfigEntry entry) { //IL_0003: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Unknown result type (might be due to invalid IL or missing references) //IL_0019: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0020: Unknown result type (might be due to invalid IL or missing references) //IL_004a: Unknown result type (might be due to invalid IL or missing references) //IL_004f: Unknown result type (might be due to invalid IL or missing references) //IL_0052: Unknown result type (might be due to invalid IL or missing references) KeyboardShortcut value = entry.Value; foreach (KeyCode modifier in ((KeyboardShortcut)(ref value)).Modifiers) { if (!Input.GetKey(modifier)) { return false; } } value = entry.Value; return Input.GetKeyDown(((KeyboardShortcut)(ref value)).MainKey); } public static BuffDef CreateBuffDef(string name, bool canStack, bool isCooldown, bool isDebuff, bool isBuff, Color color, Sprite iconSprite, bool isHidden = false) { //IL_0030: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) BuffDef val = ScriptableObject.CreateInstance(); ((Object)val).name = name; val.canStack = canStack; val.isCooldown = isCooldown; val.isDebuff = isDebuff; val.ignoreGrowthNectar = !isBuff; val.buffColor = color; val.iconSprite = iconSprite; val.isHidden = isHidden; ContentAddition.AddBuffDef(val); ((Object)val).name = ((Object)val).name; return val; } public static void DumpEntityStateConfig(EntityStateConfiguration esc) { for (int i = 0; i < esc.serializedFieldsCollection.serializedFields.Length; i++) { if (Object.op_Implicit(esc.serializedFieldsCollection.serializedFields[i].fieldValue.objectValue)) { Debug.Log((object)(esc.serializedFieldsCollection.serializedFields[i].fieldName + " - " + (object)esc.serializedFieldsCollection.serializedFields[i].fieldValue.objectValue)); } else { Debug.Log((object)(esc.serializedFieldsCollection.serializedFields[i].fieldName + " - " + esc.serializedFieldsCollection.serializedFields[i].fieldValue.stringValue)); } } } public static void DumpEntityStateConfig(string entityStateName) { EntityStateConfiguration esc = LegacyResourcesAPI.Load("entitystateconfigurations/" + entityStateName); DumpEntityStateConfig(esc); } public static void DumpAddressableEntityStateConfig(string addressablePath) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0007: Unknown result type (might be due to invalid IL or missing references) EntityStateConfiguration esc = Addressables.LoadAssetAsync((object)addressablePath).WaitForCompletion(); DumpEntityStateConfig(esc); } public static void RemoveItemTag(ItemDef itemDef, ItemTag tag) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_001a: Unknown result type (might be due to invalid IL or missing references) if (itemDef.ContainsTag(tag)) { List list = itemDef.tags.ToList(); list.Remove(tag); itemDef.tags = list.ToArray(); } else { Log.Warning("RainstormRefinery: failed to remove item tag from " + itemDef.nameToken + "; tag not present"); } } public static void AddItemTag(ItemDef itemDef, ItemTag tag) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_001d: Unknown result type (might be due to invalid IL or missing references) if (!itemDef.ContainsTag(tag)) { List list = itemDef.tags.ToList(); list.Add(tag); itemDef.tags = list.ToArray(); } else { Log.Warning("RainstormRefinery: failed to add item tag to " + itemDef.nameToken + "; tag already present"); } } } } namespace RainstormRefinery.Utils.AssetLibrary { public static class Texture2D { public static string texAttackSpeedIcon = "RoR2/Base/Achievements/texAttackSpeedIcon.png"; public static string texAutomationActivationIcon = "RoR2/Base/Achievements/texAutomationActivationIcon.png"; public static string texAutomationActivationIconNew = "RoR2/Base/Achievements/texAutomationActivationIcon_New.png"; public static string texBandit2ClearGameMonsoonIcon = "RoR2/Base/Achievements/texBandit2ClearGameMonsoonIcon.png"; public static string texBandit2ClearPMIcon = "RoR2/Base/Achievements/texBandit2ClearPMIcon.png"; public static string texBandit2ConsecutiveResetIcon = "RoR2/Base/Achievements/texBandit2ConsecutiveResetIcon.png"; public static string texBandit2RevolverFinaleIcon = "RoR2/Base/Achievements/texBandit2RevolverFinaleIcon.png"; public static string texBandit2StackSuperBleedIcon = "RoR2/Base/Achievements/texBandit2StackSuperBleedIcon.png"; public static string texBeatArenaIcon = "RoR2/Base/Achievements/texBeatArenaIcon.png"; public static string texBurnToDeathIcon = "RoR2/Base/Achievements/texBurnToDeathIcon.png"; public static string texCaptainBuyMegaDroneIcon = "RoR2/Base/Achievements/texCaptainBuyMegaDroneIcon.png"; public static string texCaptainClearGameMonsoonIcon = "RoR2/Base/Achievements/texCaptainClearGameMonsoonIcon.png"; public static string texCaptainClearPMIcon = "RoR2/Base/Achievements/texCaptainClearPMIcon.png"; public static string texCaptainSupplyDropFinaleIcon = "RoR2/Base/Achievements/texCaptainSupplyDropFinaleIcon.png"; public static string texCaptainVisitSeveralStagesIcon = "RoR2/Base/Achievements/texCaptainVisitSeveralStagesIcon.png"; public static string texCarryLunarItemsIcon = "RoR2/Base/Achievements/texCarryLunarItemsIcon.png"; public static string texChargeTeleporterWhileNearDeathIcon = "RoR2/Base/Achievements/texChargeTeleporterWhileNearDeathIcon.png"; public static string texChefClearGameMonsoonIcon = "RoR2/Base/Achievements/texChefClearGameMonsoonIcon.png"; public static string texChefSearBisonIcon = "RoR2/Base/Achievements/texChefSearBisonIcon.png"; public static string texCleanupDutyIcon = "RoR2/Base/Achievements/texCleanupDutyIcon.png"; public static string texCommandoClearGameMonsoonIcon = "RoR2/Base/Achievements/texCommandoClearGameMonsoonIcon.png"; public static string texCommandoClearPMIcon = "RoR2/Base/Achievements/texCommandoClearPMIcon.png"; public static string texCommandoFastFirstStageClearIcon = "RoR2/Base/Achievements/texCommandoFastFirstStageClearIcon.png"; public static string texCommandoKillOverloadingWormIcon = "RoR2/Base/Achievements/texCommandoKillOverloadingWormIcon.png"; public static string texCommandoNonLunarEnduranceIcon = "RoR2/Base/Achievements/texCommandoNonLunarEnduranceIcon.png"; public static string texComplete20StagesIcon = "RoR2/Base/Achievements/texComplete20StagesIcon.png"; public static string texComplete30StagesCareerIcon = "RoR2/Base/Achievements/texComplete30StagesCareerIcon.png"; public static string texCompleteMainEndingHardIcon = "RoR2/Base/Achievements/texCompleteMainEndingHardIcon.png"; public static string texCompleteMainEndingIcon = "RoR2/Base/Achievements/texCompleteMainEndingIcon.png"; public static string texCompleteMultiBossShrineIcon = "RoR2/Base/Achievements/texCompleteMultiBossShrineIcon.png"; public static string texCompletePrismaticTrialIcon = "RoR2/Base/Achievements/texCompletePrismaticTrialIcon.png"; public static string texCompleteTeleporterIcon = "RoR2/Base/Achievements/texCompleteTeleporterIcon.png"; public static string texCompleteTeleporterWithoutInjuryIcon = "RoR2/Base/Achievements/texCompleteTeleporterWithoutInjuryIcon.png"; public static string texCompleteThreeStagesIcon = "RoR2/Base/Achievements/texCompleteThreeStagesIcon.png"; public static string texCompleteThreeStagesIcon240 = "RoR2/Base/Achievements/texCompleteThreeStagesIcon240.png"; public static string texCompleteThreeStagesIconOLD = "RoR2/Base/Achievements/texCompleteThreeStagesIconOLD.png"; public static string texCompleteThreeStagesWithoutHealingIcon = "RoR2/Base/Achievements/texCompleteThreeStagesWithoutHealingIcon.png"; public static string texCompleteUnknownEndingIcon = "RoR2/Base/Achievements/texCompleteUnknownEndingIcon.png"; public static string texCrocoClearGameMonsoonIcon = "RoR2/Base/Achievements/texCrocoClearGameMonsoonIcon.png"; public static string texCrocoClearPMIcon = "RoR2/Base/Achievements/texCrocoClearPMIcon.png"; public static string texCrocoKillScavengerIcon = "RoR2/Base/Achievements/texCrocoKillScavengerIcon.png"; public static string texCrocoKillWeakEnemiesMilestoneIcon = "RoR2/Base/Achievements/texCrocoKillWeakEnemiesMilestoneIcon.png"; public static string texCrocoTotalInfectionsMilestoneIcon = "RoR2/Base/Achievements/texCrocoTotalInfectionsMilestoneIcon.png"; public static string texDefeatSuperRoboBallBossIcon = "RoR2/Base/Achievements/texDefeatSuperRoboBallBossIcon.png"; public static string texDie20TimesIcon = "RoR2/Base/Achievements/texDie20TimesIcon.png"; public static string texDie5TimesIcon = "RoR2/Base/Achievements/texDie5TimesIcon.png"; public static string texDiscover10UniqueTier1Icon = "RoR2/Base/Achievements/texDiscover10UniqueTier1Icon.png"; public static string texDiscover5EquipmentIcon = "RoR2/Base/Achievements/texDiscover5EquipmentIcon.png"; public static string texDrifterTornadoIcon = "RoR2/Base/Achievements/texDrifterTornadoIcon.jpg"; public static string texDroneTechAltDrone = "RoR2/Base/Achievements/texDroneTechAltDrone.png"; public static string texDroneTechNanoBombIcon = "RoR2/Base/Achievements/texDroneTechNanoBombIcon.jpg"; public static string texDroneTechShieldIcon = "RoR2/Base/Achievements/texDroneTechShieldIcon.jpg"; public static string texEngiArmyIcon = "RoR2/Base/Achievements/texEngiArmyIcon.png"; public static string texEngiClearGameMonsoonIcon = "RoR2/Base/Achievements/texEngiClearGameMonsoonIcon.png"; public static string texEngiClearPMIcon = "RoR2/Base/Achievements/texEngiClearPMIcon.png"; public static string texEngiClearTeleporterWithZeroMonstersIcon = "RoR2/Base/Achievements/texEngiClearTeleporterWithZeroMonstersIcon.png"; public static string texEngiKillBossQuickIcon = "RoR2/Base/Achievements/texEngiKillBossQuickIcon.png"; public static string texFailShrineChanceIcon = "RoR2/Base/Achievements/texFailShrineChanceIcon.png"; public static string texFalseSonClearGameMonsoonIcon = "RoR2/Base/Achievements/texFalseSonClearGameMonsoonIcon.png"; public static string texFalseSonOneLaserMultiKillIcon = "RoR2/Base/Achievements/texFalseSonOneLaserMultiKillIcon.png"; public static string texFindDevilAltarIcon = "RoR2/Base/Achievements/texFindDevilAltarIcon.png"; public static string texFindTimedChestIcon = "RoR2/Base/Achievements/texFindTimedChestIcon.png"; public static string texFindUniqueNewtStatuesIcon = "RoR2/Base/Achievements/texFindUniqueNewtStatuesIcon.png"; public static string texFreeMageIcon = "RoR2/Base/Achievements/texFreeMageIcon.png"; public static string texHardEliteBossKillIcon = "RoR2/Base/Achievements/texHardEliteBossKillIcon.png"; public static string texHardHitterIcon = "RoR2/Base/Achievements/texHardHitterIcon.png"; public static string texHuntressAllGlaiveBouncesKillIcon = "RoR2/Base/Achievements/texHuntressAllGlaiveBouncesKillIcon.png"; public static string texHuntressAttackSpeedIcon = "RoR2/Base/Achievements/texHuntressAttackSpeedIcon.png"; public static string texHuntressClearGameMonsoonIcon = "RoR2/Base/Achievements/texHuntressClearGameMonsoonIcon.png"; public static string texHuntressClearPMIcon = "RoR2/Base/Achievements/texHuntressClearPMIcon.png"; public static string texHuntressCollectCrowbarsIcon = "RoR2/Base/Achievements/texHuntressCollectCrowbarsIcon.png"; public static string texHuntressMaintainFullHealthOnFrozenWallIcon = "RoR2/Base/Achievements/texHuntressMaintainFullHealthOnFrozenWallIcon.png"; public static string texKillBossQuantityInRunIcon = "RoR2/Base/Achievements/texKillBossQuantityInRunIcon.png"; public static string texKillBossQuickIcon = "RoR2/Base/Achievements/texKillBossQuickIcon.png"; public static string texKillElementalLemuriansIcon = "RoR2/Base/Achievements/texKillElementalLemuriansIcon.png"; public static string texKillEliteMonsterIcon = "RoR2/Base/Achievements/texKillEliteMonsterIcon.png"; public static string texKillElitesMilestoneIcon = "RoR2/Base/Achievements/texKillElitesMilestoneIcon.png"; public static string texKillGoldTitanInOneCycleIcon = "RoR2/Base/Achievements/texKillGoldTitanInOneCycleIcon.png"; public static string texKillTotalEnemiesIcon = "RoR2/Base/Achievements/texKillTotalEnemiesIcon.png"; public static string texLoaderBigSlamIcon = "RoR2/Base/Achievements/texLoaderBigSlamIcon.png"; public static string texLoaderClearGameMonsoonIcon = "RoR2/Base/Achievements/texLoaderClearGameMonsoonIcon.png"; public static string texLoaderClearPMIcon = "RoR2/Base/Achievements/texLoaderClearPMIcon.png"; public static string texLoaderKillLoadersIcon = "RoR2/Base/Achievements/texLoaderKillLoadersIcon.png"; public static string texLoaderSpeedRunIcon = "RoR2/Base/Achievements/texLoaderSpeedRunIcon.png"; public static string texLoaderThatsWeirdIcon = "RoR2/Base/Achievements/texLoaderThatsWeirdIcon.png"; public static string texLogCollectorIcon = "RoR2/Base/Achievements/texLogCollectorIcon.png"; public static string texLoopOnceIcon = "RoR2/Base/Achievements/texLoopOnceIcon.png"; public static string texMageAirborneMultiKillIcon = "RoR2/Base/Achievements/texMageAirborneMultiKillIcon.png"; public static string texMageClearGameMonsoonIcon = "RoR2/Base/Achievements/texMageClearGameMonsoonIcon.png"; public static string texMageClearPMIcon = "RoR2/Base/Achievements/texMageClearPMIcon.png"; public static string texMageFastBossIcon = "RoR2/Base/Achievements/texMageFastBossIcon.png"; public static string texMageMultiExecuteIcon = "RoR2/Base/Achievements/texMageMultiExecuteIcon.png"; public static string texMageMultiKillIcon = "RoR2/Base/Achievements/texMageMultiKillIcon.png"; public static string texMajorMultikillIcon = "RoR2/Base/Achievements/texMajorMultikillIcon.png"; public static string texMaxHealingShrineIcon = "RoR2/Base/Achievements/texMaxHealingShrineIcon.png"; public static string texMercClearGameMonsoonIcon = "RoR2/Base/Achievements/texMercClearGameMonsoonIcon.png"; public static string texMercClearPMIcon = "RoR2/Base/Achievements/texMercClearPMIcon.png"; public static string texMercCompleteTrialWithFullHealthIcon = "RoR2/Base/Achievements/texMercCompleteTrialWithFullHealthIcon.png"; public static string texMercDontTouchGroundIcon = "RoR2/Base/Achievements/texMercDontTouchGroundIcon.png"; public static string texMercXSkillsInYSecondsIcon = "RoR2/Base/Achievements/texMercXSkillsInYSecondsIcon.png"; public static string texMoveSpeedIcon = "RoR2/Base/Achievements/texMoveSpeedIcon.png"; public static string texMultiCombatShrineIcon = "RoR2/Base/Achievements/texMultiCombatShrineIcon.png"; public static string texNeverBackDownIcon = "RoR2/Base/Achievements/texNeverBackDownIcon.png"; public static string texObtainArtifactBombIcon = "RoR2/Base/Achievements/texObtainArtifactBombIcon.png"; public static string texObtainArtifactCommandIcon = "RoR2/Base/Achievements/texObtainArtifactCommandIcon.png"; public static string texObtainArtifactEliteOnlyIcon = "RoR2/Base/Achievements/texObtainArtifactEliteOnlyIcon.png"; public static string texObtainArtifactEnigmaIcon = "RoR2/Base/Achievements/texObtainArtifactEnigmaIcon.png"; public static string texObtainArtifactExtraDronesIcon = "RoR2/Base/Achievements/texObtainArtifactExtraDronesIcon.png"; public static string texObtainArtifactFriendlyFireIcon = "RoR2/Base/Achievements/texObtainArtifactFriendlyFireIcon.png"; public static string texObtainArtifactGlassIcon = "RoR2/Base/Achievements/texObtainArtifactGlassIcon.png"; public static string texObtainArtifactMixEnemyIcon = "RoR2/Base/Achievements/texObtainArtifactMixEnemyIcon.png"; public static string texObtainArtifactMonsterTeamGainsItemsIcon = "RoR2/Base/Achievements/texObtainArtifactMonsterTeamGainsItemsIcon.png"; public static string texObtainArtifactRandomSurvivorOnRespawnIcon = "RoR2/Base/Achievements/texObtainArtifactRandomSurvivorOnRespawnIcon.png"; public static string texObtainArtifactSacrificeIcon = "RoR2/Base/Achievements/texObtainArtifactSacrificeIcon.png"; public static string texObtainArtifactShadowCloneIcon = "RoR2/Base/Achievements/texObtainArtifactShadowCloneIcon.png"; public static string texObtainArtifactSingleMonsterTypeIcon = "RoR2/Base/Achievements/texObtainArtifactSingleMonsterTypeIcon.png"; public static string texObtainArtifactSwarmsIcon = "RoR2/Base/Achievements/texObtainArtifactSwarmsIcon.png"; public static string texObtainArtifactTeamDeathIcon = "RoR2/Base/Achievements/texObtainArtifactTeamDeathIcon.png"; public static string texObtainArtifactWeakAssKneesIcon = "RoR2/Base/Achievements/texObtainArtifactWeakAssKneesIcon.png"; public static string texObtainArtifactWispOnDeathIcon = "RoR2/Base/Achievements/texObtainArtifactWispOnDeathIcon.png"; public static string texPlaceholderAchievement = "RoR2/Base/Achievements/texPlaceholderAchievement.png"; public static string texRailgunnerClearPMIcon = "RoR2/Base/Achievements/texRailgunnerClearPMIcon.png"; public static string texRepeatedlyDuplicateItemsIcon = "RoR2/Base/Achievements/texRepeatedlyDuplicateItemsIcon.png"; public static string texRepeatFirstTeleporterIcon = "RoR2/Base/Achievements/texRepeatFirstTeleporterIcon.png"; public static string texRescueTreebotIcon = "RoR2/Base/Achievements/texRescueTreebotIcon.png"; public static string texSeekerClearGameMonsoonIcon = "RoR2/Base/Achievements/texSeekerClearGameMonsoonIcon.png"; public static string texSeekerMultiKillAirborneEnemyIcon = "RoR2/Base/Achievements/texSeekerMultiKillAirborneEnemyIcon.png"; public static string texStayAlive1Icon = "RoR2/Base/Achievements/texStayAlive1Icon.png"; public static string texSuicideHermitCrabsIcon = "RoR2/Base/Achievements/texSuicideHermitCrabsIcon.png"; public static string texToolbotBeatArenaLaterIcon = "RoR2/Base/Achievements/texToolbotBeatArenaLaterIcon.png"; public static string texToolbotClearGameMonsoonIcon = "RoR2/Base/Achievements/texToolbotClearGameMonsoonIcon.png"; public static string texToolbotClearPMIcon = "RoR2/Base/Achievements/texToolbotClearPMIcon.png"; public static string texToolbotGuardTeleporterIcon = "RoR2/Base/Achievements/texToolbotGuardTeleporterIcon.png"; public static string texToolbotKillImpBossWithBfgIcon = "RoR2/Base/Achievements/texToolbotKillImpBossWithBfgIcon.png"; public static string texTotalDronesRepairedIcon = "RoR2/Base/Achievements/texTotalDronesRepairedIcon.png"; public static string texTotalMoneyCollectedIcon = "RoR2/Base/Achievements/texTotalMoneyCollectedIcon.png"; public static string texTreebotBigHealIcon = "RoR2/Base/Achievements/texTreebotBigHealIcon.png"; public static string texTreebotClearGameMonsoonIcon = "RoR2/Base/Achievements/texTreebotClearGameMonsoonIcon.png"; public static string texTreebotClearPMIcon = "RoR2/Base/Achievements/texTreebotClearPMIcon.png"; public static string texTreebotDunkClayBossIcon = "RoR2/Base/Achievements/texTreebotDunkClayBossIcon.png"; public static string texTreebotLowHealthTeleporterIcon = "RoR2/Base/Achievements/texTreebotLowHealthTeleporterIcon.png"; public static string texUseThreePortalsIcon = "RoR2/Base/Achievements/texUseThreePortalsIcon.png"; public static string texVoidSurvivorClearPMIcon = "RoR2/Base/Achievements/texVoidSurvivorClearPMIcon.png"; public static string texArtifactCompoundCircleMask = "RoR2/Base/ArtifactCompounds/texArtifactCompoundCircleMask.png"; public static string texArtifactCompoundCircleNormal = "RoR2/Base/ArtifactCompounds/texArtifactCompoundCircleNormal.png"; public static string texArtifactCompoundDiamondMask = "RoR2/Base/ArtifactCompounds/texArtifactCompoundDiamondMask.png"; public static string texArtifactCompoundDiamondNormal = "RoR2/Base/ArtifactCompounds/texArtifactCompoundDiamondNormal.png"; public static string texArtifactCompoundFrameMask = "RoR2/Base/ArtifactCompounds/texArtifactCompoundFrameMask.png"; public static string texArtifactCompoundFrameNormal = "RoR2/Base/ArtifactCompounds/texArtifactCompoundFrameNormal.png"; public static string texArtifactCompoundScavScarMask = "RoR2/Base/ArtifactCompounds/texArtifactCompoundScavScarMask.png"; public static string texArtifactCompoundScavScarNormal = "RoR2/Base/ArtifactCompounds/texArtifactCompoundScavScarNormal.png"; public static string texArtifactCompoundSquareMask = "RoR2/Base/ArtifactCompounds/texArtifactCompoundSquareMask.png"; public static string texArtifactCompoundSquareNormal = "RoR2/Base/ArtifactCompounds/texArtifactCompoundSquareNormal.png"; public static string texArtifactCompoundTriangleMask = "RoR2/Base/ArtifactCompounds/texArtifactCompoundTriangleMask.png"; public static string texArtifactCompoundTriangleNormal = "RoR2/Base/ArtifactCompounds/texArtifactCompoundTriangleNormal.png"; public static string texArtifactBombDisabled = "RoR2/Base/Bomb/texArtifactBombDisabled.png"; public static string texArtifactBombEnabled = "RoR2/Base/Bomb/texArtifactBombEnabled.png"; public static string texArtifactCommandDisabled = "RoR2/Base/Command/texArtifactCommandDisabled.png"; public static string texArtifactCommandEnabled = "RoR2/Base/Command/texArtifactCommandEnabled.png"; public static string texArtifactEliteOnlyDisabled = "RoR2/Base/EliteOnly/texArtifactEliteOnlyDisabled.png"; public static string texArtifactEliteOnlyEnabled = "RoR2/Base/EliteOnly/texArtifactEliteOnlyEnabled.png"; public static string texArtifactRandomEquipmentDisabled = "RoR2/Base/Enigma/texArtifactRandomEquipmentDisabled.png"; public static string texArtifactRandomEquipmentEnabled = "RoR2/Base/Enigma/texArtifactRandomEquipmentEnabled.png"; public static string texArtifactFriendlyFireDisabled = "RoR2/Base/FriendlyFire/texArtifactFriendlyFireDisabled.png"; public static string texArtifactFriendlyFireEnabled = "RoR2/Base/FriendlyFire/texArtifactFriendlyFireEnabled.png"; public static string texArtifactGlassDisabled = "RoR2/Base/Glass/texArtifactGlassDisabled.png"; public static string texArtifactGlassEnabled = "RoR2/Base/Glass/texArtifactGlassEnabled.png"; public static string texArtifactMixEnemyDisabled = "RoR2/Base/MixEnemy/texArtifactMixEnemyDisabled.png"; public static string texArtifactMixEnemyEnabled = "RoR2/Base/MixEnemy/texArtifactMixEnemyEnabled.png"; public static string texArtifactEvolutionDisabled = "RoR2/Base/MonsterTeamGainsItems/texArtifactEvolutionDisabled.png"; public static string texArtifactEvolutionEnabled = "RoR2/Base/MonsterTeamGainsItems/texArtifactEvolutionEnabled.png"; public static string texArtifactMetamorphDisabled = "RoR2/Base/RandomSurvivorOnRespawn/texArtifactMetamorphDisabled.png"; public static string texArtifactMetamorphEnabled = "RoR2/Base/RandomSurvivorOnRespawn/texArtifactMetamorphEnabled.png"; public static string texArtifactSacrificeDisabled = "RoR2/Base/Sacrifice/texArtifactSacrificeDisabled.png"; public static string texArtifactSacrificeEnabled = "RoR2/Base/Sacrifice/texArtifactSacrificeEnabled.png"; public static string texArtifactShadowCloneDisabled = "RoR2/Base/ShadowClone/texArtifactShadowCloneDisabled.png"; public static string texArtifactShadowCloneEnabled = "RoR2/Base/ShadowClone/texArtifactShadowCloneEnabled.png"; public static string texArtifactKinDisabled = "RoR2/Base/SingleMonsterType/texArtifactKinDisabled.png"; public static string texArtifactKinEnabled = "RoR2/Base/SingleMonsterType/texArtifactKinEnabled.png"; public static string texArtifactSwarmsDisabled = "RoR2/Base/Swarms/texArtifactSwarmsDisabled.png"; public static string texArtifactSwarmsEnabled = "RoR2/Base/Swarms/texArtifactSwarmsEnabled.png"; public static string texArtifactDeathDisabled = "RoR2/Base/TeamDeath/texArtifactDeathDisabled.png"; public static string texArtifactDeathEnabled = "RoR2/Base/TeamDeath/texArtifactDeathEnabled.png"; public static string texArtifactFallDamageDisabled = "RoR2/Base/WeakAssKnees/texArtifactFallDamageDisabled.png"; public static string texArtifactFallDamageEnabled = "RoR2/Base/WeakAssKnees/texArtifactFallDamageEnabled.png"; public static string texArtifactWispDisabled = "RoR2/Base/WispOnDeath/texArtifactWispDisabled.png"; public static string texArtifactWispEnabled = "RoR2/Base/WispOnDeath/texArtifactWispEnabled.png"; public static string texAltarSkeletonBody = "RoR2/Base/AltarSkeleton/texAltarSkeletonBody.png"; public static string texUnidentifiedKillerIcon = "RoR2/Base/ArtifactShell/texUnidentifiedKillerIcon.png"; public static string texBanditKnifeEmissive = "RoR2/Base/Bandit2/texBanditKnifeEmissive.png"; public static string texBanditKnifeFresnelMask = "RoR2/Base/Bandit2/texBanditKnifeFresnelMask.png"; public static string texBanditKnifeNormal = "RoR2/Base/Bandit2/texBanditKnifeNormal.png"; public static string texBanditRevolverFresnelMask = "RoR2/Base/Bandit2/texBanditRevolverFresnelMask.png"; public static string texBanditShotgunAltDiffuse = "RoR2/Base/Bandit2/texBanditShotgunAltDiffuse.png"; public static string texBanditShotgunDiffuse = "RoR2/Base/Bandit2/texBanditShotgunDiffuse.png"; public static string texBanditShotgunEmissive = "RoR2/Base/Bandit2/texBanditShotgunEmissive.png"; public static string texBandit2SkillIcons = "RoR2/Base/Bandit2/texBandit2SkillIcons.png"; public static string texBandit2AltColossusDiffuse = "RoR2/Base/Bandit2/texBandit2AltColossusDiffuse.png"; public static string texBandit2AltColossusEmissive = "RoR2/Base/Bandit2/texBandit2AltColossusEmissive.png"; public static string texBandit2AltColossusNormal = "RoR2/Base/Bandit2/texBandit2AltColossusNormal.png"; public static string texBandit2AltColossusWeaponsDiffuse = "RoR2/Base/Bandit2/texBandit2AltColossusWeaponsDiffuse.tga"; public static string texBandit2AltColossusWeaponsEmissive = "RoR2/Base/Bandit2/texBandit2AltColossusWeaponsEmissive.png"; public static string texBandit2AltColossusWeaponsMask = "RoR2/Base/Bandit2/texBandit2AltColossusWeaponsMask.png"; public static string texBandit2AltColossusWeaponsNormal = "RoR2/Base/Bandit2/texBandit2AltColossusWeaponsNormal.png"; public static string texRampSolusBandit = "RoR2/Base/Bandit2/texRampSolusBandit.png"; public static string texBandit2AltEmission = "RoR2/Base/Bandit2/texBandit2AltEmission.png"; public static string texBandit2CoatAltDiffuse = "RoR2/Base/Bandit2/texBandit2CoatAltDiffuse.png"; public static string texBandit2DiffuseAlt = "RoR2/Base/Bandit2/texBandit2DiffuseAlt.png"; public static string texBandit2CoatDiffuse = "RoR2/Base/Bandit2/texBandit2CoatDiffuse.png"; public static string texBandit2CoatNormal = "RoR2/Base/Bandit2/texBandit2CoatNormal.png"; public static string texBandit2Diffuse = "RoR2/Base/Bandit2/texBandit2Diffuse.png"; public static string texBandit2Emission = "RoR2/Base/Bandit2/texBandit2Emission.png"; public static string texBandit2Normal = "RoR2/Base/Bandit2/texBandit2Normal.png"; public static string texBanditCoatDiffuse = "RoR2/Base/Bandit2/texBanditCoatDiffuse.png"; public static string texBanditCoatEmissive = "RoR2/Base/Bandit2/texBanditCoatEmissive.png"; public static string texBanditIcon = "RoR2/Base/Bandit2/texBanditIcon.png"; public static string texBuffBanditSkullIcon = "RoR2/Base/Bandit2/texBuffBanditSkullIcon.tif"; public static string texBuffSuperBleedingIcon = "RoR2/Base/Bandit2/texBuffSuperBleedingIcon.tif"; public static string texBandit2BackstabMask = "RoR2/Base/Bandit2/texBandit2BackstabMask.png"; public static string texBanditSkullMask = "RoR2/Base/Bandit2/texBanditSkullMask.png"; public static string BeetleBody = "RoR2/Base/Beetle/BeetleBody.png"; public static string texSulfurBeetleDiffuse = "RoR2/Base/Beetle/texSulfurBeetleDiffuse.png"; public static string texSulfurBeetleFresnelMask = "RoR2/Base/Beetle/texSulfurBeetleFresnelMask.png"; public static string texBeetleDiffuse = "RoR2/Base/Beetle/texBeetleDiffuse.png"; public static string texBeetleEmission = "RoR2/Base/Beetle/texBeetleEmission.png"; public static string BeetleGuardBody = "RoR2/Base/BeetleGuard/BeetleGuardBody.png"; public static string texSulfurBeetleGuardDiffuse = "RoR2/Base/BeetleGuard/texSulfurBeetleGuardDiffuse.png"; public static string texSulfurBeetleGuardFresnelMask = "RoR2/Base/BeetleGuard/texSulfurBeetleGuardFresnelMask.png"; public static string BeetleQueen2Body = "RoR2/Base/BeetleQueen/BeetleQueen2Body.png"; public static string texAcidDecalDiffuse = "RoR2/Base/BeetleQueen/texAcidDecalDiffuse.png"; public static string texBuggyMask = "RoR2/Base/BeetleQueen/texBuggyMask.png"; public static string texSulfurBeetleQueenDiffuse = "RoR2/Base/BeetleQueen/texSulfurBeetleQueenDiffuse.png"; public static string texSulfurBeetleQueenFresnelMask = "RoR2/Base/BeetleQueen/texSulfurBeetleQueenFresnelMask.png"; public static string texBeetleWardIcon = "RoR2/Base/BeetleGroup/BeetleWard/texBeetleWardIcon.png"; public static string texAcidDecalMask = "RoR2/Base/BeetleGroup/texAcidDecalMask.png"; public static string texAcidDecalNormal = "RoR2/Base/BeetleGroup/texAcidDecalNormal.png"; public static string texBeetleDiffuse2 = "RoR2/Base/BeetleGroup/texBeetleDiffuse2.png"; public static string texBeetleGrubRangeIndicator = "RoR2/Base/BeetleGroup/texBeetleGrubRangeIndicator.png"; public static string texBeetleGuardAllyDiffuse = "RoR2/Base/BeetleGroup/texBeetleGuardAllyDiffuse.png"; public static string texBeetleGuardAllyFresnelMask = "RoR2/Base/BeetleGroup/texBeetleGuardAllyFresnelMask.png"; public static string texBeetleGuardDiffuse = "RoR2/Base/BeetleGroup/texBeetleGuardDiffuse.png"; public static string texBeetleGuardEmission = "RoR2/Base/BeetleGroup/texBeetleGuardEmission.png"; public static string texBeetleGuardNormal = "RoR2/Base/BeetleGroup/texBeetleGuardNormal.png"; public static string texBeetleGuardShellMask = "RoR2/Base/BeetleGroup/texBeetleGuardShellMask.png"; public static string texBeetleNormal = "RoR2/Base/BeetleGroup/texBeetleNormal.png"; public static string texBeetleQueenDiffuse = "RoR2/Base/BeetleGroup/texBeetleQueenDiffuse.png"; public static string texBeetleQueenEyeMask = "RoR2/Base/BeetleGroup/texBeetleQueenEyeMask.png"; public static string texBeetleQueenNormal = "RoR2/Base/BeetleGroup/texBeetleQueenNormal.png"; public static string texBeetleQueenSplatmap = "RoR2/Base/BeetleGroup/texBeetleQueenSplatmap.png"; public static string texBeetleStrike = "RoR2/Base/BeetleGroup/texBeetleStrike.png"; public static string texBuffBeetleJuiceIcon = "RoR2/Base/BeetleGroup/texBuffBeetleJuiceIcon.tif"; public static string BellBody = "RoR2/Base/Bell/BellBody.png"; public static string texBellBallDiffuse = "RoR2/Base/Bell/texBellBallDiffuse.png"; public static string texBellBallNormal = "RoR2/Base/Bell/texBellBallNormal.png"; public static string texBellDeviceDiffuse = "RoR2/Base/Bell/texBellDeviceDiffuse.png"; public static string texBellDeviceNormal = "RoR2/Base/Bell/texBellDeviceNormal.png"; public static string texBellDiffuse = "RoR2/Base/Bell/texBellDiffuse.png"; public static string texBellNormal = "RoR2/Base/Bell/texBellNormal.png"; public static string texBirdsharkBody = "RoR2/Base/Birdshark/texBirdsharkBody.png"; public static string texBirdsharkDiffuse = "RoR2/Base/Birdshark/texBirdsharkDiffuse.png"; public static string BisonBody = "RoR2/Base/Bison/BisonBody.png"; public static string texBisonDiffuse = "RoR2/Base/Bison/texBisonDiffuse.png"; public static string texBisonHairDiffuse = "RoR2/Base/Bison/texBisonHairDiffuse.png"; public static string texBisonNormal = "RoR2/Base/Bison/texBisonNormal.png"; public static string texBrotherIcon = "RoR2/Base/Brother/texBrotherIcon.png"; public static string texBrotherClothRipped = "RoR2/Base/Brother/texBrotherClothRipped.png"; public static string texBrotherDiffuse = "RoR2/Base/Brother/texBrotherDiffuse.png"; public static string texBrotherEyeDiffuse = "RoR2/Base/Brother/texBrotherEyeDiffuse.png"; public static string texBrotherEyeHurtDiffuse = "RoR2/Base/Brother/texBrotherEyeHurtDiffuse.png"; public static string texBrotherNormal = "RoR2/Base/Brother/texBrotherNormal.png"; public static string texCaptainColossusClothesDiffuse = "RoR2/Base/Captain/texCaptainColossusClothesDiffuse.png"; public static string texCaptainColossusClothesNormal = "RoR2/Base/Captain/texCaptainColossusClothesNormal.png"; public static string texCaptainColossusDiffuse = "RoR2/Base/Captain/texCaptainColossusDiffuse.png"; public static string texCaptainColossusFresnelMask = "RoR2/Base/Captain/texCaptainColossusFresnelMask.png"; public static string texCaptainColossusNormal = "RoR2/Base/Captain/texCaptainColossusNormal.png"; public static string texRampSolusCaptain = "RoR2/Base/Captain/texRampSolusCaptain.png"; public static string texCaptainSupplyRadius = "RoR2/Base/Captain/texCaptainSupplyRadius.png"; public static string texCrosshairDrone1 = "RoR2/Base/Captain/texCrosshairDrone1.png"; public static string texScanlineMask = "RoR2/Base/Captain/texScanlineMask.jpg"; public static string texWarning = "RoR2/Base/Captain/texWarning.png"; public static string texCaptainJacketDiffuse = "RoR2/Base/Captain/texCaptainJacketDiffuse.png"; public static string texCaptainJacketDiffuseAlt = "RoR2/Base/Captain/texCaptainJacketDiffuseAlt.png"; public static string texCaptainJacketNormal = "RoR2/Base/Captain/texCaptainJacketNormal.png"; public static string texCaptainPalette = "RoR2/Base/Captain/texCaptainPalette.psd"; public static string texCaptainPaletteAlt = "RoR2/Base/Captain/texCaptainPaletteAlt.psd"; public static string texCaptainCrosshairInner = "RoR2/Base/Captain/texCaptainCrosshairInner.png"; public static string texCaptainCrosshairOuter = "RoR2/Base/Captain/texCaptainCrosshairOuter.png"; public static string texCaptainSkillIcons = "RoR2/Base/Captain/texCaptainSkillIcons.png"; public static string texCaptainIcon = "RoR2/Base/Captain/texCaptainIcon.png"; public static string texRampCrosshair2 = "RoR2/Base/Captain/texRampCrosshair2.png"; public static string texClayFlowmap = "RoR2/Base/Clay/texClayFlowmap.png"; public static string ClayBossBody = "RoR2/Base/ClayBoss/ClayBossBody.png"; public static string texClayBossDiffuse = "RoR2/Base/ClayBoss/texClayBossDiffuse.png"; public static string texClayBossNormal = "RoR2/Base/ClayBoss/texClayBossNormal.png"; public static string texClayProjectileDiffuse = "RoR2/Base/ClayBoss/texClayProjectileDiffuse.png"; public static string texClayProjectileMask = "RoR2/Base/ClayBoss/texClayProjectileMask.png"; public static string ClayBruiserBody = "RoR2/Base/ClayBruiser/ClayBruiserBody.png"; public static string texClayBruiserDeathDecalMask = "RoR2/Base/ClayBruiser/texClayBruiserDeathDecalMask.png"; public static string texClayBruiserDiffuse = "RoR2/Base/ClayBruiser/texClayBruiserDiffuse.png"; public static string texClayBruiserNormal = "RoR2/Base/ClayBruiser/texClayBruiserNormal.png"; public static string texCommandoAltColossusDiffuse = "RoR2/Base/Commando/texCommandoAltColossusDiffuse.png"; public static string texCommandoAltColossusEmissive = "RoR2/Base/Commando/texCommandoAltColossusEmissive.png"; public static string texCommandoAltColossusFresnel = "RoR2/Base/Commando/texCommandoAltColossusFresnel.png"; public static string texCommandoAltColossusNormal = "RoR2/Base/Commando/texCommandoAltColossusNormal.png"; public static string texCommandoVultureDiffuse = "RoR2/Base/Commando/texCommandoVultureDiffuse.png"; public static string texCommandoVultureEmissive = "RoR2/Base/Commando/texCommandoVultureEmissive.png"; public static string texCommandoSkillIcons = "RoR2/Base/Commando/texCommandoSkillIcons.png"; public static string texCommandoColorShiftDiffuse01 = "RoR2/Base/Commando/texCommandoColorShiftDiffuse01.png"; public static string texCommandoColorShiftDiffuse02 = "RoR2/Base/Commando/texCommandoColorShiftDiffuse02.png"; public static string texCommandoColorShiftDiffuse03 = "RoR2/Base/Commando/texCommandoColorShiftDiffuse03.png"; public static string texCommandoIcon = "RoR2/Base/Commando/texCommandoIcon.png"; public static string texCommandoPaletteDiffuse = "RoR2/Base/Commando/texCommandoPaletteDiffuse.png"; public static string texCommandoPaletteDiffuseAlt = "RoR2/Base/Commando/texCommandoPaletteDiffuseAlt.psd"; public static string texCommandoPaletteEmission = "RoR2/Base/Commando/texCommandoPaletteEmission.png"; public static string texCrocoColossusDiffuse = "RoR2/Base/Croco/texCrocoColossusDiffuse.png"; public static string texCrocoColossusEmissive = "RoR2/Base/Croco/texCrocoColossusEmissive.png"; public static string texCrocoColossusFlow = "RoR2/Base/Croco/texCrocoColossusFlow.bmp"; public static string texCrocoColossusNormal = "RoR2/Base/Croco/texCrocoColossusNormal.png"; public static string texCrocoVultureDiffuse = "RoR2/Base/Croco/texCrocoVultureDiffuse.png"; public static string texCrocoVultureEmission = "RoR2/Base/Croco/texCrocoVultureEmission.png"; public static string texCrocoVultureNormal = "RoR2/Base/Croco/texCrocoVultureNormal.png"; public static string CrocoBody = "RoR2/Base/Croco/CrocoBody.png"; public static string texCrocoSkillIcons = "RoR2/Base/Croco/texCrocoSkillIcons.png"; public static string texBuffRegenBoostIcon = "RoR2/Base/Croco/texBuffRegenBoostIcon.tif"; public static string texCrocoAltDiffuse = "RoR2/Base/Croco/texCrocoAltDiffuse.png"; public static string texCrocoBiteMask = "RoR2/Base/Croco/texCrocoBiteMask.png"; public static string texCrocoColorShiftDiffuse01 = "RoR2/Base/Croco/texCrocoColorShiftDiffuse01.png"; public static string texCrocoColorShiftDiffuse02 = "RoR2/Base/Croco/texCrocoColorShiftDiffuse02.png"; public static string texCrocoColorShiftDiffuse03 = "RoR2/Base/Croco/texCrocoColorShiftDiffuse03.png"; public static string texCrocoColorShiftEmission = "RoR2/Base/Croco/texCrocoColorShiftEmission.png"; public static string texCrocoDecalMask = "RoR2/Base/Croco/texCrocoDecalMask.png"; public static string texCrocoDiffuse = "RoR2/Base/Croco/texCrocoDiffuse.png"; public static string texCrocoEmission = "RoR2/Base/Croco/texCrocoEmission.png"; public static string texCrocoNormal = "RoR2/Base/Croco/texCrocoNormal.png"; public static string texCrocoPoisonMask = "RoR2/Base/Croco/texCrocoPoisonMask.png"; public static string texCrocoSlashMask1 = "RoR2/Base/Croco/texCrocoSlashMask 1.png"; public static string texCrocoSlashMask = "RoR2/Base/Croco/texCrocoSlashMask.png"; public static string texCrocoSlashMaskSharp = "RoR2/Base/Croco/texCrocoSlashMaskSharp.png"; public static string texCrocoSpinesColorShiftDiffuse01 = "RoR2/Base/Croco/texCrocoSpinesColorShiftDiffuse01.png"; public static string texCrocoSpinesColorShiftDiffuse02 = "RoR2/Base/Croco/texCrocoSpinesColorShiftDiffuse02.png"; public static string texCrocoSpinesColorShiftDiffuse03 = "RoR2/Base/Croco/texCrocoSpinesColorShiftDiffuse03.png"; public static string texCrocoSpinesDiffuse = "RoR2/Base/Croco/texCrocoSpinesDiffuse.png"; public static string texCrocoSpinesMask = "RoR2/Base/Croco/texCrocoSpinesMask.png"; public static string texPoisonMask = "RoR2/Base/Croco/texPoisonMask.png"; public static string texPoisonNormal = "RoR2/Base/Croco/texPoisonNormal.png"; public static string texStrikeDroneIcon = "RoR2/Base/Drones/texStrikeDroneIcon.png"; public static string texBackupDroneBodyIcon = "RoR2/Base/Drones/texBackupDroneBodyIcon.png"; public static string texSkillGunnerDroneIcon = "RoR2/Base/Drones/texSkillGunnerDroneIcon.png"; public static string texDrone1Icon = "RoR2/Base/Drones/texDrone1Icon.png"; public static string texDrone2Icon = "RoR2/Base/Drones/texDrone2Icon.png"; public static string texEmergencyDroneIcon = "RoR2/Base/Drones/texEmergencyDroneIcon.png"; public static string EquipmentDroneBody = "RoR2/Base/Drones/EquipmentDroneBody.png"; public static string FlameDroneBody = "RoR2/Base/Drones/FlameDroneBody.png"; public static string MegaDroneBody = "RoR2/Base/Drones/MegaDroneBody.png"; public static string texSkillProtoDroneIcon = "RoR2/Base/Drones/texSkillProtoDroneIcon.png"; public static string texMissileDroneIcon = "RoR2/Base/Drones/texMissileDroneIcon.png"; public static string texDroneBlades = "RoR2/Base/Drones/texDroneBlades.png"; public static string texTurret1Diffuse = "RoR2/Base/Drones/texTurret1Diffuse.png"; public static string texTurret1Icon = "RoR2/Base/Drones/texTurret1Icon.png"; public static string ElectricWormBody = "RoR2/Base/ElectricWorm/ElectricWormBody.png"; public static string texEngiSkillIcons = "RoR2/Base/Engi/texEngiSkillIcons.png"; public static string texEngiIcon = "RoR2/Base/Engi/texEngiIcon.png"; public static string texUIEngiMissileLockedOn = "RoR2/Base/Engi/texUIEngiMissileLockedOn.png"; public static string texUIEngiMissilePaint = "RoR2/Base/Engi/texUIEngiMissilePaint.png"; public static string texEngiTurretDiffuse = "RoR2/Base/Engi/texEngiTurretDiffuse.png"; public static string texEngiTurretEmission = "RoR2/Base/Engi/texEngiTurretEmission.png"; public static string texEngiTurretIcon = "RoR2/Base/Engi/texEngiTurretIcon.png"; public static string texEngiFlare = "RoR2/Base/Engi/texEngiFlare.png"; public static string texEngiAltColossusDiffuse = "RoR2/Base/Engi/texEngiAltColossusDiffuse.png"; public static string texEngiAltColossusEmi = "RoR2/Base/Engi/texEngiAltColossusEmi.png"; public static string texEngiAltColossusFlow = "RoR2/Base/Engi/texEngiAltColossusFlow.png"; public static string texEngiAltColossusFresnel = "RoR2/Base/Engi/texEngiAltColossusFresnel.png"; public static string texEngiAltColossusNormal = "RoR2/Base/Engi/texEngiAltColossusNormal.png"; public static string texEngiAltColossusToolsDiffuse = "RoR2/Base/Engi/texEngiAltColossusToolsDiffuse.png"; public static string texEngiAltColossusToolsEmi = "RoR2/Base/Engi/texEngiAltColossusToolsEmi.png"; public static string texEngiVultureDiffuse = "RoR2/Base/Engi/texEngiVultureDiffuse.png"; public static string texEngiVultureEmission = "RoR2/Base/Engi/texEngiVultureEmission.png"; public static string texEngiVultureTurretDiffuse = "RoR2/Base/Engi/texEngiVultureTurretDiffuse.png"; public static string texEngiVultureTurretEmission = "RoR2/Base/Engi/texEngiVultureTurretEmission.png"; public static string texRampEngiAltVulture = "RoR2/Base/Engi/texRampEngiAltVulture.png"; public static string texEngiDiffuse = "RoR2/Base/Engi/texEngiDiffuse.png"; public static string texEngiDiffuseAlt = "RoR2/Base/Engi/texEngiDiffuseAlt.png"; public static string texEngiEmission = "RoR2/Base/Engi/texEngiEmission.png"; public static string texEngiEmissionAlt = "RoR2/Base/Engi/texEngiEmissionAlt.png"; public static string texEngiShield = "RoR2/Base/Engi/texEngiShield.png"; public static string texEngiShieldBlurred = "RoR2/Base/Engi/texEngiShieldBlurred.png"; public static string texExplosivePotDestructibleBody = "RoR2/Base/ExplosivePotDestructible/texExplosivePotDestructibleBody.png"; public static string texFusionCellBody = "RoR2/Base/FusionCellDestructible/texFusionCellBody.png"; public static string GolemBody = "RoR2/Base/Golem/GolemBody.png"; public static string texGolemNormal1 = "RoR2/Base/Golem/texGolemNormal 1.png"; public static string texNatureGolemDiffuse = "RoR2/Base/Golem/texNatureGolemDiffuse.png"; public static string texSandyGolemDiffuse = "RoR2/Base/Golem/texSandyGolemDiffuse.png"; public static string texZap1Mask = "RoR2/Base/Golem/texZap1Mask.png"; public static string texSnowyGolemDiffuse = "RoR2/Base/Golem/texSnowyGolemDiffuse.png"; public static string texGolemDiffuse = "RoR2/Base/Golem/texGolemDiffuse.png"; public static string texGolemEmission = "RoR2/Base/Golem/texGolemEmission.png"; public static string texGolemNormal = "RoR2/Base/Golem/texGolemNormal.png"; public static string GrandparentBody = "RoR2/Base/Grandparent/GrandparentBody.png"; public static string texBuffOverheat = "RoR2/Base/Grandparent/texBuffOverheat.tif"; public static string texGrandparentDetailBDiffuse = "RoR2/Base/Grandparent/texGrandparentDetailBDiffuse.png"; public static string texGrandparentDetailBNormal = "RoR2/Base/Grandparent/texGrandparentDetailBNormal.png"; public static string texGrandparentDetailGDiffuse = "RoR2/Base/Grandparent/texGrandparentDetailGDiffuse.png"; public static string texGrandparentDetailGNormal = "RoR2/Base/Grandparent/texGrandparentDetailGNormal.png"; public static string texGrandparentDiffuse = "RoR2/Base/Grandparent/texGrandparentDiffuse.png"; public static string texGrandparentEmission = "RoR2/Base/Grandparent/texGrandparentEmission.png"; public static string texGrandparentNormal = "RoR2/Base/Grandparent/texGrandparentNormal.png"; public static string texGrandparentSplat = "RoR2/Base/Grandparent/texGrandparentSplat.png"; public static string GravekeeperBody = "RoR2/Base/Gravekeeper/GravekeeperBody.png"; public static string texChainTrailMask = "RoR2/Base/Gravekeeper/texChainTrailMask.png"; public static string texChainTrailNormal = "RoR2/Base/Gravekeeper/texChainTrailNormal.png"; public static string texGravekeeperFurDiffuse = "RoR2/Base/Gravekeeper/texGravekeeperFurDiffuse.png"; public static string texGravekeeperTestDiffuse = "RoR2/Base/Gravekeeper/texGravekeeperTestDiffuse.png"; public static string GreaterWispBody = "RoR2/Base/GreaterWisp/GreaterWispBody.png"; public static string texGreaterWispCracks = "RoR2/Base/GreaterWisp/texGreaterWispCracks.png"; public static string texGreaterWispDiffuse = "RoR2/Base/GreaterWisp/texGreaterWispDiffuse.png"; public static string texHandDiffuse = "RoR2/Base/HAND/texHandDiffuse.png"; public static string texHandEmission = "RoR2/Base/HAND/texHandEmission.png"; public static string texHereticBodyDiffuse = "RoR2/Base/Heretic/texHereticBody_Diffuse.png"; public static string texHereticBodyEmission = "RoR2/Base/Heretic/texHereticBody_Emission.png"; public static string texHereticBodyNormals = "RoR2/Base/Heretic/texHereticBody_Normals.png"; public static string texHereticClothesDiffuse = "RoR2/Base/Heretic/texHereticClothes_Diffuse.png"; public static string texHereticClothesNormal = "RoR2/Base/Heretic/texHereticClothes_Normal.png"; public static string texHereticFeather = "RoR2/Base/Heretic/texHereticFeather.png"; public static string texHereticFeatherEmission = "RoR2/Base/Heretic/texHereticFeatherEmission.png"; public static string texHereticIcon = "RoR2/Base/Heretic/texHereticIcon.png"; public static string HermitCrabBody = "RoR2/Base/HermitCrab/HermitCrabBody.png"; public static string texHermitCrabDiffuse = "RoR2/Base/HermitCrab/texHermitCrabDiffuse.png"; public static string texHermitCrabNormal = "RoR2/Base/HermitCrab/texHermitCrabNormal.png"; public static string texHuntressAltColossusDiffuse = "RoR2/Base/Huntress/texHuntressAltColossusDiffuse.png"; public static string texHuntressAltColossusEmi = "RoR2/Base/Huntress/texHuntressAltColossusEmi.png"; public static string texHuntressAltColossusFresnel = "RoR2/Base/Huntress/texHuntressAltColossusFresnel.png"; public static string texHuntressAltColossusNormal = "RoR2/Base/Huntress/texHuntressAltColossusNormal.png"; public static string texRampHuntressAltColossus = "RoR2/Base/Huntress/texRampHuntressAltColossus.png"; public static string texRampHuntressAltColossusArrow = "RoR2/Base/Huntress/texRampHuntressAltColossusArrow.png"; public static string texHuntressVultureDiffuse = "RoR2/Base/Huntress/texHuntressVultureDiffuse.png"; public static string texHuntressVultureEmission = "RoR2/Base/Huntress/texHuntressVultureEmission.png"; public static string texHuntressVultureNormal = "RoR2/Base/Huntress/texHuntressVultureNormal.png"; public static string texHuntressDiffuseAlt = "RoR2/Base/Huntress/texHuntressDiffuseAlt.png"; public static string texHuntressSkillIcons = "RoR2/Base/Huntress/texHuntressSkillIcons.png"; public static string texBowDiffuse = "RoR2/Base/Huntress/texBowDiffuse.png"; public static string texBowEmission = "RoR2/Base/Huntress/texBowEmission.png"; public static string texHuntressArrowBigMask = "RoR2/Base/Huntress/texHuntressArrowBigMask.png"; public static string texHuntressArrowMask = "RoR2/Base/Huntress/texHuntressArrowMask.png"; public static string texHuntressDiffuse = "RoR2/Base/Huntress/texHuntressDiffuse.png"; public static string texHuntressEmission = "RoR2/Base/Huntress/texHuntressEmission.png"; public static string texHuntressIcon = "RoR2/Base/Huntress/texHuntressIcon.png"; public static string texHuntressNormal = "RoR2/Base/Huntress/texHuntressNormal.png"; public static string texHuntressScarfDiffuseAlt = "RoR2/Base/Huntress/texHuntressScarfDiffuseAlt.png"; public static string ImpBody = "RoR2/Base/Imp/ImpBody.png"; public static string texImpBossDiffuse = "RoR2/Base/Imp/texImpBossDiffuse.png"; public static string texImpBossEmission = "RoR2/Base/Imp/texImpBossEmission.png"; public static string texImpBossNormals = "RoR2/Base/Imp/texImpBossNormals.png"; public static string texImpDiffuse = "RoR2/Base/Imp/texImpDiffuse.png"; public static string texImpEmission = "RoR2/Base/Imp/texImpEmission.png"; public static string texImpNormal = "RoR2/Base/Imp/texImpNormal.png"; public static string texImpSwipeMask = "RoR2/Base/Imp/texImpSwipeMask.png"; public static string ImpBossBody = "RoR2/Base/ImpBoss/ImpBossBody.png"; public static string JellyfishBody = "RoR2/Base/Jellyfish/JellyfishBody.png"; public static string texJellyfishAO = "RoR2/Base/Jellyfish/texJellyfishAO.png"; public static string texJellyfishDiffuse = "RoR2/Base/Jellyfish/texJellyfishDiffuse.png"; public static string texJellyfishEmission = "RoR2/Base/Jellyfish/texJellyfishEmission.png"; public static string texJellyfishNormal = "RoR2/Base/Jellyfish/texJellyfishNormal.png"; public static string LemurianBody = "RoR2/Base/Lemurian/LemurianBody.png"; public static string texLemurianBruiserDiffuse = "RoR2/Base/Lemurian/texLemurianBruiserDiffuse.png"; public static string texLemurianBruiserEmission = "RoR2/Base/Lemurian/texLemurianBruiserEmission.png"; public static string texLemurianBruiserNormal = "RoR2/Base/Lemurian/texLemurianBruiserNormal.png"; public static string texLemurianDiffuse = "RoR2/Base/Lemurian/texLemurianDiffuse.tga"; public static string texLemurianEmission = "RoR2/Base/Lemurian/texLemurianEmission.png"; public static string texLemurianNormal = "RoR2/Base/Lemurian/texLemurianNormal.png"; public static string texLemurianSlash = "RoR2/Base/Lemurian/texLemurianSlash.png"; public static string LemurianBruiserBody = "RoR2/Base/LemurianBruiser/LemurianBruiserBody.png"; public static string texLoaderAltColossusDiffuse = "RoR2/Base/Loader/texLoaderAltColossusDiffuse.png"; public static string texLoaderAltColossusEMIMask = "RoR2/Base/Loader/texLoaderAltColossusEMIMask.png"; public static string texLoaderAltColossusFlowMask = "RoR2/Base/Loader/texLoaderAltColossusFlowMask.png"; public static string texLoaderAltColossusNormal = "RoR2/Base/Loader/texLoaderAltColossusNormal.png"; public static string texRampSolusLoader = "RoR2/Base/Loader/texRampSolusLoader.png"; public static string LoaderBody = "RoR2/Base/Loader/LoaderBody.png"; public static string texLoaderSkillIcons = "RoR2/Base/Loader/texLoaderSkillIcons.png"; public static string texLoaderPilotDiffuse = "RoR2/Base/Loader/texLoaderPilotDiffuse.png"; public static string texLoaderPilotDiffuseAlt = "RoR2/Base/Loader/texLoaderPilotDiffuseAlt.png"; public static string texLoaderPilotEmission = "RoR2/Base/Loader/texLoaderPilotEmission.png"; public static string texLoaderRopeNormal = "RoR2/Base/Loader/texLoaderRopeNormal.png"; public static string LunarExploderBody = "RoR2/Base/LunarExploder/LunarExploderBody.png"; public static string LunarGolemBody = "RoR2/Base/LunarGolem/LunarGolemBody.png"; public static string texBuffLunarShellIcon = "RoR2/Base/LunarGolem/texBuffLunarShellIcon.tif"; public static string texLunarGolemDiffuse = "RoR2/Base/LunarGolem/texLunarGolemDiffuse.png"; public static string texLunarGolemEmmission = "RoR2/Base/LunarGolem/texLunarGolemEmmission.png"; public static string texLunarGolemNormal = "RoR2/Base/LunarGolem/texLunarGolemNormal.png"; public static string LunarWispBody = "RoR2/Base/LunarWisp/LunarWispBody.png"; public static string texChargeRing = "RoR2/Base/LunarWisp/texChargeRing.png"; public static string texLunarWispDiffuse = "RoR2/Base/LunarWisp/texLunarWispDiffuse.png"; public static string texLunarWispNormal = "RoR2/Base/LunarWisp/texLunarWispNormal.png"; public static string texLunarWispTracerLead = "RoR2/Base/LunarWisp/texLunarWispTracerLead.png"; public static string texMageAltColossusDiffuse = "RoR2/Base/Mage/texMageAltColossusDiffuse.png"; public static string texMageAltColossusFlowMask = "RoR2/Base/Mage/texMageAltColossusFlowMask.bmp"; public static string texMageAltColossusFresnelMask = "RoR2/Base/Mage/texMageAltColossusFresnelMask.png"; public static string texMageAltColossusNormal = "RoR2/Base/Mage/texMageAltColossusNormal.png"; public static string texRampSolusArtificer = "RoR2/Base/Mage/texRampSolusArtificer.png"; public static string texMageMatrixMask = "RoR2/Base/Mage/texMageMatrixMask.png"; public static string texMageMatrixMaskDirectional = "RoR2/Base/Mage/texMageMatrixMaskDirectional.png"; public static string texMageMatrixTri = "RoR2/Base/Mage/texMageMatrixTri.png"; public static string texMageSkillIcons = "RoR2/Base/Mage/texMageSkillIcons.png"; public static string texMageColorShiftDiffuse01 = "RoR2/Base/Mage/texMageColorShiftDiffuse01.png"; public static string texMageColorShiftDiffuse02 = "RoR2/Base/Mage/texMageColorShiftDiffuse02.png"; public static string texMageColorShiftDiffuse03 = "RoR2/Base/Mage/texMageColorShiftDiffuse03.png"; public static string texMageColorShiftFresnelMask01 = "RoR2/Base/Mage/texMageColorShiftFresnelMask01.png"; public static string texMageColorShiftFresnelMask02 = "RoR2/Base/Mage/texMageColorShiftFresnelMask02.png"; public static string texMageDiffuse = "RoR2/Base/Mage/texMageDiffuse.png"; public static string texMageDiffuseAlt = "RoR2/Base/Mage/texMageDiffuseAlt.png"; public static string texMageIcon = "RoR2/Base/Mage/texMageIcon.png"; public static string texMageMask = "RoR2/Base/Mage/texMageMask.png"; public static string MagmaWormBody = "RoR2/Base/MagmaWorm/MagmaWormBody.png"; public static string texMagma1 = "RoR2/Base/MagmaWorm/texMagma1.png"; public static string texMagmaWormDiffuse = "RoR2/Base/MagmaWorm/texMagmaWormDiffuse.png"; public static string texMagmaWormDiffuseOff = "RoR2/Base/MagmaWorm/texMagmaWormDiffuseOff.png"; public static string texMagmaWormHeight = "RoR2/Base/MagmaWorm/texMagmaWormHeight.png"; public static string texMagmaWormHeight2 = "RoR2/Base/MagmaWorm/texMagmaWormHeight2.png"; public static string texMagmaWormNormal = "RoR2/Base/MagmaWorm/texMagmaWormNormal.png"; public static string texMagmaWormSplat = "RoR2/Base/MagmaWorm/texMagmaWormSplat.png"; public static string texMercAltColossusDiffuse = "RoR2/Base/Merc/texMercAltColossusDiffuse.png"; public static string texMercAltColossusEmiMask = "RoR2/Base/Merc/texMercAltColossusEmiMask.png"; public static string texMercAltColossusGoldMask = "RoR2/Base/Merc/texMercAltColossusGoldMask.png"; public static string texMercAltColossusNormal = "RoR2/Base/Merc/texMercAltColossusNormal.png"; public static string texMercAltPrisonerDiffuse = "RoR2/Base/Merc/texMercAltPrisonerDiffuse.tga"; public static string texMercAltPrisonerEyeMask = "RoR2/Base/Merc/texMercAltPrisonerEyeMask.png"; public static string texMercAltPrisonerFireMask = "RoR2/Base/Merc/texMercAltPrisonerFireMask.png"; public static string texMercAltPrisonerHeadMask = "RoR2/Base/Merc/texMercAltPrisonerHeadMask.png"; public static string texMercAltPrisonerIcon = "RoR2/Base/Merc/texMercAltPrisonerIcon.png"; public static string texMercAltPrisonerMetalDiffuse = "RoR2/Base/Merc/texMercAltPrisonerMetalDiffuse.tga"; public static string texMercAltPrisonerMetalFlowMask = "RoR2/Base/Merc/texMercAltPrisonerMetalFlowMask.png"; public static string texMercAltPrisonerMetalNormal = "RoR2/Base/Merc/texMercAltPrisonerMetalNormal.png"; public static string texMercAltPrisonerNormal = "RoR2/Base/Merc/texMercAltPrisonerNormal.png"; public static string texRampMercPrisonerHead = "RoR2/Base/Merc/texRampMercPrisonerHead.png"; public static string texRampMercPrisonerMetalFlow = "RoR2/Base/Merc/texRampMercPrisonerMetalFlow.png"; public static string texMercSwordVultureDiffuse = "RoR2/Base/Merc/texMercSwordVultureDiffuse.png"; public static string texMercSwordVultureEmissive = "RoR2/Base/Merc/texMercSwordVultureEmissive.png"; public static string texMercVultureDiffuse = "RoR2/Base/Merc/texMercVultureDiffuse.png"; public static string texMercVultureEmissive = "RoR2/Base/Merc/texMercVultureEmissive.png"; public static string texMercVultureNormal = "RoR2/Base/Merc/texMercVultureNormal.png"; public static string texVultureSingleFeatherDiffuse3 = "RoR2/Base/Merc/texVultureSingleFeatherDiffuse3.png"; public static string texMercSkillIcons = "RoR2/Base/Merc/texMercSkillIcons.png"; public static string texBuffMercExposeIcon = "RoR2/Base/Merc/texBuffMercExposeIcon.tif"; public static string texMercAltDiffuse = "RoR2/Base/Merc/texMercAltDiffuse.png"; public static string texMercAltEmission = "RoR2/Base/Merc/texMercAltEmission.png"; public static string texMercDiffuse = "RoR2/Base/Merc/texMercDiffuse.png"; public static string texMercExposedMask = "RoR2/Base/Merc/texMercExposedMask.png"; public static string texMercIcon = "RoR2/Base/Merc/texMercIcon.png"; public static string texMercNormal = "RoR2/Base/Merc/texMercNormal.png"; public static string texMercSwipeMask = "RoR2/Base/Merc/texMercSwipeMask.png"; public static string texMercSwordDiffuse = "RoR2/Base/Merc/texMercSwordDiffuse.png"; public static string texMercSwordMask = "RoR2/Base/Merc/texMercSwordMask.png"; public static string texMercTestingDiffuse = "RoR2/Base/Merc/texMercTestingDiffuse.png"; public static string MiniMushroomBody = "RoR2/Base/MiniMushroom/MiniMushroomBody.png"; public static string texMiniMushroomDiffuse = "RoR2/Base/MiniMushroom/texMiniMushroomDiffuse.png"; public static string texMiniMushroomEmission = "RoR2/Base/MiniMushroom/texMiniMushroomEmission.png"; public static string texMiniMushroomNormal = "RoR2/Base/MiniMushroom/texMiniMushroomNormal.png"; public static string texMushDecalMask = "RoR2/Base/MiniMushroom/texMushDecalMask.png"; public static string texNullifierAllyDiffuse = "RoR2/Base/Nullifier/texNullifierAllyDiffuse.png"; public static string NullifierAllyBody = "RoR2/Base/Nullifier/NullifierAllyBody.png"; public static string NullifierBody = "RoR2/Base/Nullifier/NullifierBody.png"; public static string texBuffNullifiedIcon = "RoR2/Base/Nullifier/texBuffNullifiedIcon.tif"; public static string texBuffNullifyStackIcon = "RoR2/Base/Nullifier/texBuffNullifyStackIcon.tif"; public static string texNullifierDiffuse = "RoR2/Base/Nullifier/texNullifierDiffuse.png"; public static string texNullifierDiffuse2 = "RoR2/Base/Nullifier/texNullifierDiffuse2.png"; public static string texNullifierEmission = "RoR2/Base/Nullifier/texNullifierEmission.png"; public static string texNullifierNormal = "RoR2/Base/Nullifier/texNullifierNormal.png"; public static string texNullifierSky = "RoR2/Base/Nullifier/texNullifierSky.png"; public static string texNullifierSky2 = "RoR2/Base/Nullifier/texNullifierSky2.png"; public static string texNullifierSky3Alpha = "RoR2/Base/Nullifier/texNullifierSky3Alpha.png"; public static string texNullifierSkySparse = "RoR2/Base/Nullifier/texNullifierSkySparse.png"; public static string ParentBody = "RoR2/Base/Parent/ParentBody.png"; public static string texParentDiffuse = "RoR2/Base/Parent/texParentDiffuse.png"; public static string texParentEmission = "RoR2/Base/Parent/texParentEmission.png"; public static string texParentEyeMask = "RoR2/Base/Parent/texParentEyeMask.png"; public static string texParentNormal = "RoR2/Base/Parent/texParentNormal.png"; public static string RoboBallBossBody = "RoR2/Base/RoboBallBoss/RoboBallBossBody.png"; public static string RoboBallMiniBody = "RoR2/Base/RoboBallBoss/RoboBallMiniBody.png"; public static string SuperRoboBallBossBody = "RoR2/Base/RoboBallBoss/SuperRoboBallBossBody.png"; public static string texBuffEngiShieldIcon = "RoR2/Base/RoboBallBoss/texBuffEngiShieldIcon.tif"; public static string ScavBody = "RoR2/Base/Scav/ScavBody.png"; public static string texScavSackProjectile = "RoR2/Base/Scav/texScavSackProjectile.png"; public static string texScavBackpackDiffuse = "RoR2/Base/Scav/texScavBackpackDiffuse.png"; public static string texScavBackpackNormal = "RoR2/Base/Scav/texScavBackpackNormal.png"; public static string texScavDiffuse = "RoR2/Base/Scav/texScavDiffuse.png"; public static string texScavEyeDiffuse = "RoR2/Base/Scav/texScavEyeDiffuse.png"; public static string texScavEyeMask = "RoR2/Base/Scav/texScavEyeMask.png"; public static string texScavEyeNormal = "RoR2/Base/Scav/texScavEyeNormal.png"; public static string texScavLunarDiffuse = "RoR2/Base/Scav/texScavLunarDiffuse.png"; public static string texScavNormal = "RoR2/Base/Scav/texScavNormal.png"; public static string ScavLunarBody = "RoR2/Base/ScavLunar/ScavLunarBody.png"; public static string ShopkeeperBody = "RoR2/Base/Shopkeeper/ShopkeeperBody.png"; public static string texNewtDiffuse = "RoR2/Base/Shopkeeper/texNewtDiffuse.png"; public static string texNewtJewlery = "RoR2/Base/Shopkeeper/texNewtJewlery.png"; public static string texNewtNormal = "RoR2/Base/Shopkeeper/texNewtNormal.png"; public static string texNewtShopkeeperArmMap = "RoR2/Base/Shopkeeper/texNewtShopkeeperArmMap.png"; public static string texNewtTattooMap = "RoR2/Base/Shopkeeper/texNewtTattooMap.png"; public static string texTitanAO = "RoR2/Base/Titan/texTitanAO.png"; public static string texTitanDiffuse = "RoR2/Base/Titan/texTitanDiffuse.png"; public static string texTitanNormals = "RoR2/Base/Titan/texTitanNormals.png"; public static string TitanBody = "RoR2/Base/Titan/TitanBody.png"; public static string TitanGoldBody = "RoR2/Base/Titan/TitanGoldBody.png"; public static string texToolbotAltColossus = "RoR2/Base/Toolbot/texToolbotAltColossus.png"; public static string texToolbotAltColossusFresnel = "RoR2/Base/Toolbot/texToolbotAltColossusFresnel.png"; public static string texTrimSheetToolbotVulture = "RoR2/Base/Toolbot/texTrimSheetToolbotVulture.png"; public static string texTrimSheetToolbotVultureEmissive = "RoR2/Base/Toolbot/texTrimSheetToolbotVultureEmissive.png"; public static string texToolbotSkillIcons = "RoR2/Base/Toolbot/texToolbotSkillIcons.png"; public static string texToolbotIcon = "RoR2/Base/Toolbot/texToolbotIcon.png"; public static string texTrimSheetConstruction2 = "RoR2/Base/Toolbot/texTrimSheetConstruction2.png"; public static string texTrimSheetConstructionAlt = "RoR2/Base/Toolbot/texTrimSheetConstructionAlt.png"; public static string texTrimSheetWoodDiffuse = "RoR2/Base/Toolbot/texTrimSheetWoodDiffuse.png"; public static string texRebarDiffuse = "RoR2/Base/Toolbot/texRebarDiffuse.png"; public static string texRebarNormal = "RoR2/Base/Toolbot/texRebarNormal.png"; public static string texRoboChunksDiffuse = "RoR2/Base/Toolbot/texRoboChunksDiffuse.png"; public static string texRoboChunksNormal = "RoR2/Base/Toolbot/texRoboChunksNormal.png"; public static string texToolbotBlades1 = "RoR2/Base/Toolbot/texToolbotBlades 1.png"; public static string texToolbotBlades = "RoR2/Base/Toolbot/texToolbotBlades.png"; public static string texToolbotNailMask = "RoR2/Base/Toolbot/texToolbotNailMask.png"; public static string texTreebotColossusDiffuse = "RoR2/Base/Treebot/texTreebotColossusDiffuse.png"; public static string texTreebotColossusEmissive = "RoR2/Base/Treebot/texTreebotColossusEmissive.png"; public static string texTreebotColossusFresnel = "RoR2/Base/Treebot/texTreebotColossusFresnel.png"; public static string texTreebotColossusNormal = "RoR2/Base/Treebot/texTreebotColossusNormal.png"; public static string texRampSolusTreebot = "RoR2/Base/Treebot/texRampSolusTreebot.png"; public static string texTreebotSkillIcons = "RoR2/Base/Treebot/texTreebotSkillIcons.png"; public static string texFSTreeBarkDiffuse = "RoR2/Base/Treebot/texFSTreeBarkDiffuse.tga"; public static string treebottreeAtlas = "RoR2/Base/Treebot/treebot tree_Atlas.tga"; public static string texBuffEntangleIcon = "RoR2/Base/Treebot/texBuffEntangleIcon.tif"; public static string texBuffFruiting = "RoR2/Base/Treebot/texBuffFruiting.tif"; public static string texTreebotFlowerDiffuse = "RoR2/Base/Treebot/texTreebotFlowerDiffuse.png"; public static string texTreebotFlowerDiffuse2 = "RoR2/Base/Treebot/texTreebotFlowerDiffuse2.png"; public static string texTreebotFlowerDiffuseAlt = "RoR2/Base/Treebot/texTreebotFlowerDiffuseAlt.png"; public static string texTreebotFlowerNormal = "RoR2/Base/Treebot/texTreebotFlowerNormal.png"; public static string texTreebotLeafAltDiffuse = "RoR2/Base/Treebot/texTreebotLeafAltDiffuse.png"; public static string texTreebotLeafAltNormal = "RoR2/Base/Treebot/texTreebotLeafAltNormal.png"; public static string texTreebotLeafDiffuse = "RoR2/Base/Treebot/texTreebotLeafDiffuse.png"; public static string texTreebotLeafDiffuse2 = "RoR2/Base/Treebot/texTreebotLeafDiffuse2.png"; public static string texTreebotLeafNormal = "RoR2/Base/Treebot/texTreebotLeafNormal.png"; public static string texTreebotTreeBarkDiffuse = "RoR2/Base/Treebot/texTreebotTreeBarkDiffuse.tga"; public static string TreebotBody = "RoR2/Base/Treebot/TreebotBody.png"; public static string texTreebotRoot1Mask = "RoR2/Base/Treebot/texTreebotRoot1Mask.png"; public static string texTreebotRoot1Normal = "RoR2/Base/Treebot/texTreebotRoot1Normal.png"; public static string texTreebotRoot2Mask = "RoR2/Base/Treebot/texTreebotRoot2Mask.png"; public static string texTreebotRoot2Normal = "RoR2/Base/Treebot/texTreebotRoot2Normal.png"; public static string texTreebotRoot3Mask = "RoR2/Base/Treebot/texTreebotRoot3Mask.png"; public static string texTreebotRoot3Normal = "RoR2/Base/Treebot/texTreebotRoot3Normal.png"; public static string texBuffWeakIcon = "RoR2/Base/Treebot/texBuffWeakIcon.tif"; public static string texVagrantDiffuse = "RoR2/Base/Vagrant/texVagrantDiffuse.png"; public static string texVagrantEmission = "RoR2/Base/Vagrant/texVagrantEmission.png"; public static string texVagrantNormal = "RoR2/Base/Vagrant/texVagrantNormal.png"; public static string texVagrantTentacleMask = "RoR2/Base/Vagrant/texVagrantTentacleMask.png"; public static string VagrantBody = "RoR2/Base/Vagrant/VagrantBody.png"; public static string texVultureAO = "RoR2/Base/Vulture/texVultureAO.png"; public static string texVultureDiffuse = "RoR2/Base/Vulture/texVultureDiffuse.png"; public static string texVultureNormal = "RoR2/Base/Vulture/texVultureNormal.png"; public static string texVultureSingleFeatherDiffuse = "RoR2/Base/Vulture/texVultureSingleFeatherDiffuse.png"; public static string texVultureSingleFeatherDiffuse2 = "RoR2/Base/Vulture/texVultureSingleFeatherDiffuse2.png"; public static string texVultureSingleFeatherDiffuse35 = "RoR2/Base/Vulture/texVultureSingleFeatherDiffuse3.png"; public static string texVultureSingleFeatherDiffuse4 = "RoR2/Base/Vulture/texVultureSingleFeatherDiffuse4.png"; public static string texVultureSingleFeatherDiffuse5 = "RoR2/Base/Vulture/texVultureSingleFeatherDiffuse5.png"; public static string texVultureSingleFeatherNormal = "RoR2/Base/Vulture/texVultureSingleFeatherNormal.png"; public static string texVultureTestDiffuse1 = "RoR2/Base/Vulture/texVultureTestDiffuse 1.png"; public static string texVultureTestDiffuse2 = "RoR2/Base/Vulture/texVultureTestDiffuse 2.png"; public static string texVultureTestDiffuse = "RoR2/Base/Vulture/texVultureTestDiffuse.png"; public static string texVultureTileFeatherDiffuse = "RoR2/Base/Vulture/texVultureTileFeatherDiffuse.png"; public static string texVultureTileFeatherNormal = "RoR2/Base/Vulture/texVultureTileFeatherNormal.png"; public static string VultureBody = "RoR2/Base/Vulture/VultureBody.png"; public static string texWisp1AO = "RoR2/Base/Wisp/texWisp1AO.png"; public static string WispBody = "RoR2/Base/Wisp/WispBody.png"; public static string texBuffBleedingIcon = "RoR2/Base/Common/texBuffBleedingIcon.tif"; public static string texBuffCloakIcon = "RoR2/Base/Common/texBuffCloakIcon.tif"; public static string texBuffCrippleIcon = "RoR2/Base/Common/texBuffCrippleIcon.tif"; public static string texBuffOnFireIcon = "RoR2/Base/Common/texBuffOnFireIcon.tif"; public static string texBuffSlow50Icon = "RoR2/Base/Common/texBuffSlow50Icon.tif"; public static string texBuffGenericShield = "RoR2/Base/Common/texBuffGenericShield.tif"; public static string texMovespeedBuffIcon = "RoR2/Base/Common/texMovespeedBuffIcon.tif"; public static string texCloudCaustic1 = "RoR2/Base/Common/texCloudCaustic1.jpg"; public static string texCloudCaustic2 = "RoR2/Base/Common/texCloudCaustic2.png"; public static string texCloudCaustic3 = "RoR2/Base/Common/texCloudCaustic3.jpg"; public static string texCloudGradient = "RoR2/Base/Common/texCloudGradient.png"; public static string texCloudVertexMovement = "RoR2/Base/Common/texCloudVertexMovement.tga"; public static string texCloudWaterFoam1 = "RoR2/Base/Common/texCloudWaterFoam1.jpg"; public static string texCloudWaterFoam2 = "RoR2/Base/Common/texCloudWaterFoam2.psd"; public static string texCloudWaterFoam3 = "RoR2/Base/Common/texCloudWaterFoam3.tga"; public static string texBehemothRamp = "RoR2/Base/Common/ColorRamps/texBehemothRamp.png"; public static string texClayGooRamp = "RoR2/Base/Common/ColorRamps/texClayGooRamp.png"; public static string texClayGooSiphonRamp = "RoR2/Base/Common/ColorRamps/texClayGooSiphonRamp.png"; public static string texDustRamp = "RoR2/Base/Common/ColorRamps/texDustRamp.png"; public static string texFogRamp1 = "RoR2/Base/Common/ColorRamps/texFogRamp1.png"; public static string texFogRampPurple = "RoR2/Base/Common/ColorRamps/texFogRampPurple.png"; public static string texFogRampTest = "RoR2/Base/Common/ColorRamps/texFogRampTest.png"; public static string texHippoRezRamp = "RoR2/Base/Common/ColorRamps/texHippoRezRamp.png"; public static string texLunarWispTracer1 = "RoR2/Base/Common/ColorRamps/texLunarWispTracer 1.png"; public static string texMagmaFireball = "RoR2/Base/Common/ColorRamps/texMagmaFireball.png"; public static string texRampAncientWisp = "RoR2/Base/Common/ColorRamps/texRampAncientWisp.png"; public static string texRampAntler = "RoR2/Base/Common/ColorRamps/texRampAntler.png"; public static string texRampArcaneCircle = "RoR2/Base/Common/ColorRamps/texRampArcaneCircle.png"; public static string texRampArchWisp = "RoR2/Base/Common/ColorRamps/texRampArchWisp.png"; public static string texRampAreaIndicator = "RoR2/Base/Common/ColorRamps/texRampAreaIndicator.png"; public static string texRampArmorReduction = "RoR2/Base/Common/ColorRamps/texRampArmorReduction.png"; public static string texRampArtifactShellSoft = "RoR2/Base/Common/ColorRamps/texRampArtifactShellSoft.png"; public static string texRampBandit = "RoR2/Base/Common/ColorRamps/texRampBandit.png"; public static string texRampBanditAlt = "RoR2/Base/Common/ColorRamps/texRampBanditAlt.png"; public static string texRampBanditSlash = "RoR2/Base/Common/ColorRamps/texRampBanditSlash.png"; public static string texRampBanditSmokescreen = "RoR2/Base/Common/ColorRamps/texRampBanditSmokescreen.png"; public static string texRampBanditSplatter = "RoR2/Base/Common/ColorRamps/texRampBanditSplatter.png"; public static string texRampBanditSplatterAlt = "RoR2/Base/Common/ColorRamps/texRampBanditSplatterAlt.png"; public static string texRampBeamLightning = "RoR2/Base/Common/ColorRamps/texRampBeamLightning.png"; public static string texRampBeamSphere = "RoR2/Base/Common/ColorRamps/texRampBeamSphere.png"; public static string texRampBeetleBreath = "RoR2/Base/Common/ColorRamps/texRampBeetleBreath.png"; public static string texRampBeetleQueen = "RoR2/Base/Common/ColorRamps/texRampBeetleQueen.png"; public static string texRampBeetleQueen2 = "RoR2/Base/Common/ColorRamps/texRampBeetleQueen2.png"; public static string texRampBell = "RoR2/Base/Common/ColorRamps/texRampBell.png"; public static string texRampBirdHeart = "RoR2/Base/Common/ColorRamps/texRampBirdHeart.png"; public static string texRampBombOrb = "RoR2/Base/Common/ColorRamps/texRampBombOrb.png"; public static string texRampBrotherPillar = "RoR2/Base/Common/ColorRamps/texRampBrotherPillar.png"; public static string texRampCaptainAirstrike = "RoR2/Base/Common/ColorRamps/texRampCaptainAirstrike.png"; public static string texRampCaptainBodyArmor = "RoR2/Base/Common/ColorRamps/texRampCaptainBodyArmor.png"; public static string texRampCaptainDefenseMatrix = "RoR2/Base/Common/ColorRamps/texRampCaptainDefenseMatrix.png"; public static string texRampCaptainDefenseMatrixSoft = "RoR2/Base/Common/ColorRamps/texRampCaptainDefenseMatrixSoft.png"; public static string texRampClaySwordSwing = "RoR2/Base/Common/ColorRamps/texRampClaySwordSwing.png"; public static string texRampCloth = "RoR2/Base/Common/ColorRamps/texRampCloth.jpg"; public static string texRampCrippleWard = "RoR2/Base/Common/ColorRamps/texRampCrippleWard.png"; public static string texRampCrocoDisease = "RoR2/Base/Common/ColorRamps/texRampCrocoDisease.png"; public static string texRampCrocoDiseaseDark = "RoR2/Base/Common/ColorRamps/texRampCrocoDiseaseDark.png"; public static string texRampCrowbar = "RoR2/Base/Common/ColorRamps/texRampCrowbar.png"; public static string texRampDeathmark = "RoR2/Base/Common/ColorRamps/texRampDeathmark.png"; public static string texRampDeathProjectile = "RoR2/Base/Common/ColorRamps/texRampDeathProjectile.png"; public static string texRampDefault = "RoR2/Base/Common/ColorRamps/texRampDefault.png"; public static string texRampDefaultNoTransparency = "RoR2/Base/Common/ColorRamps/texRampDefaultNoTransparency.png"; public static string texRampDiamondLaser = "RoR2/Base/Common/ColorRamps/texRampDiamondLaser.png"; public static string texRampDroneFire = "RoR2/Base/Common/ColorRamps/texRampDroneFire.png"; public static string texRampDroneFire2 = "RoR2/Base/Common/ColorRamps/texRampDroneFire2.png"; public static string texRampEliteLunar = "RoR2/Base/Common/ColorRamps/texRampEliteLunar.png"; public static string texRampElitePoison = "RoR2/Base/Common/ColorRamps/texRampElitePoison.png"; public static string texRampElitePoison2 = "RoR2/Base/Common/ColorRamps/texRampElitePoison2.png"; public static string texRampEngi = "RoR2/Base/Common/ColorRamps/texRampEngi.png"; public static string texRampEngiOffset = "RoR2/Base/Common/ColorRamps/texRampEngiOffset.png"; public static string texRampFallboots = "RoR2/Base/Common/ColorRamps/texRampFallboots.png"; public static string texRampFlamingSmoke = "RoR2/Base/Common/ColorRamps/texRampFlamingSmoke.png"; public static string texRampFogBlackbeach = "RoR2/Base/Common/ColorRamps/texRampFogBlackbeach.png"; public static string texRampFogDebug = "RoR2/Base/Common/ColorRamps/texRampFogDebug.png"; public static string texRampFogStage1 = "RoR2/Base/Common/ColorRamps/texRampFogStage1.png"; public static string texRampFogStage2 = "RoR2/Base/Common/ColorRamps/texRampFogStage2.psd"; public static string texRampGalaxy = "RoR2/Base/Common/ColorRamps/texRampGalaxy.png"; public static string texRampGasoline = "RoR2/Base/Common/ColorRamps/texRampGasoline.png"; public static string texRampGateway = "RoR2/Base/Common/ColorRamps/texRampGateway.png"; public static string texRampGenericBluetint = "RoR2/Base/Common/ColorRamps/texRampGenericBluetint.png"; public static string texRampGenericDust = "RoR2/Base/Common/ColorRamps/texRampGenericDust.png"; public static string texRampGenericFire = "RoR2/Base/Common/ColorRamps/texRampGenericFire.png"; public static string texRampGhost = "RoR2/Base/Common/ColorRamps/texRampGhost.png"; public static string texRampGolem = "RoR2/Base/Common/ColorRamps/texRampGolem.png"; public static string texRampGolemElectric = "RoR2/Base/Common/ColorRamps/texRampGolemElectric.png"; public static string texRampGrandparent = "RoR2/Base/Common/ColorRamps/texRampGrandparent.png"; public static string texRampGreaterWisp = "RoR2/Base/Common/ColorRamps/texRampGreaterWisp.png"; public static string texRampGrey = "RoR2/Base/Common/ColorRamps/texRampGrey.png"; public static string texRampHealing = "RoR2/Base/Common/ColorRamps/texRampHealing.png"; public static string texRampHealingAura = "RoR2/Base/Common/ColorRamps/texRampHealingAura.png"; public static string texRampHealingInverted = "RoR2/Base/Common/ColorRamps/texRampHealingInverted.png"; public static string texRampHealingMedkit = "RoR2/Base/Common/ColorRamps/texRampHealingMedkit.png"; public static string texRampHealingVariant = "RoR2/Base/Common/ColorRamps/texRampHealingVariant.png"; public static string texRampHelfire = "RoR2/Base/Common/ColorRamps/texRampHelfire.png"; public static string texRampHook = "RoR2/Base/Common/ColorRamps/texRampHook.png"; public static string texRampHuntress = "RoR2/Base/Common/ColorRamps/texRampHuntress.png"; public static string texRampHuntressSoft = "RoR2/Base/Common/ColorRamps/texRampHuntressSoft.png"; public static string texRampHuntressSoft2 = "RoR2/Base/Common/ColorRamps/texRampHuntressSoft2.png"; public static string texRampHuntressSoftCrit = "RoR2/Base/Common/ColorRamps/texRampHuntressSoftCrit.png"; public static string texRampIce = "RoR2/Base/Common/ColorRamps/texRampIce.png"; public static string texRampImp = "RoR2/Base/Common/ColorRamps/texRampImp.png"; public static string texRampImp2 = "RoR2/Base/Common/ColorRamps/texRampImp2.png"; public static string texRampInfusion = "RoR2/Base/Common/ColorRamps/texRampInfusion.png"; public static string texRampIridescent = "RoR2/Base/Common/ColorRamps/texRampIridescent.png"; public static string texRampItemInfection = "RoR2/Base/Common/ColorRamps/texRampItemInfection.png"; public static string texRampItemSteal = "RoR2/Base/Common/ColorRamps/texRampItemSteal.png"; public static string texRampJellyfish = "RoR2/Base/Common/ColorRamps/texRampJellyfish.jpg"; public static string texRampJellyLightning = "RoR2/Base/Common/ColorRamps/texRampJellyLightning.png"; public static string texRampLaserTurbine = "RoR2/Base/Common/ColorRamps/texRampLaserTurbine.png"; public static string texRampLightning = "RoR2/Base/Common/ColorRamps/texRampLightning.png"; public static string texRampLightning210 = "RoR2/Base/Common/ColorRamps/texRampLightning2.png"; public static string texRampLightningYellow = "RoR2/Base/Common/ColorRamps/texRampLightningYellow.png"; public static string texRampLightningYellowOffset = "RoR2/Base/Common/ColorRamps/texRampLightningYellowOffset.png"; public static string texRampLoaderSwing = "RoR2/Base/Common/ColorRamps/texRampLoaderSwing.png"; public static string texRampLunarElectric = "RoR2/Base/Common/ColorRamps/texRampLunarElectric.png"; public static string texRampLunarGolemDust = "RoR2/Base/Common/ColorRamps/texRampLunarGolemDust.png"; public static string texRampLunarInfection = "RoR2/Base/Common/ColorRamps/texRampLunarInfection.png"; public static string texRampLunarSmoke = "RoR2/Base/Common/ColorRamps/texRampLunarSmoke.png"; public static string texRampLunarWardDecal = "RoR2/Base/Common/ColorRamps/texRampLunarWardDecal.png"; public static string texRampLunarWispFire = "RoR2/Base/Common/ColorRamps/texRampLunarWispFire.png"; public static string texRampMageFire = "RoR2/Base/Common/ColorRamps/texRampMageFire.png"; public static string texRampMagmaWorm = "RoR2/Base/Common/ColorRamps/texRampMagmaWorm.png"; public static string texRampMagmaWormDecal = "RoR2/Base/Common/ColorRamps/texRampMagmaWormDecal.png"; public static string texRampMaulingRockHit = "RoR2/Base/Common/ColorRamps/texRampMaulingRockHit.png"; public static string texRampMenuPlanetAtmosphere = "RoR2/Base/Common/ColorRamps/texRampMenuPlanetAtmosphere.png"; public static string texRampMercDust = "RoR2/Base/Common/ColorRamps/texRampMercDust.png"; public static string texRampMetal = "RoR2/Base/Common/ColorRamps/texRampMetal.jpg"; public static string texRampMissileTrail = "RoR2/Base/Common/ColorRamps/texRampMissileTrail.png"; public static string texRampMoonAbyss = "RoR2/Base/Common/ColorRamps/texRampMoonAbyss.png"; public static string texRampMoonArenaWall = "RoR2/Base/Common/ColorRamps/texRampMoonArenaWall.png"; public static string texRampMoonAtmosphere = "RoR2/Base/Common/ColorRamps/texRampMoonAtmosphere.png"; public static string texRampMoonLighting = "RoR2/Base/Common/ColorRamps/texRampMoonLighting.png"; public static string texRampMoonPostBoss = "RoR2/Base/Common/ColorRamps/texRampMoonPostBoss.png"; public static string texRampMoonPreBoss = "RoR2/Base/Common/ColorRamps/texRampMoonPreBoss.png"; public static string texRampMysterySpacePortal = "RoR2/Base/Common/ColorRamps/texRampMysterySpacePortal.png"; public static string texRampNearbyDamageBonus = "RoR2/Base/Common/ColorRamps/texRampNearbyDamageBonus.png"; public static string texRampNullifier = "RoR2/Base/Common/ColorRamps/texRampNullifier.png"; public static string texRampNullifierOffset = "RoR2/Base/Common/ColorRamps/texRampNullifierOffset.png"; public static string texRampNullifierSmooth = "RoR2/Base/Common/ColorRamps/texRampNullifierSmooth.png"; public static string texRampOrbitalLaser = "RoR2/Base/Common/ColorRamps/texRampOrbitalLaser.png"; public static string texRampParent = "RoR2/Base/Common/ColorRamps/texRampParent.png"; public static string texRampParentEyes = "RoR2/Base/Common/ColorRamps/texRampParentEyes.png"; public static string texRampParentFire = "RoR2/Base/Common/ColorRamps/texRampParentFire.png"; public static string texRampParentTeleport = "RoR2/Base/Common/ColorRamps/texRampParentTeleport.png"; public static string texRampParentTeleportIndicator = "RoR2/Base/Common/ColorRamps/texRampParentTeleportIndicator.png"; public static string texRampPlanetAtmosphere = "RoR2/Base/Common/ColorRamps/texRampPlanetAtmosphere.png"; public static string texRampPlanetAtmosphere2 = "RoR2/Base/Common/ColorRamps/texRampPlanetAtmosphere2.png"; public static string texRampPoison = "RoR2/Base/Common/ColorRamps/texRampPoison.png"; public static string texRampPotMobile = "RoR2/Base/Common/ColorRamps/texRampPotMobile.png"; public static string texRampRedToGreen = "RoR2/Base/Common/ColorRamps/texRampRedToGreen.png"; public static string texRampRedToWhite = "RoR2/Base/Common/ColorRamps/texRampRedToWhite.png"; public static string texRampRedToYellow = "RoR2/Base/Common/ColorRamps/texRampRedToYellow.png"; public static string texRampReverse = "RoR2/Base/Common/ColorRamps/texRampReverse.png"; public static string texRampRJMushroom = "RoR2/Base/Common/ColorRamps/texRampRJMushroom.png"; public static string texRampRoboBall = "RoR2/Base/Common/ColorRamps/texRampRoboBall.png"; public static string texRampRoboBallSmoothed = "RoR2/Base/Common/ColorRamps/texRampRoboBallSmoothed.png"; public static string texRampShadowClone = "RoR2/Base/Common/ColorRamps/texRampShadowClone.png"; public static string texRampShadowcloneAura = "RoR2/Base/Common/ColorRamps/texRampShadowcloneAura.png"; public static string texRampShield = "RoR2/Base/Common/ColorRamps/texRampShield.png"; public static string texRampShinymetal = "RoR2/Base/Common/ColorRamps/texRampShinymetal.jpg"; public static string texRampSkillCooldown = "RoR2/Base/Common/ColorRamps/texRampSkillCooldown.png"; public static string texRampSlowDownTime = "RoR2/Base/Common/ColorRamps/texRampSlowDownTime.png"; public static string texRampSlowDownTime2 = "RoR2/Base/Common/ColorRamps/texRampSlowDownTime2.png"; public static string texRampSporeGrenade = "RoR2/Base/Common/ColorRamps/texRampSporeGrenade.png"; public static string texRampSporeGrenadeGas = "RoR2/Base/Common/ColorRamps/texRampSporeGrenadeGas.png"; public static string texRampSquidInk = "RoR2/Base/Common/ColorRamps/texRampSquidInk.png"; public static string texRampStealthkit = "RoR2/Base/Common/ColorRamps/texRampStealthkit.png"; public static string texRampStealthRevealed = "RoR2/Base/Common/ColorRamps/texRampStealthRevealed.png"; public static string texRampSulfurBeetles = "RoR2/Base/Common/ColorRamps/texRampSulfurBeetles.png"; public static string texRampTeleporter = "RoR2/Base/Common/ColorRamps/texRampTeleporter.png"; public static string texRampTeleporterLunar = "RoR2/Base/Common/ColorRamps/texRampTeleporterLunar.png"; public static string texRampTeleporterPrint = "RoR2/Base/Common/ColorRamps/texRampTeleporterPrint.png"; public static string texRampTeleporterSoft = "RoR2/Base/Common/ColorRamps/texRampTeleporterSoft.png"; public static string texRampTeslaCoil = "RoR2/Base/Common/ColorRamps/texRampTeslaCoil.png"; public static string texRampThermite = "RoR2/Base/Common/ColorRamps/texRampThermite.png"; public static string texRampThermite2 = "RoR2/Base/Common/ColorRamps/texRampThermite2.png"; public static string texRampTimeCrystal = "RoR2/Base/Common/ColorRamps/texRampTimeCrystal.png"; public static string texRampTimeCrystalReverse = "RoR2/Base/Common/ColorRamps/texRampTimeCrystalReverse.png"; public static string texRampTreebot = "RoR2/Base/Common/ColorRamps/texRampTreebot.png"; public static string texRampTritone = "RoR2/Base/Common/ColorRamps/texRampTritone.png"; public static string texRampTritone2 = "RoR2/Base/Common/ColorRamps/texRampTritone2.png"; public static string texRampTritone3 = "RoR2/Base/Common/ColorRamps/texRampTritone3.png"; public static string texRampTritoneReversed = "RoR2/Base/Common/ColorRamps/texRampTritoneReversed.png"; public static string texRampTritoneSmoothed = "RoR2/Base/Common/ColorRamps/texRampTritoneSmoothed.png"; public static string texRampTwotone = "RoR2/Base/Common/ColorRamps/texRampTwotone.jpg"; public static string texRampTwotoneBlack = "RoR2/Base/Common/ColorRamps/texRampTwotoneBlack.jpg"; public static string texRampTwotoneEnvironment = "RoR2/Base/Common/ColorRamps/texRampTwotoneEnvironment.jpg"; public static string texRampTwotoneWhite = "RoR2/Base/Common/ColorRamps/texRampTwotoneWhite.png"; public static string texRampVoidcamp = "RoR2/Base/Common/ColorRamps/texRampVoidcamp.png"; public static string texRampVoidRaidPlanet1 = "RoR2/Base/Common/ColorRamps/texRampVoidRaidPlanet1.png"; public static string texRampVoidRaidPlanet2 = "RoR2/Base/Common/ColorRamps/texRampVoidRaidPlanet2.png"; public static string texRampVoidRaidPlanet3 = "RoR2/Base/Common/ColorRamps/texRampVoidRaidPlanet3.png"; public static string texRampVultureWindblade = "RoR2/Base/Common/ColorRamps/texRampVultureWindblade.png"; public static string texRampWarbanner = "RoR2/Base/Common/ColorRamps/texRampWarbanner.png"; public static string texRampWarbanner2 = "RoR2/Base/Common/ColorRamps/texRampWarbanner2.png"; public static string texRampWaterFoam = "RoR2/Base/Common/ColorRamps/texRampWaterFoam.png"; public static string texRampWax = "RoR2/Base/Common/ColorRamps/texRampWax.png"; public static string texRampWhite = "RoR2/Base/Common/ColorRamps/texRampWhite.png"; public static string texRampWhiteAlphaOnly = "RoR2/Base/Common/ColorRamps/texRampWhiteAlphaOnly.png"; public static string texRampWhiteAlphaOnlyFlipped = "RoR2/Base/Common/ColorRamps/texRampWhiteAlphaOnlyFlipped.png"; public static string texRampWhiteToGreen = "RoR2/Base/Common/ColorRamps/texRampWhiteToGreen.png"; public static string texRampWilloWispExplosion = "RoR2/Base/Common/ColorRamps/texRampWilloWispExplosion.png"; public static string texRampWilloWispExplosion2 = "RoR2/Base/Common/ColorRamps/texRampWilloWispExplosion2.png"; public static string texRampWisp = "RoR2/Base/Common/ColorRamps/texRampWisp.png"; public static string texRampWispSoul = "RoR2/Base/Common/ColorRamps/texRampWispSoul.png"; public static string texRandoRamp = "RoR2/Base/Common/ColorRamps/texRandoRamp.png"; public static string texTeamAreaIndicatorEnemy = "RoR2/Base/Common/ColorRamps/texTeamAreaIndicatorEnemy.png"; public static string texDifficultyEasyIcon = "RoR2/Base/Common/texDifficultyEasyIcon.png"; public static string texDifficultyHardIcon = "RoR2/Base/Common/texDifficultyHardIcon.png"; public static string texDifficultyNormalIcon = "RoR2/Base/Common/texDifficultyNormalIcon.png"; public static string texCloudWhitenoisePointFiltered = "RoR2/Base/Common/GlobalTextures/texCloudWhitenoisePointFiltered.png"; public static string texRampCompositeLight = "RoR2/Base/Common/GlobalTextures/texRampCompositeLight.psd"; public static string texRampElites = "RoR2/Base/Common/GlobalTextures/texRampElites.psd"; public static string texBarrierBarPlaceholder = "RoR2/Base/Common/texBarrierBarPlaceholder.png"; public static string texCurseBar = "RoR2/Base/Common/texCurseBar.png"; public static string texUIHighlightExecute = "RoR2/Base/Common/texUIHighlightExecute.png"; public static string texUIHurtHealthbar = "RoR2/Base/Common/texUIHurtHealthbar.png"; public static string texUIHurtTrailHealthbar = "RoR2/Base/Common/texUIHurtTrailHealthbar.png"; public static string texUILunarRuinHPBar = "RoR2/Base/Common/texUILunarRuinHPBar.png"; public static string texUIOSPBar = "RoR2/Base/Common/texUIOSPBar.png"; public static string texBossBGIcon = "RoR2/Base/Common/texBossBGIcon.png"; public static string texEquipmentBGIcon = "RoR2/Base/Common/texEquipmentBGIcon.png"; public static string texLunarBGIcon = "RoR2/Base/Common/texLunarBGIcon.png"; public static string texSurvivorBGIcon = "RoR2/Base/Common/texSurvivorBGIcon.png"; public static string texTier1BGIcon = "RoR2/Base/Common/texTier1BGIcon.png"; public static string texTier2BGIcon = "RoR2/Base/Common/texTier2BGIcon.png"; public static string texTier3BGIcon = "RoR2/Base/Common/texTier3BGIcon.png"; public static string texLogbookBasicDiffuse = "RoR2/Base/Common/texLogbookBasicDiffuse.png"; public static string texLogbookBossDiffuse = "RoR2/Base/Common/texLogbookBossDiffuse.png"; public static string CopyToClipboardIcon = "RoR2/Base/Common/MiscIcons/CopyToClipboardIcon.png"; public static string texAttackIcon = "RoR2/Base/Common/MiscIcons/texAttackIcon.png"; public static string texBarrelIcon = "RoR2/Base/Common/MiscIcons/texBarrelIcon.png"; public static string texCriticallyHurtIcon = "RoR2/Base/Common/MiscIcons/texCriticallyHurtIcon.png"; public static string texCursor = "RoR2/Base/Common/MiscIcons/texCursor.png"; public static string texCursor2 = "RoR2/Base/Common/MiscIcons/texCursor2.png"; public static string texCursor3 = "RoR2/Base/Common/MiscIcons/texCursor3.png"; public static string texCursorSprite = "RoR2/Base/Common/MiscIcons/texCursorSprite.png"; public static string texDescendIcon = "RoR2/Base/Common/MiscIcons/texDescendIcon.png"; public static string texDroneIconOutlined = "RoR2/Base/Common/MiscIcons/texDroneIconOutlined.png"; public static string texEditIcon = "RoR2/Base/Common/MiscIcons/texEditIcon.png"; public static string texGameResultLossIcon = "RoR2/Base/Common/MiscIcons/texGameResultLossIcon.png"; public static string texGameResultUnknownIcon = "RoR2/Base/Common/MiscIcons/texGameResultUnknownIcon.png"; public static string texGameResultWonIcon = "RoR2/Base/Common/MiscIcons/texGameResultWonIcon.png"; public static string texInventoryIcon = "RoR2/Base/Common/MiscIcons/texInventoryIcon.png"; public static string texInventoryIconOutlined = "RoR2/Base/Common/MiscIcons/texInventoryIconOutlined.png"; public static string texLootIconOutlined = "RoR2/Base/Common/MiscIcons/texLootIconOutlined.png"; public static string texLunarPillarIcon = "RoR2/Base/Common/MiscIcons/texLunarPillarIcon.png"; public static string texMysteryIcon = "RoR2/Base/Common/MiscIcons/texMysteryIcon.png"; public static string texOptionsArrowLeft = "RoR2/Base/Common/MiscIcons/texOptionsArrowLeft.png"; public static string texOptionsArrowRight = "RoR2/Base/Common/MiscIcons/texOptionsArrowRight.png"; public static string texQuickplay = "RoR2/Base/Common/MiscIcons/texQuickplay.png"; public static string texRandomizeIcon = "RoR2/Base/Common/MiscIcons/texRandomizeIcon.png"; public static string texRescueshipIcon = "RoR2/Base/Common/MiscIcons/texRescueshipIcon.png"; public static string texRoR2Icon = "RoR2/Base/Common/MiscIcons/texRoR2Icon.png"; public static string texRuleBonusStartingMoney = "RoR2/Base/Common/MiscIcons/texRuleBonusStartingMoney.png"; public static string texRuleMapIsRandom = "RoR2/Base/Common/MiscIcons/texRuleMapIsRandom.png"; public static string texShrineIconOutlined = "RoR2/Base/Common/MiscIcons/texShrineIconOutlined.png"; public static string texSprintIcon = "RoR2/Base/Common/MiscIcons/texSprintIcon.png"; public static string texTeleporterCharge = "RoR2/Base/Common/MiscIcons/texTeleporterCharge.png"; public static string texTeleporterIcon = "RoR2/Base/Common/MiscIcons/texTeleporterIcon.png"; public static string texTeleporterIconOutlined = "RoR2/Base/Common/MiscIcons/texTeleporterIconOutlined.png"; public static string texUnlockIcon = "RoR2/Base/Common/MiscIcons/texUnlockIcon.png"; public static string texUnlockIconSmall = "RoR2/Base/Common/MiscIcons/texUnlockIconSmall.png"; public static string texWIPIcon = "RoR2/Base/Common/MiscIcons/texWIPIcon.png"; public static string BroadleafBarkPainted = "RoR2/Base/Common/Props/BroadleafBarkPainted.tga"; public static string spmBonsai1V1Atlas = "RoR2/Base/Common/Props/spmBonsai1V1_Atlas.png"; public static string texBark1 = "RoR2/Base/Common/Props/texBark1.png"; public static string sampleBark2 = "RoR2/Base/Common/Props/sampleBark2.tga"; public static string spmBush1Atlas = "RoR2/Base/Common/Props/spmBush1_Atlas.tga"; public static string spmBush1AtlasBillboards = "RoR2/Base/Common/Props/spmBush1_Atlas_Billboards.tga"; public static string spmBush1AtlasBillboardsNormal = "RoR2/Base/Common/Props/spmBush1_Atlas_Billboards_Normal.tga"; public static string spmFern1Atlas = "RoR2/Base/Common/Props/spmFern1_Atlas.tga"; public static string spmFern1AtlasNormal = "RoR2/Base/Common/Props/spmFern1_Atlas_Normal.tga"; public static string spmFern2Atlas = "RoR2/Base/Common/Props/spmFern2_Atlas.tga"; public static string sampleBark1 = "RoR2/Base/Common/Props/sampleBark1.tga"; public static string spmTreeAtlas = "RoR2/Base/Common/Props/spmTree_Atlas.tga"; public static string spmTreeAtlasBillboards = "RoR2/Base/Common/Props/spmTree_Atlas_Billboards.tga"; public static string spmTreeAtlasBillboardsNormal = "RoR2/Base/Common/Props/spmTree_Atlas_Billboards_Normal.tga"; public static string spmTreeoptAtlas = "RoR2/Base/Common/Props/spmTree_opt_Atlas.tga"; public static string spmTreeoptAtlasBillboards = "RoR2/Base/Common/Props/spmTree_opt_Atlas_Billboards.tga"; public static string spmTreeoptAtlasBillboardsNormal = "RoR2/Base/Common/Props/spmTree_opt_Atlas_Billboards_Normal.tga"; public static string texRoachDiffuse = "RoR2/Base/Common/Props/texRoachDiffuse.png"; public static string texRoachEmission = "RoR2/Base/Common/Props/texRoachEmission.png"; public static string texRoachNormal = "RoR2/Base/Common/Props/texRoachNormal.png"; public static string texSand1 = "RoR2/Base/Common/Props/texSand1.png"; public static string texSandGrass1 = "RoR2/Base/Common/Props/texSandGrass1.psd"; public static string texStage1Rock = "RoR2/Base/Common/Props/texStage1Rock.png"; public static string texStage2RockSide = "RoR2/Base/Common/Props/texStage2RockSide.png"; public static string texStage2RockTop = "RoR2/Base/Common/Props/texStage2RockTop.png"; public static string texDamageZoneRing02 = "RoR2/Base/Common/texDamageZoneRing02.png"; public static string texBlack = "RoR2/Base/Common/texBlack.png"; public static string texCircle256Aliased = "RoR2/Base/Common/texCircle256Aliased.png"; public static string texDottedLineMask = "RoR2/Base/Common/texDottedLineMask.png"; public static string texSkinSwatches = "RoR2/Base/Common/texSkinSwatches.png"; public static string texWhite = "RoR2/Base/Common/texWhite.png"; public static string CliffHeight = "RoR2/Base/Common/TiledTextures/CliffHeight.png"; public static string PerlinNoise = "RoR2/Base/Common/TiledTextures/PerlinNoise.png"; public static string PerlinNoiseAlpha = "RoR2/Base/Common/TiledTextures/PerlinNoiseAlpha.png"; public static string texCloudBone1 = "RoR2/Base/Common/TiledTextures/texCloudBone1.png"; public static string texCloudColor1 = "RoR2/Base/Common/TiledTextures/texCloudColor1.png"; public static string texCloudColor2 = "RoR2/Base/Common/TiledTextures/texCloudColor2.png"; public static string texCloudCrackedIce = "RoR2/Base/Common/TiledTextures/texCloudCrackedIce.png"; public static string texCloudCrackedIceInverted = "RoR2/Base/Common/TiledTextures/texCloudCrackedIceInverted.png"; public static string texCloudDifferenceBW1 = "RoR2/Base/Common/TiledTextures/texCloudDifferenceBW1.png"; public static string texCloudDifferenceBW2 = "RoR2/Base/Common/TiledTextures/texCloudDifferenceBW2.png"; public static string texCloudDirtyFire = "RoR2/Base/Common/TiledTextures/texCloudDirtyFire.png"; public static string texCloudIce = "RoR2/Base/Common/TiledTextures/texCloudIce.png"; public static string texCloudLightning1 = "RoR2/Base/Common/TiledTextures/texCloudLightning1.png"; public static string texCloudOrganic1 = "RoR2/Base/Common/TiledTextures/texCloudOrganic1.png"; public static string texCloudOrganic2 = "RoR2/Base/Common/TiledTextures/texCloudOrganic2.png"; public static string texCloudOrganic3 = "RoR2/Base/Common/TiledTextures/texCloudOrganic3.png"; public static string texCloudOrganicNormal = "RoR2/Base/Common/TiledTextures/texCloudOrganicNormal.png"; public static string texCloudPixel = "RoR2/Base/Common/TiledTextures/texCloudPixel.png"; public static string texCloudPixel2 = "RoR2/Base/Common/TiledTextures/texCloudPixel2.png"; public static string texCloudRain = "RoR2/Base/Common/TiledTextures/texCloudRain.png"; public static string texCloudSkulls = "RoR2/Base/Common/TiledTextures/texCloudSkulls.png"; public static string texCloudStroke1 = "RoR2/Base/Common/TiledTextures/texCloudStroke1.png"; public static string texCloudWaterRipples = "RoR2/Base/Common/TiledTextures/texCloudWaterRipples.png"; public static string texCloudWhitenoise = "RoR2/Base/Common/TiledTextures/texCloudWhitenoise.png"; public static string texCloudWhitenoiseNormal = "RoR2/Base/Common/TiledTextures/texCloudWhitenoiseNormal.png"; public static string texCloudWhitenoiseSubtle = "RoR2/Base/Common/TiledTextures/texCloudWhitenoiseSubtle.png"; public static string texDepth2 = "RoR2/Base/Common/TiledTextures/texDepth2.jpg"; public static string texGrassMap1 = "RoR2/Base/Common/TiledTextures/texGrassMap1.png"; public static string texHologramCloud = "RoR2/Base/Common/TiledTextures/texHologramCloud.png"; public static string texMagmaCloud = "RoR2/Base/Common/TiledTextures/texMagmaCloud.png"; public static string texSnowEncode = "RoR2/Base/Common/TiledTextures/texSnowEncode.png"; public static string texTerrainMiscHeight1 = "RoR2/Base/Common/TiledTextures/texTerrainMiscHeight1.png"; public static string texTerrainMiscHeight2 = "RoR2/Base/Common/TiledTextures/texTerrainMiscHeight2.png"; public static string texNormalBumpyRock = "RoR2/Base/Common/TiledTextures/texNormalBumpyRock.jpg"; public static string texNormalConcrete = "RoR2/Base/Common/TiledTextures/texNormalConcrete.jpg"; public static string texNormalConcrete32 = "RoR2/Base/Common/TiledTextures/texNormalConcrete.png"; public static string texNormalConcreteSubtle = "RoR2/Base/Common/TiledTextures/texNormalConcreteSubtle.jpg"; public static string texNormalIce = "RoR2/Base/Common/TiledTextures/texNormalIce.jpg"; public static string texNormalIceCracked = "RoR2/Base/Common/TiledTextures/texNormalIceCracked.jpg"; public static string texNormalIcePainted = "RoR2/Base/Common/TiledTextures/texNormalIcePainted.png"; public static string texNormalPixel = "RoR2/Base/Common/TiledTextures/texNormalPixel.jpg"; public static string texNormalRope = "RoR2/Base/Common/TiledTextures/texNormalRope.png"; public static string texNormalSmoothRock = "RoR2/Base/Common/TiledTextures/texNormalSmoothRock.png"; public static string texNormalStainedGlass = "RoR2/Base/Common/TiledTextures/texNormalStainedGlass.jpg"; public static string texNormalStrange1 = "RoR2/Base/Common/TiledTextures/texNormalStrange1.jpg"; public static string texNormalTemple2 = "RoR2/Base/Common/TiledTextures/texNormalTemple2.png"; public static string texNormalTiles = "RoR2/Base/Common/TiledTextures/texNormalTiles.jpg"; public static string texRockyNormals = "RoR2/Base/Common/TiledTextures/texRockyNormals.png"; public static string texRockyNormalsFlattened = "RoR2/Base/Common/TiledTextures/texRockyNormalsFlattened.png"; public static string texTerrainCliff1 = "RoR2/Base/Common/TiledTextures/texTerrainCliff1.tga"; public static string texTerrainGrass = "RoR2/Base/Common/TiledTextures/texTerrainGrass.tga"; public static string texTerrainRock2 = "RoR2/Base/Common/TiledTextures/texTerrainRock2.png"; public static string texTerrainSnow2 = "RoR2/Base/Common/TiledTextures/texTerrainSnow2.tga"; public static string TexTileDefectiveunitOrangeRust = "RoR2/Base/Common/TiledTextures/TexTileDefectiveunitOrangeRust.tif"; public static string TexTileDefectiveunitRust = "RoR2/Base/Common/TiledTextures/TexTileDefectiveunitRust.tif"; public static string TexTileDefectiveunitYellowRust = "RoR2/Base/Common/TiledTextures/TexTileDefectiveunitYellowRust.tif"; public static string texTileOil = "RoR2/Base/Common/TiledTextures/texTileOil.tif"; public static string texTileRustyMetal = "RoR2/Base/Common/TiledTextures/texTileRustyMetal.tif"; public static string texTileRustyMetalFresh = "RoR2/Base/Common/TiledTextures/texTileRustyMetalFresh.tif"; public static string texAlien1DetailsDiffuse = "RoR2/Base/Common/TrimSheets/texAlien1DetailsDiffuse.png"; public static string texAlien1DetailsHeight = "RoR2/Base/Common/TrimSheets/texAlien1DetailsHeight.png"; public static string texTrimSheetAlien1Diffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetAlien1Diffuse.png"; public static string texTrimSheetAlien1Emission = "RoR2/Base/Common/TrimSheets/texTrimSheetAlien1Emission.png"; public static string texTrimSheetAlien1Height = "RoR2/Base/Common/TrimSheets/texTrimSheetAlien1Height.png"; public static string texTrimSheetAlien3Diffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetAlien3Diffuse.png"; public static string texTrimSheetAlien3Emission = "RoR2/Base/Common/TrimSheets/texTrimSheetAlien3Emission.png"; public static string texTrimSheetAlien3Heightmap = "RoR2/Base/Common/TrimSheets/texTrimSheetAlien3Heightmap.png"; public static string texTrimsheetMoonDiffuse = "RoR2/Base/Common/TrimSheets/texTrimsheetMoonDiffuse.png"; public static string texTrimsheetMoonNormal = "RoR2/Base/Common/TrimSheets/texTrimsheetMoonNormal.png"; public static string texTrimsheetMoonSplat = "RoR2/Base/Common/TrimSheets/texTrimsheetMoonSplat.png"; public static string texTrimSheetClayMen = "RoR2/Base/Common/TrimSheets/texTrimSheetClayMen.png"; public static string texTrimSheetClayPotsDiffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetClayPotsDiffuse.png"; public static string texTrimSheetConcreteDiffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetConcreteDiffuse.png"; public static string texTrimSheetConcreteNormal = "RoR2/Base/Common/TrimSheets/texTrimSheetConcreteNormal.png"; public static string texTrimSheetConstructionBlue = "RoR2/Base/Common/TrimSheets/texTrimSheetConstructionBlue.png"; public static string texTrimSheetConstructionDiffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetConstructionDiffuse.png"; public static string texTrimSheetConstructionEmission = "RoR2/Base/Common/TrimSheets/texTrimSheetConstructionEmission.png"; public static string texTrimSheetConstructionGreen = "RoR2/Base/Common/TrimSheets/texTrimSheetConstructionGreen.png"; public static string texTrimSheetConstructionLoaderAlt = "RoR2/Base/Common/TrimSheets/texTrimSheetConstructionLoaderAlt.png"; public static string texTrimSheetConstructionLoaderAltNew = "RoR2/Base/Common/TrimSheets/texTrimSheetConstructionLoaderAltNew.png"; public static string texTrimSheetConstructionPurple = "RoR2/Base/Common/TrimSheets/texTrimSheetConstructionPurple.png"; public static string texTrimSheetConstructionRed = "RoR2/Base/Common/TrimSheets/texTrimSheetConstructionRed.png"; public static string texTrimSheetConstructionRustyOrange = "RoR2/Base/Common/TrimSheets/texTrimSheetConstructionRustyOrange.png"; public static string texTrimSheetDronesBlack = "RoR2/Base/Common/TrimSheets/texTrimSheetDronesBlack.png"; public static string texTrimSheetDronesBlue = "RoR2/Base/Common/TrimSheets/texTrimSheetDronesBlue.png"; public static string texTrimSheetDronesGreen = "RoR2/Base/Common/TrimSheets/texTrimSheetDronesGreen.png"; public static string texTrimSheetGravePropsDiffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetGravePropsDiffuse.png"; public static string texTrimSheetGravePropsNormal = "RoR2/Base/Common/TrimSheets/texTrimSheetGravePropsNormal.png"; public static string texTrimSheetGravePropsWornDiffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetGravePropsWornDiffuse.png"; public static string texTrimSheetLemurianRuins = "RoR2/Base/Common/TrimSheets/texTrimSheetLemurianRuins.png"; public static string texTrimSheetMedical = "RoR2/Base/Common/TrimSheets/texTrimSheetMedical.png"; public static string texTrimSheetMetalDiffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetMetalDiffuse.png"; public static string texTrimSheetMetalGolden = "RoR2/Base/Common/TrimSheets/texTrimSheetMetalGolden.png"; public static string texTrimSheetMetalNormal = "RoR2/Base/Common/TrimSheets/texTrimSheetMetalNormal.png"; public static string texTrimSheetMetalVibrant = "RoR2/Base/Common/TrimSheets/texTrimSheetMetalVibrant.png"; public static string texTrimSheetMetalWornDiffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetMetalWornDiffuse.png"; public static string texTrimSheetMilitaryMetal = "RoR2/Base/Common/TrimSheets/texTrimSheetMilitaryMetal.png"; public static string texTrimSheetRuins = "RoR2/Base/Common/TrimSheets/texTrimSheetRuins.png"; public static string texTrimSheetRuinsMeadow = "RoR2/Base/Common/TrimSheets/texTrimSheetRuinsMeadow.png"; public static string texTrimSheetSandstoneDiffuse = "RoR2/Base/Common/TrimSheets/texTrimSheetSandstoneDiffuse.png"; public static string texArcaneCircleBrother = "RoR2/Base/Common/VFX/texArcaneCircleBrother.png"; public static string texArcaneCircleProviBWMask = "RoR2/Base/Common/VFX/texArcaneCircleProviBWMask.png"; public static string texArcaneCircleProviMask = "RoR2/Base/Common/VFX/texArcaneCircleProviMask.png"; public static string texArcaneCircleWispMask = "RoR2/Base/Common/VFX/texArcaneCircleWispMask.png"; public static string texBloodSplatterAlpha = "RoR2/Base/Common/VFX/texBloodSplatterAlpha.png"; public static string texFluidSprayLarge = "RoR2/Base/Common/VFX/texFluidSprayLarge.png"; public static string texFluidSpraySmall = "RoR2/Base/Common/VFX/texFluidSpraySmall.png"; public static string texCoinDiffuse = "RoR2/Base/Common/VFX/texCoinDiffuse.png"; public static string texCoinNormal = "RoR2/Base/Common/VFX/texCoinNormal.png"; public static string texLunarCoinDiffuse = "RoR2/Base/Common/VFX/texLunarCoinDiffuse.png"; public static string texLunarCoinNormal = "RoR2/Base/Common/VFX/texLunarCoinNormal.png"; public static string texMoneyBagDiffuse = "RoR2/Base/Common/VFX/texMoneyBagDiffuse.png"; public static string texMoneyBagNormal = "RoR2/Base/Common/VFX/texMoneyBagNormal.png"; public static string texMoneyBarNormal = "RoR2/Base/Common/VFX/texMoneyBarNormal.png"; public static string texNormalInvertCone = "RoR2/Base/Common/VFX/texNormalInvertCone.png"; public static string texNormalInvertConeFade = "RoR2/Base/Common/VFX/texNormalInvertConeFade.png"; public static string texNormalInvertedSphere = "RoR2/Base/Common/VFX/texNormalInvertedSphere.png"; public static string texNormalSphere = "RoR2/Base/Common/VFX/texNormalSphere.png"; public static string texNormalSphereFaded = "RoR2/Base/Common/VFX/texNormalSphereFaded.png"; public static string texGenericDustImpactCloudMask = "RoR2/Base/Common/VFX/texGenericDustImpactCloudMask.png"; public static string texSmokePuffDirectionalDisplacement = "RoR2/Base/Common/VFX/texSmokePuffDirectionalDisplacement.png"; public static string texSmokePuffDirectionalNormal = "RoR2/Base/Common/VFX/texSmokePuffDirectionalNormal.png"; public static string texSmokePuffSmallDisplacement = "RoR2/Base/Common/VFX/texSmokePuffSmallDisplacement.png"; public static string texSmokePuffSmallNormal = "RoR2/Base/Common/VFX/texSmokePuffSmallNormal.png"; public static string texSmokePuffSpeckledDisplacement = "RoR2/Base/Common/VFX/texSmokePuffSpeckledDisplacement.png"; public static string texSmokePuffSpeckledNormal = "RoR2/Base/Common/VFX/texSmokePuffSpeckledNormal.png"; public static string texFireMask = "RoR2/Base/Common/VFX/texFireMask.png"; public static string texAlphaGradient1 = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradient1.png"; public static string texAlphaGradient2 = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradient2.png"; public static string texAlphaGradient2InvertedMask = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradient2InvertedMask.png"; public static string texAlphaGradient2Mask = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradient2Mask.png"; public static string texAlphaGradient3 = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradient3.png"; public static string texAlphaGradient3Mask = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradient3Mask.png"; public static string texAlphaGradient4Mask = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradient4Mask.png"; public static string texAlphaGradient5Mask = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradient5Mask.png"; public static string texAlphaGradient6Mask = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradient6Mask.png"; public static string texAlphaGradientInverted7 = "RoR2/Base/Common/VFX/ParticleMasks/texAlphaGradientInverted7.png"; public static string texBanditExplosionMask = "RoR2/Base/Common/VFX/ParticleMasks/texBanditExplosionMask.png"; public static string texBasicMask = "RoR2/Base/Common/VFX/ParticleMasks/texBasicMask.png"; public static string texBehemothTileMask = "RoR2/Base/Common/VFX/ParticleMasks/texBehemothTileMask.png"; public static string texBehemothTileNormal = "RoR2/Base/Common/VFX/ParticleMasks/texBehemothTileNormal.png"; public static string texBlackHoleMask = "RoR2/Base/Common/VFX/ParticleMasks/texBlackHoleMask.png"; public static string texBlackRadialGradient256 = "RoR2/Base/Common/VFX/ParticleMasks/texBlackRadialGradient256.png"; public static string texCloud1 = "RoR2/Base/Common/VFX/ParticleMasks/texCloud1.tga"; public static string texCloud2 = "RoR2/Base/Common/VFX/ParticleMasks/texCloud2.tga"; public static string texCrackedGroundImpactMask = "RoR2/Base/Common/VFX/ParticleMasks/texCrackedGroundImpactMask.png"; public static string texCrackedGroundImpactNormalMask = "RoR2/Base/Common/VFX/ParticleMasks/texCrackedGroundImpactNormalMask.png"; public static string texDebrisRain1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texDebrisRain1Mask.png"; public static string texDonutMask = "RoR2/Base/Common/VFX/ParticleMasks/texDonutMask.png"; public static string texEngiTrail = "RoR2/Base/Common/VFX/ParticleMasks/texEngiTrail.png"; public static string texExplosionEmptyMask = "RoR2/Base/Common/VFX/ParticleMasks/texExplosionEmptyMask.png"; public static string texFeatherMask = "RoR2/Base/Common/VFX/ParticleMasks/texFeatherMask.png"; public static string texGalaxy1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texGalaxy1Mask.png"; public static string texGenericStarburstMask = "RoR2/Base/Common/VFX/ParticleMasks/texGenericStarburstMask.png"; public static string texGenericStarburstMaskSkewed = "RoR2/Base/Common/VFX/ParticleMasks/texGenericStarburstMaskSkewed.png"; public static string texGlowPaintMask = "RoR2/Base/Common/VFX/ParticleMasks/texGlowPaintMask.png"; public static string texGlowSkullMask = "RoR2/Base/Common/VFX/ParticleMasks/texGlowSkullMask.png"; public static string texGlowSoftCenterMask = "RoR2/Base/Common/VFX/ParticleMasks/texGlowSoftCenterMask.png"; public static string texGradientRoom = "RoR2/Base/Common/VFX/ParticleMasks/texGradientRoom.png"; public static string texHealingCrossMask = "RoR2/Base/Common/VFX/ParticleMasks/texHealingCrossMask.png"; public static string texHorizontalGradient1 = "RoR2/Base/Common/VFX/ParticleMasks/texHorizontalGradient1.png"; public static string texHorizontalGradient2 = "RoR2/Base/Common/VFX/ParticleMasks/texHorizontalGradient2.png"; public static string texLensFlareMask1 = "RoR2/Base/Common/VFX/ParticleMasks/texLensFlareMask1.png"; public static string texLensFlareMask2 = "RoR2/Base/Common/VFX/ParticleMasks/texLensFlareMask2.png"; public static string texLightning1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texLightning1Mask.tif"; public static string texLightning2Mask = "RoR2/Base/Common/VFX/ParticleMasks/texLightning2Mask.png"; public static string texLightning3Mask = "RoR2/Base/Common/VFX/ParticleMasks/texLightning3Mask.tif"; public static string texLightPillar1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texLightPillar1Mask.png"; public static string texMageBoltMask = "RoR2/Base/Common/VFX/ParticleMasks/texMageBoltMask.png"; public static string texMistMask = "RoR2/Base/Common/VFX/ParticleMasks/texMistMask.png"; public static string texMotionTrail1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texMotionTrail1Mask.png"; public static string texMuzzleflash1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texMuzzleflash1Mask.png"; public static string texNormalBlank = "RoR2/Base/Common/VFX/ParticleMasks/texNormalBlank.png"; public static string texParticleDust1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texParticleDust1Mask.png"; public static string texParticleDust2Mask = "RoR2/Base/Common/VFX/ParticleMasks/texParticleDust2Mask.png"; public static string texParticleDust3Mask = "RoR2/Base/Common/VFX/ParticleMasks/texParticleDust3Mask.png"; public static string texParticleDust4Mask = "RoR2/Base/Common/VFX/ParticleMasks/texParticleDust4Mask.png"; public static string texRocketFlare = "RoR2/Base/Common/VFX/ParticleMasks/texRocketFlare.png"; public static string texShard01Mask = "RoR2/Base/Common/VFX/ParticleMasks/texShard01Mask.png"; public static string texShard02Mask = "RoR2/Base/Common/VFX/ParticleMasks/texShard02Mask.png"; public static string texShard03Mask = "RoR2/Base/Common/VFX/ParticleMasks/texShard03Mask.png"; public static string texShockwaveMask = "RoR2/Base/Common/VFX/ParticleMasks/texShockwaveMask.psd"; public static string texShockwaveRing1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texShockwaveRing1Mask.png"; public static string texShockwaveRing1MaskCentered = "RoR2/Base/Common/VFX/ParticleMasks/texShockwaveRing1MaskCentered.png"; public static string texShockwaveRing2Mask = "RoR2/Base/Common/VFX/ParticleMasks/texShockwaveRing2Mask.png"; public static string texShockwaveRing3Mask = "RoR2/Base/Common/VFX/ParticleMasks/texShockwaveRing3Mask.png"; public static string texSlash1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texSlash1Mask.png"; public static string texSoftGlowRing = "RoR2/Base/Common/VFX/ParticleMasks/texSoftGlowRing.png"; public static string texSpark1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texSpark1Mask.png"; public static string texSplat1Mask = "RoR2/Base/Common/VFX/ParticleMasks/texSplat1Mask.png"; public static string texSplat1TiledMask = "RoR2/Base/Common/VFX/ParticleMasks/texSplat1TiledMask.png"; public static string texSplat2TiledMask = "RoR2/Base/Common/VFX/ParticleMasks/texSplat2TiledMask.png"; public static string texThermiteDroplet2Mask = "RoR2/Base/Common/VFX/ParticleMasks/texThermiteDroplet2Mask.png"; public static string texWhiteRadialGradient256 = "RoR2/Base/Common/VFX/ParticleMasks/texWhiteRadialGradient256.png"; public static string texWideGlowMask = "RoR2/Base/Common/VFX/ParticleMasks/texWideGlowMask.png"; public static string texDebris1 = "RoR2/Base/Common/VFX/texDebris1.png"; public static string texGlowPaintSmallMask = "RoR2/Base/Common/VFX/texGlowPaintSmallMask.png"; public static string texSparkCutout01 = "RoR2/Base/Common/VFX/texSparkCutout01.png"; public static string texStoneFlecks = "RoR2/Base/Common/VFX/texStoneFlecks.png"; public static string texVFXExplosionMask = "RoR2/Base/Common/VFX/texVFXExplosionMask.png"; public static string texFluffyCloud1Mask = "RoR2/Base/Common/VFX/texFluffyCloud1Mask.png"; public static string texFluffyCloud2Mask = "RoR2/Base/Common/VFX/texFluffyCloud2Mask.png"; public static string texFluffyCloud3Mask = "RoR2/Base/Common/VFX/texFluffyCloud3Mask.png"; public static string texFluffyCloud4Mask = "RoR2/Base/Common/VFX/texFluffyCloud4Mask.png"; public static string texStunStarMask = "RoR2/Base/Common/VFX/texStunStarMask.png"; public static string texOmniExplosion1Mask = "RoR2/Base/Common/VFX/texOmniExplosion1Mask.png"; public static string texOmniExplosion2Mask = "RoR2/Base/Common/VFX/texOmniExplosion2Mask.png"; public static string texOmniHitspark1Mask = "RoR2/Base/Common/VFX/texOmniHitspark1Mask.png"; public static string texOmniHitspark2Mask = "RoR2/Base/Common/VFX/texOmniHitspark2Mask.png"; public static string texOmniHitspark3Mask = "RoR2/Base/Common/VFX/texOmniHitspark3Mask.png"; public static string texOmniHitspark4Mask = "RoR2/Base/Common/VFX/texOmniHitspark4Mask.png"; public static string texOmniMeleeBluntMask = "RoR2/Base/Common/VFX/texOmniMeleeBluntMask.png"; public static string texOmniRadialSlash1Mask = "RoR2/Base/Common/VFX/texOmniRadialSlash1Mask.png"; public static string texOmniRadialSlash2Mask = "RoR2/Base/Common/VFX/texOmniRadialSlash2Mask.png"; public static string texOmniShockwave1Mask = "RoR2/Base/Common/VFX/texOmniShockwave1Mask.png"; public static string texOmniShockwave2Mask = "RoR2/Base/Common/VFX/texOmniShockwave2Mask.png"; public static string texOmniShockwave3Mask = "RoR2/Base/Common/VFX/texOmniShockwave3Mask.png"; public static string texGlowTriangleMask = "RoR2/Base/Common/VFX/texGlowTriangleMask.png"; public static string texNanoPistolAOE1a = "RoR2/Base/Common/VFX/texNanoPistolAOE_1a.png"; public static string texParticleRingedMask = "RoR2/Base/Common/VFX/texParticleRingedMask.png"; public static string TexWireTrail = "RoR2/Base/Common/VFX/Tex_WireTrail.png"; public static string texBuffVoidFog = "RoR2/Base/Common/texBuffVoidFog.tif"; public static string texRampDeathBomb = "RoR2/Base/Common/texRampDeathBomb.png"; public static string texZiprailIcon = "RoR2/Base/Common/texZiprailIcon.png"; public static string texCrackedScreen = "RoR2/Base/Core/CameraEffects/texCrackedScreen.png"; public static string texTriangleMask = "RoR2/Base/Core/CameraEffects/texTriangleMask.png"; public static string texCursorActive = "RoR2/Base/Core/texCursor_Active.png"; public static string texCursorInactive = "RoR2/Base/Core/texCursor_Inactive.png"; public static string texCursorControllerActive = "RoR2/Base/Core/texCursorController_Active.png"; public static string texCursorControllerInactive = "RoR2/Base/Core/texCursorController_Inactive.png"; public static string texDamageNumbers = "RoR2/Base/Core/texDamageNumbers.png"; public static string texNullIcon = "RoR2/Base/Core/texNullIcon.png"; public static string texAffixRedIcon = "RoR2/Base/EliteFire/texAffixRedIcon.png"; public static string texBuffAffixRed = "RoR2/Base/EliteFire/texBuffAffixRed.tif"; public static string texEliteHornDiffuse = "RoR2/Base/EliteFire/texEliteHornDiffuse.png"; public static string texEliteHornNormal = "RoR2/Base/EliteFire/texEliteHornNormal.png"; public static string texAffixHauntedIcon = "RoR2/Base/EliteHaunted/texAffixHauntedIcon.png"; public static string texBuffAffixHaunted = "RoR2/Base/EliteHaunted/texBuffAffixHaunted.tif"; public static string texEliteStealthcrownDiffuse = "RoR2/Base/EliteHaunted/texEliteStealthcrownDiffuse.png"; public static string texAffixWhiteIcon = "RoR2/Base/EliteIce/texAffixWhiteIcon.png"; public static string texBuffAffixWhite = "RoR2/Base/EliteIce/texBuffAffixWhite.tif"; public static string texAffixBlueIcon = "RoR2/Base/EliteLightning/texAffixBlueIcon.png"; public static string texBuffAffixBlue = "RoR2/Base/EliteLightning/texBuffAffixBlue.tif"; public static string texEliteRhinoHornDiffuse = "RoR2/Base/EliteLightning/texEliteRhinoHornDiffuse.png"; public static string texEliteRhinoHornEmission = "RoR2/Base/EliteLightning/texEliteRhinoHornEmission.png"; public static string texEliteRhinoHornNormal = "RoR2/Base/EliteLightning/texEliteRhinoHornNormal.png"; public static string texAffixLunarIcon = "RoR2/Base/EliteLunar/texAffixLunarIcon.png"; public static string texBuffAffixLunar = "RoR2/Base/EliteLunar/texBuffAffixLunar.tif"; public static string texAffixPoisonIcon = "RoR2/Base/ElitePoison/texAffixPoisonIcon.png"; public static string texBuffAffixPoisonIcon = "RoR2/Base/ElitePoison/texBuffAffixPoisonIcon.tif"; public static string texBuffHealingDisabledIcon = "RoR2/Base/ElitePoison/texBuffHealingDisabledIcon.tif"; public static string UrchinTurretBody = "RoR2/Base/ElitePoison/UrchinTurretBody.png"; public static string texBFGDiffuse = "RoR2/Base/BFG/texBFGDiffuse.png"; public static string texBFGIcon = "RoR2/Base/BFG/texBFGIcon.png"; public static string texGravCubeDiffuse = "RoR2/Base/Blackhole/texGravCubeDiffuse.png"; public static string texGravCubeEmission = "RoR2/Base/Blackhole/texGravCubeEmission.png"; public static string texGravCubeIcon = "RoR2/Base/Blackhole/texGravCubeIcon.png"; public static string texGravCubeNormal = "RoR2/Base/Blackhole/texGravCubeNormal.png"; public static string texPotionDiffuse = "RoR2/Base/BurnNearby/texPotionDiffuse.png"; public static string texPotionHalfMask = "RoR2/Base/BurnNearby/texPotionHalfMask.png"; public static string texPotionIcon = "RoR2/Base/BurnNearby/texPotionIcon.png"; public static string texPotionMask = "RoR2/Base/BurnNearby/texPotionMask.png"; public static string texPotionNormal = "RoR2/Base/BurnNearby/texPotionNormal.png"; public static string texWaterPackDiffuse = "RoR2/Base/Cleanse/texWaterPackDiffuse.png"; public static string texWaterPackHeight = "RoR2/Base/Cleanse/texWaterPackHeight'.png"; public static string texWaterPackIcon = "RoR2/Base/Cleanse/texWaterPackIcon.png"; public static string texMissileRackDiffuse = "RoR2/Base/CommandMissile/texMissileRackDiffuse.png"; public static string texMissileRackIcon = "RoR2/Base/CommandMissile/texMissileRackIcon.png"; public static string texEffigyDiffuse = "RoR2/Base/CrippleWard/texEffigyDiffuse.png"; public static string texEffigyIcon = "RoR2/Base/CrippleWard/texEffigyIcon.png"; public static string texEffigyNormal = "RoR2/Base/CrippleWard/texEffigyNormal.png"; public static string texLunarWardImpactMask = "RoR2/Base/CrippleWard/texLunarWardImpactMask.png"; public static string texBuffFullCritIcon = "RoR2/Base/CritOnUse/texBuffFullCritIcon.tif"; public static string texNeuralImplantHUD = "RoR2/Base/CritOnUse/texNeuralImplantHUD.png"; public static string texNeuralImplantIcon = "RoR2/Base/CritOnUse/texNeuralImplantIcon.png"; public static string texDeathProjectileDiffuse = "RoR2/Base/DeathProjectile/texDeathProjectileDiffuse.png"; public static string texDeathProjectileIcon = "RoR2/Base/DeathProjectile/texDeathProjectileIcon.png"; public static string texDeathProjectileMask = "RoR2/Base/DeathProjectile/texDeathProjectileMask.png"; public static string texDeathProjectileNormals = "RoR2/Base/DeathProjectile/texDeathProjectileNormals.png"; public static string texRadioDiffuse = "RoR2/Base/DroneBackup/texRadioDiffuse.png"; public static string texRadioEmission = "RoR2/Base/DroneBackup/texRadioEmission.png"; public static string texRadioIcon = "RoR2/Base/DroneBackup/texRadioIcon.png"; public static string texEggDiffuse1 = "RoR2/Base/FireBallDash/texEggDiffuse 1.png"; public static string texEggDiffuse = "RoR2/Base/FireBallDash/texEggDiffuse.png"; public static string texEggIcon = "RoR2/Base/FireBallDash/texEggIcon.png"; public static string texFruitDiffuse = "RoR2/Base/Fruit/texFruitDiffuse.png"; public static string texFruitIcon = "RoR2/Base/Fruit/texFruitIcon.png"; public static string texFruitNormals = "RoR2/Base/Fruit/texFruitNormals.png"; public static string texBuffElephantArmorBoostIcon = "RoR2/Base/GainArmor/texBuffElephantArmorBoostIcon.tif"; public static string texElephantFigureDiffuse = "RoR2/Base/GainArmor/texElephantFigureDiffuse.png"; public static string texElephantFigureIcon = "RoR2/Base/GainArmor/texElephantFigureIcon.png"; public static string texElephantFigureNormal = "RoR2/Base/GainArmor/texElephantFigureNormal.png"; public static string texVaseDiffuse1 = "RoR2/Base/Gateway/texVaseDiffuse 1.png"; public static string texVaseDiffuse = "RoR2/Base/Gateway/texVaseDiffuse.png"; public static string texVaseIcon = "RoR2/Base/Gateway/texVaseIcon.png"; public static string texVaseNormal = "RoR2/Base/Gateway/texVaseNormal.png"; public static string texVaseStickDiffuse = "RoR2/Base/Gateway/texVaseStickDiffuse.png"; public static string texGoldGatDiffuse = "RoR2/Base/GoldGat/texGoldGatDiffuse.png"; public static string texGoldGatIcon = "RoR2/Base/GoldGat/texGoldGatIcon.png"; public static string texBugChrysalisDiffuse = "RoR2/Base/Jetpack/texBugChrysalisDiffuse.png"; public static string texBugChrysalisNormal = "RoR2/Base/Jetpack/texBugChrysalisNormal.png"; public static string texBugWingDiffuse = "RoR2/Base/Jetpack/texBugWingDiffuse.png"; public static string texBugWingHeight = "RoR2/Base/Jetpack/texBugWingHeight.png"; public static string texChrysalisIcon = "RoR2/Base/Jetpack/texChrysalisIcon.png"; public static string texBuffLifestealOnHitIcon = "RoR2/Base/LifestealOnHit/texBuffLifestealOnHitIcon.tif"; public static string texLifestealOnHitDiffuse = "RoR2/Base/LifestealOnHit/texLifestealOnHitDiffuse.png"; public static string texLifestealOnHitIcon = "RoR2/Base/LifestealOnHit/texLifestealOnHitIcon.png"; public static string texLifestealOnHitNormal = "RoR2/Base/LifestealOnHit/texLifestealOnHitNormal.png"; public static string texCapacitorDiffuse = "RoR2/Base/Lightning/texCapacitorDiffuse.png"; public static string texCapacitorIcon = "RoR2/Base/Lightning/texCapacitorIcon.png"; public static string texMeteorDiffuse = "RoR2/Base/Meteor/texMeteorDiffuse.png"; public static string texMeteorIcon = "RoR2/Base/Meteor/texMeteorIcon.png"; public static string texMeteorMask = "RoR2/Base/Meteor/texMeteorMask.png"; public static string texMeteorNormal = "RoR2/Base/Meteor/texMeteorNormal.png"; public static string texBarkDiffuse = "RoR2/Base/PassiveHealing/texBarkDiffuse.png"; public static string texBarkNormal = "RoR2/Base/PassiveHealing/texBarkNormal.png"; public static string texWoodspriteBranches = "RoR2/Base/PassiveHealing/texWoodspriteBranches.tga"; public static string texWoodSpriteCrosshair = "RoR2/Base/PassiveHealing/texWoodSpriteCrosshair.png"; public static string texWoodspriteIcon = "RoR2/Base/PassiveHealing/texWoodspriteIcon.png"; public static string texBatteryArrayIcon = "RoR2/Base/QuestVolatileBattery/texBatteryArrayIcon.png"; public static string texRecyclerArrow = "RoR2/Base/Recycle/texRecyclerArrow.png"; public static string texRecyclerDiffuse = "RoR2/Base/Recycle/texRecyclerDiffuse.png"; public static string texRecyclerEmission = "RoR2/Base/Recycle/texRecyclerEmission.png"; public static string texRecyclerIcon = "RoR2/Base/Recycle/texRecyclerIcon.png"; public static string texRecyclerMask = "RoR2/Base/Recycle/texRecyclerMask.png"; public static string texRecyclerNormal = "RoR2/Base/Recycle/texRecyclerNormal.png"; public static string texSawmerangDiffuse = "RoR2/Base/Saw/texSawmerangDiffuse.png"; public static string texSawmerangIcon = "RoR2/Base/Saw/texSawmerangIcon.png"; public static string texSawmerangNormal = "RoR2/Base/Saw/texSawmerangNormal.png"; public static string texScannerIcon = "RoR2/Base/Scanner/texScannerIcon.png"; public static string texHeatwaveNormal = "RoR2/Base/TeamWarCry/texHeatwaveNormal.psd"; public static string texTeamWarCryDiffuse = "RoR2/Base/TeamWarCry/texTeamWarCryDiffuse.png"; public static string texTeamWarCryIcon = "RoR2/Base/TeamWarCry/texTeamWarCryIcon.png"; public static string texTeamWarCryNormals = "RoR2/Base/TeamWarCry/texTeamWarCryNormals.png"; public static string texBuffTonicIcon = "RoR2/Base/Tonic/texBuffTonicIcon.tif"; public static string texTonicDiffuse1 = "RoR2/Base/Tonic/texTonicDiffuse 1.png"; public static string texTonicDiffuse = "RoR2/Base/Tonic/texTonicDiffuse.png"; public static string texTonicHeight = "RoR2/Base/Tonic/texTonicHeight.png"; public static string texTonicIcon = "RoR2/Base/Tonic/texTonicIcon.png"; public static string texTonicNormal = "RoR2/Base/Tonic/texTonicNormal.png"; public static string texDifficultyEclipse1Icon = "RoR2/Base/EclipseRun/texDifficultyEclipse1Icon.png"; public static string texDifficultyEclipse1IconGold = "RoR2/Base/EclipseRun/texDifficultyEclipse1IconGold.png"; public static string texDifficultyEclipse1IconUnearned = "RoR2/Base/EclipseRun/texDifficultyEclipse1IconUnearned.png"; public static string texDifficultyEclipse2Icon = "RoR2/Base/EclipseRun/texDifficultyEclipse2Icon.png"; public static string texDifficultyEclipse2IconGold = "RoR2/Base/EclipseRun/texDifficultyEclipse2IconGold.png"; public static string texDifficultyEclipse2IconUnearned = "RoR2/Base/EclipseRun/texDifficultyEclipse2IconUnearned.png"; public static string texDifficultyEclipse3Icon = "RoR2/Base/EclipseRun/texDifficultyEclipse3Icon.png"; public static string texDifficultyEclipse3IconGold = "RoR2/Base/EclipseRun/texDifficultyEclipse3IconGold.png"; public static string texDifficultyEclipse3IconUnearned = "RoR2/Base/EclipseRun/texDifficultyEclipse3IconUnearned.png"; public static string texDifficultyEclipse4Icon = "RoR2/Base/EclipseRun/texDifficultyEclipse4Icon.png"; public static string texDifficultyEclipse4IconGold = "RoR2/Base/EclipseRun/texDifficultyEclipse4IconGold.png"; public static string texDifficultyEclipse4IconUnearned = "RoR2/Base/EclipseRun/texDifficultyEclipse4IconUnearned.png"; public static string texDifficultyEclipse5Icon = "RoR2/Base/EclipseRun/texDifficultyEclipse5Icon.png"; public static string texDifficultyEclipse5IconGold = "RoR2/Base/EclipseRun/texDifficultyEclipse5IconGold.png"; public static string texDifficultyEclipse5IconUnearned = "RoR2/Base/EclipseRun/texDifficultyEclipse5IconUnearned.png"; public static string texDifficultyEclipse6Icon = "RoR2/Base/EclipseRun/texDifficultyEclipse6Icon.png"; public static string texDifficultyEclipse6IconGold = "RoR2/Base/EclipseRun/texDifficultyEclipse6IconGold.png"; public static string texDifficultyEclipse6IconUnearned = "RoR2/Base/EclipseRun/texDifficultyEclipse6IconUnearned.png"; public static string texDifficultyEclipse7Icon = "RoR2/Base/EclipseRun/texDifficultyEclipse7Icon.png"; public static string texDifficultyEclipse7IconGold = "RoR2/Base/EclipseRun/texDifficultyEclipse7IconGold.png"; public static string texDifficultyEclipse7IconUnearned = "RoR2/Base/EclipseRun/texDifficultyEclipse7IconUnearned.png"; public static string texDifficultyEclipse8Icon = "RoR2/Base/EclipseRun/texDifficultyEclipse8Icon.png"; public static string texDifficultyEclipse8IconGold = "RoR2/Base/EclipseRun/texDifficultyEclipse8IconGold.png"; public static string texDifficultyEclipse8IconUnearned = "RoR2/Base/EclipseRun/texDifficultyEclipse8IconUnearned.png"; public static string texBuffPermanentCurse = "RoR2/Base/EclipseRun/texBuffPermanentCurse.tif"; public static string texChest1Splatmap = "RoR2/Base/CategoryChest/texChest1Splatmap.png"; public static string ChestIcon1 = "RoR2/Base/ChestIcon_1.png"; public static string LunarIcon1 = "RoR2/Base/LunarIcon_1.png"; public static string PillarIcon = "RoR2/Base/PillarIcon.png"; public static string PrinterIcon1 = "RoR2/Base/PrinterIcon_1.png"; public static string RadioScannerIcon2 = "RoR2/Base/RadioScannerIcon_2.png"; public static string ScrapperIcon = "RoR2/Base/ScrapperIcon.png"; public static string ShrineIcon = "RoR2/Base/ShrineIcon.png"; public static string texColossusExpansionIcon2White = "RoR2/Base/texColossusExpansionIcon2White.png"; public static string VoidIcon2 = "RoR2/Base/VoidIcon_2.png"; public static string texLunarChestDiffuse = "RoR2/Base/LunarChest/texLunarChestDiffuse.png"; public static string texLunarChestNormals = "RoR2/Base/LunarChest/texLunarChestNormals.png"; public static string texLunarChestSplat = "RoR2/Base/LunarChest/texLunarChestSplat.png"; public static string texLunarRecyclerDiffuse = "RoR2/Base/LunarRecycler/texLunarRecyclerDiffuse.png"; public static string texLunarRecyclerEmissive = "RoR2/Base/LunarRecycler/texLunarRecyclerEmissive.png"; public static string texLunarRecyclerNormals = "RoR2/Base/LunarRecycler/texLunarRecyclerNormals.png"; public static string texMultiEquipmentPodDiffuse = "RoR2/Base/MultiShopEquipmentTerminal/texMultiEquipmentPodDiffuse.png"; public static string texMultiChestPodDiffuse = "RoR2/Base/MultiShopTerminal/texMultiChestPodDiffuse.png"; public static string texMultiChestPodNormal = "RoR2/Base/MultiShopTerminal/texMultiChestPodNormal.png"; public static string texShrineBloodDiffuse = "RoR2/Base/ShrineBlood/texShrineBloodDiffuse.png"; public static string texShrineBloodNormal = "RoR2/Base/ShrineBlood/texShrineBloodNormal.png"; public static string texShrineBloodSymbol = "RoR2/Base/ShrineBlood/texShrineBloodSymbol.png"; public static string texShrineBossDiffuse = "RoR2/Base/ShrineBoss/texShrineBossDiffuse.png"; public static string texShrineBossNormal = "RoR2/Base/ShrineBoss/texShrineBossNormal.png"; public static string texShrineBossSymbol = "RoR2/Base/ShrineBoss/texShrineBossSymbol.png"; public static string texShrineChanceDiffuse = "RoR2/Base/ShrineChance/texShrineChanceDiffuse.png"; public static string texShrineChanceNormal = "RoR2/Base/ShrineChance/texShrineChanceNormal.png"; public static string texShrineChanceSymbol = "RoR2/Base/ShrineChance/texShrineChanceSymbol.png"; public static string texAlphaGradientGreen = "RoR2/Base/ShrineCleanse/texAlphaGradientGreen.png"; public static string texShrineCleanseDiffuse = "RoR2/Base/ShrineCleanse/texShrineCleanseDiffuse.png"; public static string texShrineCleanseNormal = "RoR2/Base/ShrineCleanse/texShrineCleanseNormal.png"; public static string texShrineCombatDiffuse = "RoR2/Base/ShrineCombat/texShrineCombatDiffuse.png"; public static string texShrineCombatNormal = "RoR2/Base/ShrineCombat/texShrineCombatNormal.png"; public static string texShrineCombatSymbol = "RoR2/Base/ShrineCombat/texShrineCombatSymbol.png"; public static string texShrineChanceAOFiltered = "RoR2/Base/ShrineGoldshoresAccess/texShrineChanceAOFiltered.png"; public static string texShrineHealingDiffuse = "RoR2/Base/ShrineHealing/texShrineHealingDiffuse.png"; public static string texShrineHealingNormal = "RoR2/Base/ShrineHealing/texShrineHealingNormal.png"; public static string texShrineHealingSymbol = "RoR2/Base/ShrineHealing/texShrineHealingSymbol.png"; public static string texShrineRestackSandySplatmap = "RoR2/Base/ShrineRestack/texShrineRestackSandySplatmap.png"; public static string texShrineRestackDiffuse = "RoR2/Base/ShrineRestack/texShrineRestackDiffuse.png"; public static string texShrineRestackNormal = "RoR2/Base/ShrineRestack/texShrineRestackNormal.png"; public static string texShrineRestackSymbol = "RoR2/Base/ShrineRestack/texShrineRestackSymbol.png"; public static string texAlienHeadDiffuse = "RoR2/Base/AlienHead/texAlienHeadDiffuse.png"; public static string texAlienHeadIcon = "RoR2/Base/AlienHead/texAlienHeadIcon.png"; public static string texAlienHeadNormal = "RoR2/Base/AlienHead/texAlienHeadNormal.png"; public static string texRepulsionArmorPlateDiffuse = "RoR2/Base/ArmorPlate/texRepulsionArmorPlateDiffuse.png"; public static string texRepulsionArmorPlateIcon = "RoR2/Base/ArmorPlate/texRepulsionArmorPlateIcon.png"; public static string texRepulsionArmorPlateNormal = "RoR2/Base/ArmorPlate/texRepulsionArmorPlateNormal.png"; public static string texBuffPulverizeIcon = "RoR2/Base/ArmorReductionOnHit/texBuffPulverizeIcon.tif"; public static string texWarhammerDiffuse = "RoR2/Base/ArmorReductionOnHit/texWarhammerDiffuse.png"; public static string texWarhammerEmission = "RoR2/Base/ArmorReductionOnHit/texWarhammerEmission.png"; public static string texWarhammerIcon = "RoR2/Base/ArmorReductionOnHit/texWarhammerIcon.png"; public static string texWarhammerNormal = "RoR2/Base/ArmorReductionOnHit/texWarhammerNormal.png"; public static string texArtifactKeyIcon = "RoR2/Base/ArtifactKey/texArtifactKeyIcon.png"; public static string texBuffAttackSpeedOnCritIcon = "RoR2/Base/AttackSpeedOnCrit/texBuffAttackSpeedOnCritIcon.tif"; public static string texWolfPeltDiffuse = "RoR2/Base/AttackSpeedOnCrit/texWolfPeltDiffuse.png"; public static string texWolfPeltIcon = "RoR2/Base/AttackSpeedOnCrit/texWolfPeltIcon.png"; public static string texFossilDiffuse = "RoR2/Base/AutoCastEquipment/texFossilDiffuse.png"; public static string texFossilIcon = "RoR2/Base/AutoCastEquipment/texFossilIcon.png"; public static string texFossilMask = "RoR2/Base/AutoCastEquipment/texFossilMask.png"; public static string texFossilNormal = "RoR2/Base/AutoCastEquipment/texFossilNormal.png"; public static string texBandolierDiffuse = "RoR2/Base/Bandolier/texBandolierDiffuse.png"; public static string texBandolierIcon = "RoR2/Base/Bandolier/texBandolierIcon.png"; public static string texBroochDiffuse = "RoR2/Base/BarrierOnKill/texBroochDiffuse.png"; public static string texBroochIcon = "RoR2/Base/BarrierOnKill/texBroochIcon.png"; public static string texBroochNormal = "RoR2/Base/BarrierOnKill/texBroochNormal.png"; public static string texAegisDiffuse = "RoR2/Base/BarrierOnOverHeal/texAegisDiffuse.png"; public static string texAegisIcon = "RoR2/Base/BarrierOnOverHeal/texAegisIcon.png"; public static string texAegisNormal = "RoR2/Base/BarrierOnOverHeal/texAegisNormal.png"; public static string texBearDiffuse = "RoR2/Base/Bear/texBearDiffuse.png"; public static string texBearIcon = "RoR2/Base/Bear/texBearIcon.png"; public static string texBearNormal = "RoR2/Base/Bear/texBearNormal.png"; public static string BeetleGuardAllyBody = "RoR2/Base/BeetleGland/BeetleGuardAllyBody.png"; public static string texBeetleGlandDiffuse = "RoR2/Base/BeetleGland/texBeetleGlandDiffuse.png"; public static string texBeetleGlandEmission = "RoR2/Base/BeetleGland/texBeetleGlandEmission.png"; public static string texBeetleGlandIcon = "RoR2/Base/BeetleGland/texBeetleGlandIcon.png"; public static string texBeetleGlandNormal = "RoR2/Base/BeetleGland/texBeetleGlandNormal.png"; public static string texBehemothDiffuse = "RoR2/Base/Behemoth/texBehemothDiffuse.png"; public static string texBehemothIcon = "RoR2/Base/Behemoth/texBehemothIcon.png"; public static string texTriTipDiffuse = "RoR2/Base/BleedOnHit/texTriTipDiffuse.png"; public static string texTriTipIcon = "RoR2/Base/BleedOnHit/texTriTipIcon.png"; public static string texBleedOnHitAndExplodeDiffuse = "RoR2/Base/BleedOnHitAndExplode/texBleedOnHitAndExplodeDiffuse.png"; public static string texBleedOnHitAndExplodeIcon = "RoR2/Base/BleedOnHitAndExplode/texBleedOnHitAndExplodeIcon.png"; public static string texBleedOnHitAndExplodeNormal = "RoR2/Base/BleedOnHitAndExplode/texBleedOnHitAndExplodeNormal.png"; public static string texTomeDiffuse = "RoR2/Base/BonusGoldPackOnKill/texTomeDiffuse.png"; public static string texTomeEmission = "RoR2/Base/BonusGoldPackOnKill/texTomeEmission.png"; public static string texTomeIcon = "RoR2/Base/BonusGoldPackOnKill/texTomeIcon.png"; public static string texTomeNormal = "RoR2/Base/BonusGoldPackOnKill/texTomeNormal.png"; public static string texAPRoundsDiffuse = "RoR2/Base/BossDamageBonus/texAPRoundsDiffuse.png"; public static string texAPRoundsIcon = "RoR2/Base/BossDamageBonus/texAPRoundsIcon.png"; public static string texBossDamageMask = "RoR2/Base/BossDamageBonus/texBossDamageMask.png"; public static string texHookDiffuse = "RoR2/Base/BounceNearby/texHookDiffuse.png"; public static string texHookEffect = "RoR2/Base/BounceNearby/texHookEffect.png"; public static string texHookEmission = "RoR2/Base/BounceNearby/texHookEmission.png"; public static string texHookIcon = "RoR2/Base/BounceNearby/texHookIcon.png"; public static string texCaptainDefenseMatrixIcon = "RoR2/Base/CaptainDefenseMatrix/texCaptainDefenseMatrixIcon.png"; public static string texUkulele2Diffuse = "RoR2/Base/ChainLightning/texUkulele2Diffuse.png"; public static string texUkulele2Normal = "RoR2/Base/ChainLightning/texUkulele2Normal.png"; public static string texUkuleleDiffuse = "RoR2/Base/ChainLightning/texUkuleleDiffuse.png"; public static string texUkuleleEmission = "RoR2/Base/ChainLightning/texUkuleleEmission.png"; public static string texUkuleleIcon = "RoR2/Base/ChainLightning/texUkuleleIcon.png"; public static string texCloverDiffuse = "RoR2/Base/Clover/texCloverDiffuse.png"; public static string texCloverEmission = "RoR2/Base/Clover/texCloverEmission.png"; public static string texCloverIcon = "RoR2/Base/Clover/texCloverIcon.png"; public static string texGlassesDiffuse = "RoR2/Base/CritGlasses/texGlassesDiffuse.png"; public static string texGlassesEmission = "RoR2/Base/CritGlasses/texGlassesEmission.png"; public static string texGlassesIcon = "RoR2/Base/CritGlasses/texGlassesIcon.png"; public static string texCrowbarDiffuse = "RoR2/Base/Crowbar/texCrowbarDiffuse.png"; public static string texCrowbarIcon = "RoR2/Base/Crowbar/texCrowbarIcon.png"; public static string texVFXMeleeImpact1Mask = "RoR2/Base/Crowbar/texVFXMeleeImpact1Mask.png"; public static string texBlood1Diffuse = "RoR2/Base/Dagger/texBlood1Diffuse.png"; public static string texDaggerDiffuse = "RoR2/Base/Dagger/texDaggerDiffuse.png"; public static string texDaggerIcon = "RoR2/Base/Dagger/texDaggerIcon.png"; public static string texDaggerNormals = "RoR2/Base/Dagger/texDaggerNormals.png"; public static string texDaggerProcDiffuse36 = "RoR2/Base/Dagger/texDaggerProcDiffuse.png"; public static string texBuffDeathMarkIcon = "RoR2/Base/DeathMark/texBuffDeathMarkIcon.tif"; public static string texDeathMarkDiffuse = "RoR2/Base/DeathMark/texDeathMarkDiffuse.png"; public static string texDeathMarkEmission = "RoR2/Base/DeathMark/texDeathMarkEmission.png"; public static string texDeathMarkIcon = "RoR2/Base/DeathMark/texDeathMarkIcon.png"; public static string texDeathMarkNormal = "RoR2/Base/DeathMark/texDeathMarkNormal.png"; public static string texBuffElementalRingsCooldownIcon = "RoR2/Base/ElementalRings/texBuffElementalRingsCooldownIcon.tif"; public static string texBuffElementalRingsReadyIcon = "RoR2/Base/ElementalRings/texBuffElementalRingsReadyIcon.tif"; public static string texFireRingDiffuse = "RoR2/Base/ElementalRings/texFireRingDiffuse.png"; public static string texFireRingIcon = "RoR2/Base/ElementalRings/texFireRingIcon.png"; public static string texIceRingDiffuse = "RoR2/Base/ElementalRings/texIceRingDiffuse.png"; public static string texIceRingIcon = "RoR2/Base/ElementalRings/texIceRingIcon.png"; public static string texRingSetPatternNormal = "RoR2/Base/ElementalRings/texRingSetPatternNormal.png"; public static string texRingSetRuneMask = "RoR2/Base/ElementalRings/texRingSetRuneMask.png"; public static string texTornadoMask = "RoR2/Base/ElementalRings/texTornadoMask.png"; public static string texBuffWarHornIcon = "RoR2/Base/EnergizedOnEquipmentUse/texBuffWarHornIcon.tif"; public static string texWarHornDiffuse = "RoR2/Base/EnergizedOnEquipmentUse/texWarHornDiffuse.png"; public static string texWarHornIcon = "RoR2/Base/EnergizedOnEquipmentUse/texWarHornIcon.png"; public static string texWarHornNormal = "RoR2/Base/EnergizedOnEquipmentUse/texWarHornNormal.png"; public static string texBatteryDiffuse = "RoR2/Base/EquipmentMagazine/texBatteryDiffuse.png"; public static string texBatteryEmission = "RoR2/Base/EquipmentMagazine/texBatteryEmission.png"; public static string texBatteryIcon = "RoR2/Base/EquipmentMagazine/texBatteryIcon.png"; public static string texGuillotineDiffuse = "RoR2/Base/ExecuteLowHealthElite/texGuillotineDiffuse.png"; public static string texGuillotineIcon = "RoR2/Base/ExecuteLowHealthElite/texGuillotineIcon.png"; public static string texGuillotineNormal = "RoR2/Base/ExecuteLowHealthElite/texGuillotineNormal.png"; public static string texGlassJarLidNormal = "RoR2/Base/ExplodeOnDeath/texGlassJarLidNormal.png"; public static string texGlassJarNormal = "RoR2/Base/ExplodeOnDeath/texGlassJarNormal.png"; public static string texWilloWispCore = "RoR2/Base/ExplodeOnDeath/texWilloWispCore.png"; public static string texWillowispDiffuse = "RoR2/Base/ExplodeOnDeath/texWillowispDiffuse.png"; public static string texWilloWispIcon = "RoR2/Base/ExplodeOnDeath/texWilloWispIcon.png"; public static string texWillowispSpiral = "RoR2/Base/ExplodeOnDeath/texWillowispSpiral.png"; public static string texHippoIconConsumed = "RoR2/Base/ExtraLife/texHippoIconConsumed.png"; public static string texAngelWingMask = "RoR2/Base/ExtraLife/texAngelWingMask.png"; public static string texHippoDiffuse = "RoR2/Base/ExtraLife/texHippoDiffuse.png"; public static string texHippoIcon = "RoR2/Base/ExtraLife/texHippoIcon.png"; public static string texHippoNormal = "RoR2/Base/ExtraLife/texHippoNormal.png"; public static string texGravBootsDiffuse = "RoR2/Base/FallBoots/texGravBootsDiffuse.png"; public static string texGravBootsEmission = "RoR2/Base/FallBoots/texGravBootsEmission.png"; public static string texGravBootsIcon = "RoR2/Base/FallBoots/texGravBootsIcon.png"; public static string texItemPickupEffectParticleMask = "RoR2/Base/FallBoots/texItemPickupEffectParticleMask.png"; public static string texFeatherDiffuse = "RoR2/Base/Feather/texFeatherDiffuse.png"; public static string texFeatherIcon = "RoR2/Base/Feather/texFeatherIcon.png"; public static string texFireballsOnHitDiffuse = "RoR2/Base/FireballsOnHit/texFireballsOnHitDiffuse.png"; public static string texFireballsOnHitEmission = "RoR2/Base/FireballsOnHit/texFireballsOnHitEmission.png"; public static string texFireballsOnHitIcon = "RoR2/Base/FireballsOnHit/texFireballsOnHitIcon.png"; public static string texFireballsOnHitNormal = "RoR2/Base/FireballsOnHit/texFireballsOnHitNormal.png"; public static string texFireworkDiffuse = "RoR2/Base/Firework/texFireworkDiffuse.png"; public static string texFireworkIcon = "RoR2/Base/Firework/texFireworkIcon.png"; public static string texSteakDiffuse = "RoR2/Base/FlatHealth/texSteakDiffuse.png"; public static string texSteakIcon = "RoR2/Base/FlatHealth/texSteakIcon.png"; public static string texSteakMask = "RoR2/Base/FlatHealth/texSteakMask.png"; public static string texFocusedConvergenceDiffuse = "RoR2/Base/FocusConvergence/texFocusedConvergenceDiffuse.png"; public static string texFocusedConvergenceEmission = "RoR2/Base/FocusConvergence/texFocusedConvergenceEmission.png"; public static string texFocusedConvergenceIcon = "RoR2/Base/FocusConvergence/texFocusedConvergenceIcon.png"; public static string texFocusedConvergenceNormal = "RoR2/Base/FocusConvergence/texFocusedConvergenceNormal.png"; public static string texFocusedConvergenceOrb = "RoR2/Base/FocusConvergence/texFocusedConvergenceOrb.png"; public static string texFocusedConvergenceOrbEmission = "RoR2/Base/FocusConvergence/texFocusedConvergenceOrbEmission.png"; public static string texMaskDiffuse = "RoR2/Base/GhostOnKill/texMaskDiffuse.png"; public static string texMaskIcon = "RoR2/Base/GhostOnKill/texMaskIcon.png"; public static string texMaskNormal = "RoR2/Base/GhostOnKill/texMaskNormal.png"; public static string texBoneCrownDiffuse = "RoR2/Base/GoldOnHit/texBoneCrownDiffuse.png"; public static string texBoneCrownIcon = "RoR2/Base/GoldOnHit/texBoneCrownIcon.png"; public static string texBoneCrownNormal = "RoR2/Base/GoldOnHit/texBoneCrownNormal.png"; public static string texSkullcrownDiffuse = "RoR2/Base/HeadHunter/texSkullcrownDiffuse.png"; public static string texSkullcrownIcon = "RoR2/Base/HeadHunter/texSkullcrownIcon.png"; public static string texSkullcrownNormal = "RoR2/Base/HeadHunter/texSkullcrownNormal.png"; public static string texScytheDiffuse = "RoR2/Base/HealOnCrit/texScytheDiffuse.png"; public static string texScytheIcon = "RoR2/Base/HealOnCrit/texScytheIcon.png"; public static string texSnailDiffuse = "RoR2/Base/HealWhileSafe/texSnailDiffuse.png"; public static string texSnailEmission = "RoR2/Base/HealWhileSafe/texSnailEmission.png"; public static string texSnailIcon = "RoR2/Base/HealWhileSafe/texSnailIcon.png"; public static string texSnailNormal = "RoR2/Base/HealWhileSafe/texSnailNormal.png"; public static string texHoofDiffuse = "RoR2/Base/Hoof/texHoofDiffuse.png"; public static string texHoofIcon = "RoR2/Base/Hoof/texHoofIcon.png"; public static string texHoofNormal = "RoR2/Base/Hoof/texHoofNormal.png"; public static string texFrostRelicIcon = "RoR2/Base/Icicle/texFrostRelicIcon.png"; public static string texIcicleDiffuse = "RoR2/Base/Icicle/texIcicleDiffuse.png"; public static string texGasolineAO = "RoR2/Base/IgniteOnKill/texGasolineAO.png"; public static string texGasolineDiffuse = "RoR2/Base/IgniteOnKill/texGasolineDiffuse.png"; public static string texGasolineIcon = "RoR2/Base/IgniteOnKill/texGasolineIcon.png"; public static string texAntlerIcon = "RoR2/Base/IncreaseHealing/texAntlerIcon.png"; public static string texAntlerNormal = "RoR2/Base/IncreaseHealing/texAntlerNormal.png"; public static string texInfusionDiffuse = "RoR2/Base/Infusion/texInfusionDiffuse.png"; public static string texInfusionIcon = "RoR2/Base/Infusion/texInfusionIcon.png"; public static string texWaxBirdDiffuse = "RoR2/Base/JumpBoost/texWaxBirdDiffuse.png"; public static string texWaxBirdIcon = "RoR2/Base/JumpBoost/texWaxBirdIcon.png"; public static string texWaxBirdNormal = "RoR2/Base/JumpBoost/texWaxBirdNormal.png"; public static string texBrainstalkDiffuse = "RoR2/Base/KillEliteFrenzy/texBrainstalkDiffuse.png"; public static string texBrainstalkIcon = "RoR2/Base/KillEliteFrenzy/texBrainstalkIcon.png"; public static string texBrainstalkMask = "RoR2/Base/KillEliteFrenzy/texBrainstalkMask.png"; public static string texBrainstalkNormal = "RoR2/Base/KillEliteFrenzy/texBrainstalkNormal.png"; public static string texNoCooldownsBuffIcon = "RoR2/Base/KillEliteFrenzy/texNoCooldownsBuffIcon.tif"; public static string texKnurlDiffuse = "RoR2/Base/Knurl/texKnurlDiffuse.png"; public static string texKnurlIcon = "RoR2/Base/Knurl/texKnurlIcon.png"; public static string texKnurlNormal = "RoR2/Base/Knurl/texKnurlNormal.png"; public static string texLaserTurbineIcon = "RoR2/Base/LaserTurbine/texLaserTurbineIcon.png"; public static string texLaserTurbineKillChargeBuffIcon = "RoR2/Base/LaserTurbine/texLaserTurbineKillChargeBuffIcon.tif"; public static string texChargedPerforatorDiffuse = "RoR2/Base/LightningStrikeOnHit/texChargedPerforatorDiffuse.png"; public static string texChargedPerforatorEmission = "RoR2/Base/LightningStrikeOnHit/texChargedPerforatorEmission.png"; public static string texLightningStrikeOnHit = "RoR2/Base/LightningStrikeOnHit/texLightningStrikeOnHit.png"; public static string texStarSeedIcon = "RoR2/Base/LunarBadLuck/texStarSeedIcon.png"; public static string texLunarDaggerDiffuse = "RoR2/Base/LunarDagger/texLunarDaggerDiffuse.png"; public static string texLunarDaggerIcon = "RoR2/Base/LunarDagger/texLunarDaggerIcon.png"; public static string texLunarDaggerMask = "RoR2/Base/LunarDagger/texLunarDaggerMask.png"; public static string texLunarDaggerNormals = "RoR2/Base/LunarDagger/texLunarDaggerNormals.png"; public static string texBirdEyeDiffuse1 = "RoR2/Base/LunarSkillReplacements/texBirdEyeDiffuse 1.png"; public static string texBirdEyeDiffuse = "RoR2/Base/LunarSkillReplacements/texBirdEyeDiffuse.png"; public static string texBirdEyeDiffuse2 = "RoR2/Base/LunarSkillReplacements/texBirdEyeDiffuse2.png"; public static string texBirdEyeIcon = "RoR2/Base/LunarSkillReplacements/texBirdEyeIcon.png"; public static string texBirdClawDiffuse = "RoR2/Base/LunarSkillReplacements/texBirdClawDiffuse.png"; public static string texBirdClawEmission = "RoR2/Base/LunarSkillReplacements/texBirdClawEmission.png"; public static string texBirdClawFeather = "RoR2/Base/LunarSkillReplacements/texBirdClawFeather.png"; public static string texBirdClawNormal = "RoR2/Base/LunarSkillReplacements/texBirdClawNormal.png"; public static string texBuffLunarySecondaryRootIcon = "RoR2/Base/LunarSkillReplacements/texBuffLunarySecondaryRootIcon.tif"; public static string texHooksOfHeresyIcon = "RoR2/Base/LunarSkillReplacements/texHooksOfHeresyIcon.png"; public static string texBuffLunarDetonatorIcon = "RoR2/Base/LunarSkillReplacements/texBuffLunarDetonatorIcon.tif"; public static string texBirdHeart = "RoR2/Base/LunarSkillReplacements/texBirdHeart.png"; public static string texBirdHeartDiffuse = "RoR2/Base/LunarSkillReplacements/texBirdHeartDiffuse.png"; public static string texBirdHeartNormal = "RoR2/Base/LunarSkillReplacements/texBirdHeartNormal.png"; public static string texBirdHeartRuinMask = "RoR2/Base/LunarSkillReplacements/texBirdHeartRuinMask.png"; public static string texBirdFootDiffuse = "RoR2/Base/LunarSkillReplacements/texBirdFootDiffuse.png"; public static string texBirdFootIcon = "RoR2/Base/LunarSkillReplacements/texBirdFootIcon.png"; public static string texBirdFootNormal = "RoR2/Base/LunarSkillReplacements/texBirdFootNormal.png"; public static string texCrowSkillIcons = "RoR2/Base/LunarSkillReplacements/texCrowSkillIcons.png"; public static string texBeadsDiffuse = "RoR2/Base/LunarTrinket/texBeadsDiffuse.png"; public static string texBeadsIcon = "RoR2/Base/LunarTrinket/texBeadsIcon.png"; public static string texBeadsMask = "RoR2/Base/LunarTrinket/texBeadsMask.png"; public static string texBeadsNormal = "RoR2/Base/LunarTrinket/texBeadsNormal.png"; public static string texBuffMedkitHealIcon = "RoR2/Base/Medkit/texBuffMedkitHealIcon.tif"; public static string texMedkitDiffuse = "RoR2/Base/Medkit/texMedkitDiffuse.png"; public static string texMedkitIcon = "RoR2/Base/Medkit/texMedkitIcon.png"; public static string texMissileDiffuse = "RoR2/Base/Missile/texMissileDiffuse.png"; public static string texMissileLauncherDiffuse = "RoR2/Base/Missile/texMissileLauncherDiffuse.png"; public static string texMissileLauncherEmission = "RoR2/Base/Missile/texMissileLauncherEmission.png"; public static string texMissileLauncherIcon = "RoR2/Base/Missile/texMissileLauncherIcon.png"; public static string texMissileMask = "RoR2/Base/Missile/texMissileMask.png"; public static string texShrineMonstersSymbol = "RoR2/Base/MonstersOnShrineUse/tex_ShrineMonstersSymbol.png"; public static string texMonstersOnShrineUseDiffuse = "RoR2/Base/MonstersOnShrineUse/texMonstersOnShrineUseDiffuse.png"; public static string texMonstersOnShrineUseIcon = "RoR2/Base/MonstersOnShrineUse/texMonstersOnShrineUseIcon.png"; public static string texMonstersOnShrineUseNormal = "RoR2/Base/MonstersOnShrineUse/texMonstersOnShrineUseNormal.png"; public static string texMushroomAO = "RoR2/Base/Mushroom/texMushroomAO.png"; public static string texMushroomDiffuse = "RoR2/Base/Mushroom/texMushroomDiffuse.png"; public static string texMushroomEmission = "RoR2/Base/Mushroom/texMushroomEmission.png"; public static string texMushroomIcon = "RoR2/Base/Mushroom/texMushroomIcon.png"; public static string texMushroomNormal = "RoR2/Base/Mushroom/texMushroomNormal.png"; public static string texSporeMask = "RoR2/Base/Mushroom/texSporeMask.png"; public static string texDiamondEffectMask = "RoR2/Base/NearbyDamageBonus/texDiamondEffectMask.png"; public static string texDiamondIcon = "RoR2/Base/NearbyDamageBonus/texDiamondIcon.png"; public static string texDiamondNormals = "RoR2/Base/NearbyDamageBonus/texDiamondNormals.png"; public static string texDevilHornsDiffuse = "RoR2/Base/NovaOnHeal/texDevilHornsDiffuse.png"; public static string texDevilHornsEmission = "RoR2/Base/NovaOnHeal/texDevilHornsEmission.png"; public static string texDevilHornsIcon = "RoR2/Base/NovaOnHeal/texDevilHornsIcon.png"; public static string texJellyGutsDiffuse = "RoR2/Base/NovaOnLowHealth/texJellyGutsDiffuse.png"; public static string texJellyGutsIcon = "RoR2/Base/NovaOnLowHealth/texJellyGutsIcon.png"; public static string texJellyGutsNormal = "RoR2/Base/NovaOnLowHealth/texJellyGutsNormal.png"; public static string texParentEggIcon = "RoR2/Base/ParentEgg/texParentEggIcon.png"; public static string texPearlIcon = "RoR2/Base/Pearl/texPearlIcon.png"; public static string texPersonalShieldIcon = "RoR2/Base/PersonalShield/texPersonalShieldIcon.png"; public static string texShieldGeneratorDiffuse = "RoR2/Base/PersonalShield/texShieldGeneratorDiffuse.png"; public static string texShieldGeneratorEmission = "RoR2/Base/PersonalShield/texShieldGeneratorEmission.png"; public static string texGlowSquareMask = "RoR2/Base/Phasing/texGlowSquareMask.png"; public static string texStealthkitDiffuse = "RoR2/Base/Phasing/texStealthkitDiffuse.png"; public static string texStealthkitEmission = "RoR2/Base/Phasing/texStealthkitEmission.png"; public static string texStealthkitIcon = "RoR2/Base/Phasing/texStealthkitIcon.png"; public static string texInterstellarDeskPlantDiffuse = "RoR2/Base/Plant/texInterstellarDeskPlantDiffuse.png"; public static string texInterstellarDeskPlantEmission = "RoR2/Base/Plant/texInterstellarDeskPlantEmission.png"; public static string texInterstellarDeskPlantIcon = "RoR2/Base/Plant/texInterstellarDeskPlantIcon.png"; public static string texInterstellarDeskPlantNormal = "RoR2/Base/Plant/texInterstellarDeskPlantNormal.png"; public static string texBuffPowerIcon = "RoR2/Base/RandomDamageZone/texBuffPowerIcon.tif"; public static string texDamageZoneRing = "RoR2/Base/RandomDamageZone/texDamageZoneRing.png"; public static string texRandomDamageZoneDiffuse = "RoR2/Base/RandomDamageZone/texRandomDamageZoneDiffuse.png"; public static string texRandomDamageZoneIcon = "RoR2/Base/RandomDamageZone/texRandomDamageZoneIcon.png"; public static string texRandomDamageZoneNormals = "RoR2/Base/RandomDamageZone/texRandomDamageZoneNormals.png"; public static string texCorpseflowerDiffuse = "RoR2/Base/RepeatHeal/texCorpseflowerDiffuse.png"; public static string texCorpseflowerIcon = "RoR2/Base/RepeatHeal/texCorpseflowerIcon.png"; public static string texCorpseflowerNormal = "RoR2/Base/RepeatHeal/texCorpseflowerNormal.png"; public static string texTrimSheetAlien1RustyEmission = "RoR2/Base/RoboBallBuddy/texTrimSheetAlien1RustyEmission.png"; public static string texTrimSheetAlien1RustyGreenDiffuse = "RoR2/Base/RoboBallBuddy/texTrimSheetAlien1RustyGreenDiffuse.png"; public static string texTrimSheetAlien1RustyGreenDiffuse27 = "RoR2/Base/RoboBallBuddy/texTrimSheetAlien1RustyGreenDiffuse.psd"; public static string texRoboBallScarfDiffuse = "RoR2/Base/RoboBallBuddy/texRoboBallScarfDiffuse.png"; public static string texRoboBallScarfNormal = "RoR2/Base/RoboBallBuddy/texRoboBallScarfNormal.png"; public static string texEmpathyChip = "RoR2/Base/RoboBallBuddy/texEmpathyChip.png"; public static string texScrapGreenIcon = "RoR2/Base/Scrap/texScrapGreenIcon.png"; public static string texScrapRedIcon = "RoR2/Base/Scrap/texScrapRedIcon.png"; public static string texScrapWhiteIcon = "RoR2/Base/Scrap/texScrapWhiteIcon.png"; public static string texScrapYellowIcon = "RoR2/Base/Scrap/texScrapYellowIcon.png"; public static string texDoubleMagDiffuse = "RoR2/Base/SecondarySkillMagazine/texDoubleMagDiffuse.png"; public static string texDoubleMagIcon = "RoR2/Base/SecondarySkillMagazine/texDoubleMagIcon.png"; public static string texDoubleMagNormal = "RoR2/Base/SecondarySkillMagazine/texDoubleMagNormal.png"; public static string texSeedDiffuse = "RoR2/Base/Seed/texSeedDiffuse.png"; public static string texSeedIcon = "RoR2/Base/Seed/texSeedIcon.png"; public static string texSeedNormal = "RoR2/Base/Seed/texSeedNormal.png"; public static string texShieldBugDiffuse = "RoR2/Base/ShieldOnly/texShieldBugDiffuse.png"; public static string texShieldBugEmission = "RoR2/Base/ShieldOnly/texShieldBugEmission.png"; public static string texShieldBugIcon = "RoR2/Base/ShieldOnly/texShieldBugIcon.png"; public static string texShieldBugNormal = "RoR2/Base/ShieldOnly/texShieldBugNormal.png"; public static string texShinyPearlIcon = "RoR2/Base/ShinyPearl/texShinyPearlIcon.png"; public static string texBuffTeslaIcon = "RoR2/Base/ShockNearby/texBuffTeslaIcon.tif"; public static string texTeslaCoilDiffuse = "RoR2/Base/ShockNearby/texTeslaCoilDiffuse.png"; public static string texTeslaCoilIcon = "RoR2/Base/ShockNearby/texTeslaCoilIcon.png"; public static string texTeslaCoilNormal = "RoR2/Base/ShockNearby/texTeslaCoilNormal.png"; public static string texFlowTar = "RoR2/Base/SiphonOnLowHealth/texFlowTar.PNG"; public static string texMiredUrnNormal = "RoR2/Base/SiphonOnLowHealth/texMiredUrnNormal.png"; public static string texMiredUrnNormal2 = "RoR2/Base/SiphonOnLowHealth/texMiredUrnNormal2.png"; public static string texSiphonOnLowHealthDiffuse = "RoR2/Base/SiphonOnLowHealth/texSiphonOnLowHealthDiffuse.png"; public static string texSiphonOnLowHealthIcon = "RoR2/Base/SiphonOnLowHealth/texSiphonOnLowHealthIcon.png"; public static string texSiphonOnLowHealthNormals = "RoR2/Base/SiphonOnLowHealth/texSiphonOnLowHealthNormals.png"; public static string texBaubleDiffuse = "RoR2/Base/SlowOnHit/texBaubleDiffuse.png"; public static string texBaubleIcon = "RoR2/Base/SlowOnHit/texBaubleIcon.png"; public static string texBaubleNormal = "RoR2/Base/SlowOnHit/texBaubleNormal.png"; public static string texBaubleSandNormal = "RoR2/Base/SlowOnHit/texBaubleSandNormal.png"; public static string texBucklerDiffuse1 = "RoR2/Base/SprintArmor/texBucklerDiffuse 1.png"; public static string texBucklerDiffuse = "RoR2/Base/SprintArmor/texBucklerDiffuse.png"; public static string texBucklerIcon = "RoR2/Base/SprintArmor/texBucklerIcon.png"; public static string texBucklerNormal = "RoR2/Base/SprintArmor/texBucklerNormal.png"; public static string texSodaDiffuse = "RoR2/Base/SprintBonus/texSodaDiffuse.png"; public static string texSodaDiffuse2 = "RoR2/Base/SprintBonus/texSodaDiffuse2.png"; public static string texSodaIcon = "RoR2/Base/SprintBonus/texSodaIcon.png"; public static string texWhipDiffuse = "RoR2/Base/SprintOutOfCombat/texWhipDiffuse.png"; public static string texWhipIcon = "RoR2/Base/SprintOutOfCombat/texWhipIcon.png"; public static string texWhipMask = "RoR2/Base/SprintOutOfCombat/texWhipMask.png"; public static string texBrokenMaskIcon = "RoR2/Base/SprintWisp/texBrokenMaskIcon.png"; public static string texSquidTurretIconOLD = "RoR2/Base/Squid/texSquidTurretIconOLD.png"; public static string texSquidPickupDiffuse = "RoR2/Base/Squid/tex_SquidPickup_Diffuse.png"; public static string texSplat2Mask = "RoR2/Base/Squid/texSplat2Mask.tif"; public static string texSquidPickupnormals = "RoR2/Base/Squid/texSquidPickup_normals.png"; public static string texSquidTurretDiffuse = "RoR2/Base/Squid/texSquidTurretDiffuse.png"; public static string texSquidTurretIcon = "RoR2/Base/Squid/texSquidTurretIcon.png"; public static string texSquidTurretNormals = "RoR2/Base/Squid/texSquidTurretNormals.png"; public static string texStickyBombDiffuse = "RoR2/Base/StickyBomb/texStickyBombDiffuse.png"; public static string texStickyBombIcon = "RoR2/Base/StickyBomb/texStickyBombIcon.png"; public static string texStickyBombMask = "RoR2/Base/StickyBomb/texStickyBombMask.png"; public static string texStickyBombNormal = "RoR2/Base/StickyBomb/texStickyBombNormal.png"; public static string texStunGrenadeDiffuse = "RoR2/Base/StunChanceOnHit/texStunGrenadeDiffuse.png"; public static string texStunGrenadeIcon = "RoR2/Base/StunChanceOnHit/texStunGrenadeIcon.png"; public static string texSyringeDiffuse = "RoR2/Base/Syringe/texSyringeDiffuse.png"; public static string texSyringeEmission = "RoR2/Base/Syringe/texSyringeEmission.png"; public static string texSyringeIcon = "RoR2/Base/Syringe/texSyringeIcon.png"; public static string texSyringeNormal = "RoR2/Base/Syringe/texSyringeNormal.png"; public static string texTalismanDiffuse = "RoR2/Base/Talisman/texTalismanDiffuse.png"; public static string texTalismanEmission = "RoR2/Base/Talisman/texTalismanEmission.png"; public static string texTalismanIcon = "RoR2/Base/Talisman/texTalismanIcon.png"; public static string texRazorwireDiffuse = "RoR2/Base/Thorns/texRazorwireDiffuse.png"; public static string texRazorwireIcon = "RoR2/Base/Thorns/texRazorwireIcon.png"; public static string texRazorwireMask = "RoR2/Base/Thorns/texRazorwireMask.png"; public static string texRazorwireNormal = "RoR2/Base/Thorns/texRazorwireNormal.png"; public static string texGoldHeartBlend = "RoR2/Base/TitanGoldDuringTP/texGoldHeartBlend.png"; public static string texGoldHeartDiffuse = "RoR2/Base/TitanGoldDuringTP/texGoldHeartDiffuse.png"; public static string texGoldHeartIcon = "RoR2/Base/TitanGoldDuringTP/texGoldHeartIcon.png"; public static string texGoldHeartNormal = "RoR2/Base/TitanGoldDuringTP/texGoldHeartNormal.png"; public static string texTonicAfflictionIcon = "RoR2/Base/TonicAffliction/texTonicAfflictionIcon.png"; public static string texMonsterToothDiffuse = "RoR2/Base/Tooth/texMonsterToothDiffuse.png"; public static string texToothNecklaceDisplacement = "RoR2/Base/Tooth/texToothNecklaceDisplacement.png"; public static string texToothNecklaceIcon = "RoR2/Base/Tooth/texToothNecklaceIcon.png"; public static string texToothNecklaceNormal = "RoR2/Base/Tooth/texToothNecklaceNormal.png"; public static string texGlowFlowerDiffuse = "RoR2/Base/TPHealingNova/texGlowFlowerDiffuse.png"; public static string texGlowFlowerEmission = "RoR2/Base/TPHealingNova/texGlowFlowerEmission.png"; public static string texGlowFlowerIcon = "RoR2/Base/TPHealingNova/texGlowFlowerIcon.png"; public static string texGlowFlowerNormal = "RoR2/Base/TPHealingNova/texGlowFlowerNormal.png"; public static string texKeyIcon = "RoR2/Base/TreasureCache/texKeyIcon.png"; public static string texAfterburnerIcon = "RoR2/Base/UtilitySkillMagazine/texAfterburnerIcon.png"; public static string texPauldronDiffuse = "RoR2/Base/WarCryOnMultiKill/texPauldronDiffuse.png"; public static string texPauldronIcon = "RoR2/Base/WarCryOnMultiKill/texPauldronIcon.png"; public static string texPauldronNormal = "RoR2/Base/WarCryOnMultiKill/texPauldronNormal.png"; public static string texSpeckles00Mask = "RoR2/Base/WarCryOnMultiKill/texSpeckles00Mask.png"; public static string texWarcryBuffIcon = "RoR2/Base/WarCryOnMultiKill/texWarcryBuffIcon.tif"; public static string texBuffWarbannerIcon = "RoR2/Base/WardOnLevel/texBuffWarbannerIcon.tif"; public static string texIndicatorWarbannerMask = "RoR2/Base/WardOnLevel/texIndicatorWarbannerMask.png"; public static string texWarbannerDiffuse = "RoR2/Base/WardOnLevel/texWarbannerDiffuse.png"; public static string texWarbannerIcon = "RoR2/Base/WardOnLevel/texWarbannerIcon.png"; public static string spmArenaKelpTreeAtlas = "RoR2/Base/arena/spmArenaKelpTree_Atlas.tga"; public static string spmArenaKelpTreeAtlasBillboards = "RoR2/Base/arena/spmArenaKelpTree_Atlas_Billboards.tga"; public static string spmArenaKelpTreeAtlasBillboardsNormal = "RoR2/Base/arena/spmArenaKelpTree_Atlas_Billboards_Normal.tga"; public static string texArenaKelpTreeBarkDiffuse = "RoR2/Base/arena/texArenaKelpTreeBarkDiffuse.tga"; public static string texArenaKelpTreeLeafMask = "RoR2/Base/arena/texArenaKelpTreeLeafMask.png"; public static string texArenaPreview = "RoR2/Base/arena/texArenaPreview.png"; public static string texTrimSheetArtifactDiffuse = "RoR2/Base/artifactworld/texTrimSheetArtifactDiffuse.png"; public static string texTrimSheetArtifactInactiveDiffuse1 = "RoR2/Base/artifactworld/texTrimSheetArtifactInactiveDiffuse 1.png"; public static string texTrimSheetArtifactInactiveDiffuse = "RoR2/Base/artifactworld/texTrimSheetArtifactInactiveDiffuse.png"; public static string texCommandPickerBG = "RoR2/Base/artifactworld/texCommandPickerBG.png"; public static string spmSGGrassAtlas = "RoR2/Base/artifactworld/spmSGGrass_Atlas.tga"; public static string texArtifactworldPreview = "RoR2/Base/artifactworld/texArtifactworldPreview.png"; public static string texBazaarLightMask = "RoR2/Base/bazaar/texBazaarLightMask.png"; public static string texBazaarDirt = "RoR2/Base/bazaar/texBazaarDirt.png"; public static string texBazaarRockSide = "RoR2/Base/bazaar/texBazaarRockSide.png"; public static string texBazaarBlueprintDiffuse = "RoR2/Base/bazaar/texBazaarBlueprintDiffuse.png"; public static string texBazaarBlueprintNormal = "RoR2/Base/bazaar/texBazaarBlueprintNormal.png"; public static string texBazaarCauldronDiffuse = "RoR2/Base/bazaar/texBazaarCauldronDiffuse.png"; public static string texBazaarCauldronNormal = "RoR2/Base/bazaar/texBazaarCauldronNormal.png"; public static string texBazaarCloth = "RoR2/Base/bazaar/texBazaarCloth.png"; public static string texBazaarLunarTableDiffuse = "RoR2/Base/bazaar/texBazaarLunarTableDiffuse.png"; public static string texBazaarLunarTableNormal = "RoR2/Base/bazaar/texBazaarLunarTableNormal.png"; public static string texBazaarUpgradeDiffuse = "RoR2/Base/bazaar/texBazaarUpgradeDiffuse.png"; public static string texBazaarUpgradeNormal = "RoR2/Base/bazaar/texBazaarUpgradeNormal.png"; public static string texNewtStatueDiffuse = "RoR2/Base/bazaar/texNewtStatueDiffuse.png"; public static string texNewtStatueNormal = "RoR2/Base/bazaar/texNewtStatueNormal.png"; public static string texBazaarPreview = "RoR2/Base/bazaar/texBazaarPreview.png"; public static string blackbeachRootDecalAlbedo = "RoR2/Base/blackbeach/blackbeachRootDecalAlbedo.png"; public static string blackbeachRootDecalNormals = "RoR2/Base/blackbeach/blackbeachRootDecalNormals.png"; public static string texBbDecalMask1 = "RoR2/Base/blackbeach/texBbDecalMask1.png"; public static string texBbDecalMask2 = "RoR2/Base/blackbeach/texBbDecalMask2.png"; public static string texMagmaWormGroundDecal = "RoR2/Base/blackbeach/texMagmaWormGroundDecal.png"; public static string spmBbGrass1Diffuse = "RoR2/Base/blackbeach/spmBbGrass1Diffuse.tga"; public static string spmBbBigFern1Atlas = "RoR2/Base/blackbeach/spmBbBigFern1_Atlas.tga"; public static string spmBbBigFern1AtlasBillboards = "RoR2/Base/blackbeach/spmBbBigFern1_Atlas_Billboards.tga"; public static string spmBbBigFern1AtlasBillboardsNormal = "RoR2/Base/blackbeach/spmBbBigFern1_Atlas_Billboards_Normal.tga"; public static string spmBbBigFern1AtlasNormal = "RoR2/Base/blackbeach/spmBbBigFern1_Atlas_Normal.tga"; public static string spmBbBigFern1YoungAtlas = "RoR2/Base/blackbeach/spmBbBigFern1Young_Atlas.tga"; public static string spmBbBigFern1YoungAtlasBillboards = "RoR2/Base/blackbeach/spmBbBigFern1Young_Atlas_Billboards.tga"; public static string spmBbBigFern1YoungAtlasBillboardsNormal = "RoR2/Base/blackbeach/spmBbBigFern1Young_Atlas_Billboards_Normal.tga"; public static string spmBbBigFern1YoungAtlasNormal = "RoR2/Base/blackbeach/spmBbBigFern1Young_Atlas_Normal.tga"; public static string spmBbBirchAtlas = "RoR2/Base/blackbeach/spmBbBirch_Atlas.tga"; public static string spmBbBirchAtlasBillboards = "RoR2/Base/blackbeach/spmBbBirch_Atlas_Billboards.tga"; public static string spmBbBirchAtlasBillboardsNormal = "RoR2/Base/blackbeach/spmBbBirch_Atlas_Billboards_Normal.tga"; public static string spmBbBirchAtlasNormal = "RoR2/Base/blackbeach/spmBbBirch_Atlas_Normal.tga"; public static string spmBbConifAtlas = "RoR2/Base/blackbeach/spmBbConif_Atlas.tga"; public static string spmBbConifAtlasBillboards = "RoR2/Base/blackbeach/spmBbConif_Atlas_Billboards.tga"; public static string spmBbConifAtlasBillboardsNormal = "RoR2/Base/blackbeach/spmBbConif_Atlas_Billboards_Normal.tga"; public static string spmBbConifAtlasNormal = "RoR2/Base/blackbeach/spmBbConif_Atlas_Normal.tga"; public static string spmBbConifAtlasSpecular = "RoR2/Base/blackbeach/spmBbConif_Atlas_Specular.tga"; public static string spmBbConifYoungAtlas = "RoR2/Base/blackbeach/spmBbConifYoung_Atlas.tga"; public static string spmBbConifYoungAtlasBillboards = "RoR2/Base/blackbeach/spmBbConifYoung_Atlas_Billboards.tga"; public static string spmBbConifYoungAtlasBillboardsNormal = "RoR2/Base/blackbeach/spmBbConifYoung_Atlas_Billboards_Normal.tga"; public static string spmBbConifYoungAtlasNormal = "RoR2/Base/blackbeach/spmBbConifYoung_Atlas_Normal.tga"; public static string spmBbConifYoungAtlasSpecular = "RoR2/Base/blackbeach/spmBbConifYoung_Atlas_Specular.tga"; public static string spmBbDryBushAtlas = "RoR2/Base/blackbeach/spmBbDryBush_Atlas.tga"; public static string spmBbDryBushAtlasBillboards = "RoR2/Base/blackbeach/spmBbDryBush_Atlas_Billboards.tga"; public static string spmBbDryBushAtlasBillboardsNormal = "RoR2/Base/blackbeach/spmBbDryBush_Atlas_Billboards_Normal.tga"; public static string spmBbDryBushAtlasNormal = "RoR2/Base/blackbeach/spmBbDryBush_Atlas_Normal.tga"; public static string spmBbFern1OldAtlas = "RoR2/Base/blackbeach/spmBbFern1Old_Atlas.tga"; public static string spmBbFern1OldAtlasBillboards = "RoR2/Base/blackbeach/spmBbFern1Old_Atlas_Billboards.tga"; public static string spmBbFern1OldAtlasBillboardsNormal = "RoR2/Base/blackbeach/spmBbFern1Old_Atlas_Billboards_Normal.tga"; public static string spmBbFern2Atlas = "RoR2/Base/blackbeach/spmBbFern2_Atlas.tga"; public static string spmBbFern2AtlasBillboards = "RoR2/Base/blackbeach/spmBbFern2_Atlas_Billboards.tga"; public static string spmBbFern2AtlasBillboardsNormal = "RoR2/Base/blackbeach/spmBbFern2_Atlas_Billboards_Normal.tga"; public static string spmBbFern2AtlasNormal = "RoR2/Base/blackbeach/spmBbFern2_Atlas_Normal.tga"; public static string spmBbFern3Atlas = "RoR2/Base/blackbeach/spmBbFern3_Atlas.tga"; public static string spmBbFern3AtlasNormal = "RoR2/Base/blackbeach/spmBbFern3_Atlas_Normal.tga"; public static string spmBbFern3DirectionalAtlas = "RoR2/Base/blackbeach/spmBbFern3Directional_Atlas.tga"; public static string spmBbFern3DirectionalAtlasNormal = "RoR2/Base/blackbeach/spmBbFern3Directional_Atlas_Normal.tga"; public static string spmBbFoxtrotAtlas = "RoR2/Base/blackbeach/spmBbFoxtrot_Atlas.tga"; public static string spmBbFoxtrotAtlasNormal = "RoR2/Base/blackbeach/spmBbFoxtrot_Atlas_Normal.tga"; public static string spmBbFoxtrotoptAtlas = "RoR2/Base/blackbeach/spmBbFoxtrot_opt_Atlas.tga"; public static string spmBbFoxtrotoptAtlasNormal = "RoR2/Base/blackbeach/spmBbFoxtrot_opt_Atlas_Normal.tga"; public static string spmBbGrass1Atlas = "RoR2/Base/blackbeach/spmBbGrass1_Atlas.tga"; public static string spmBbIvy1Atlas = "RoR2/Base/blackbeach/spmBbIvy1_Atlas.tga"; public static string spmBbIvy1AtlasNormal = "RoR2/Base/blackbeach/spmBbIvy1_Atlas_Normal.tga"; public static string spmBbVine1Atlas = "RoR2/Base/blackbeach/spmBbVine1_Atlas.tga"; public static string texBbBirchBarkDiffuse = "RoR2/Base/blackbeach/texBbBirchBarkDiffuse.tga"; public static string texBbBirchBarkNormal = "RoR2/Base/blackbeach/texBbBirchBarkNormal.tga"; public static string texBigFern1BranchDiffuse = "RoR2/Base/blackbeach/texBigFern1BranchDiffuse.tga"; public static string texConifBarkDiffuse = "RoR2/Base/blackbeach/texConifBarkDiffuse.tga"; public static string texConifBarkNormal = "RoR2/Base/blackbeach/texConifBarkNormal.tga"; public static string texFoxtrotBranch = "RoR2/Base/blackbeach/texFoxtrotBranch.tga"; public static string blackbeachTerrainBlend = "RoR2/Base/blackbeach/blackbeachTerrainBlend.png"; public static string texBBGrassV2Diffuse = "RoR2/Base/blackbeach/texBBGrassV2Diffuse.png"; public static string texBBMudDiffuse = "RoR2/Base/blackbeach/texBBMudDiffuse.png"; public static string texBBPineNeedle = "RoR2/Base/blackbeach/texBBPineNeedle.png"; public static string texBbRuinBlend = "RoR2/Base/blackbeach/texBbRuinBlend.png"; public static string texBlackbeachBasicRockSide = "RoR2/Base/blackbeach/texBlackbeachBasicRockSide.png"; public static string texBlackbeachBasicRockTop = "RoR2/Base/blackbeach/texBlackbeachBasicRockTop.png"; public static string texBlackbeachSnowRock = "RoR2/Base/blackbeach/texBlackbeachSnowRock.psd"; public static string texBlackSand = "RoR2/Base/blackbeach/texBlackSand.png"; public static string texBbRuinDebrisDiffuse = "RoR2/Base/blackbeach/texBbRuinDebrisDiffuse.png"; public static string texBbRuinDebrisNormal = "RoR2/Base/blackbeach/texBbRuinDebrisNormal.png"; public static string texBlackbeachDistantTreeline = "RoR2/Base/blackbeach/texBlackbeachDistantTreeline.png"; public static string texBlackbeachPreview = "RoR2/Base/blackbeach/texBlackbeachPreview.png"; public static string spmDCFern1Atlas = "RoR2/Base/dampcave/spmDCFern1_Atlas.tga"; public static string spmDCFern1AtlasNormal = "RoR2/Base/dampcave/spmDCFern1_Atlas_Normal.tga"; public static string spmDCFern1optAtlas = "RoR2/Base/dampcave/spmDCFern1_opt_Atlas.tga"; public static string texDCGrass = "RoR2/Base/dampcave/texDCGrass.png"; public static string texDCGravelDiffuse = "RoR2/Base/dampcave/texDCGravelDiffuse.png"; public static string texDCHeatvent1Diffuse = "RoR2/Base/dampcave/texDCHeatvent1Diffuse.png"; public static string texDCHeatvent1Normal = "RoR2/Base/dampcave/texDCHeatvent1Normal.png"; public static string texDCRockSide = "RoR2/Base/dampcave/texDCRockSide.png"; public static string texDCSulfur = "RoR2/Base/dampcave/texDCSulfur.png"; public static string texDampcavePreview = "RoR2/Base/dampcavesimple/texDampcavePreview.png"; public static string bbCloverfieldLargeAtlas = "RoR2/Base/foggyswamp/bbCloverfieldLarge_Atlas.tga"; public static string bbCloverfieldLargeAtlasBillboards = "RoR2/Base/foggyswamp/bbCloverfieldLarge_Atlas_Billboards.tga"; public static string bbCloverfieldLargeAtlasBillboardsNormal = "RoR2/Base/foggyswamp/bbCloverfieldLarge_Atlas_Billboards_Normal.tga"; public static string bbCloverfieldLargeAtlasNormal = "RoR2/Base/foggyswamp/bbCloverfieldLarge_Atlas_Normal.tga"; public static string bbCloverfieldLargeSparseAtlas = "RoR2/Base/foggyswamp/bbCloverfieldLargeSparse_Atlas.tga"; public static string bbCloverfieldLargeSparseAtlasBillboards = "RoR2/Base/foggyswamp/bbCloverfieldLargeSparse_Atlas_Billboards.tga"; public static string bbCloverfieldLargeSparseAtlasBillboardsNormal = "RoR2/Base/foggyswamp/bbCloverfieldLargeSparse_Atlas_Billboards_Normal.tga"; public static string bbCloverfieldLargeSparseAtlasNormal = "RoR2/Base/foggyswamp/bbCloverfieldLargeSparse_Atlas_Normal.tga"; public static string texCloverfieldStemDiffuse = "RoR2/Base/foggyswamp/texCloverfieldStemDiffuse.tga"; public static string spmDanglingMossClusterAtlas = "RoR2/Base/foggyswamp/spmDanglingMossCluster_Atlas.tga"; public static string spmDanglingMossClusterAtlasBillboards = "RoR2/Base/foggyswamp/spmDanglingMossCluster_Atlas_Billboards.tga"; public static string spmDanglingMossClusterAtlasBillboardsNormal = "RoR2/Base/foggyswamp/spmDanglingMossCluster_Atlas_Billboards_Normal.tga"; public static string spmDanglingMossClusterAtlasNormal = "RoR2/Base/foggyswamp/spmDanglingMossCluster_Atlas_Normal.tga"; public static string spmDanglingMossSpreadAtlas = "RoR2/Base/foggyswamp/spmDanglingMossSpread_Atlas.tga"; public static string spmDanglingMossSpreadAtlasBillboards = "RoR2/Base/foggyswamp/spmDanglingMossSpread_Atlas_Billboards.tga"; public static string spmDanglingMossSpreadAtlasBillboardsNormal = "RoR2/Base/foggyswamp/spmDanglingMossSpread_Atlas_Billboards_Normal.tga"; public static string spmDanglingMossSpreadAtlasNormal = "RoR2/Base/foggyswamp/spmDanglingMossSpread_Atlas_Normal.tga"; public static string foggyswampbasetreerefAtlas = "RoR2/Base/foggyswamp/foggyswamp base tree ref_Atlas.tga"; public static string foggyswampbasetreerefAtlasNormal = "RoR2/Base/foggyswamp/foggyswamp base tree ref_Atlas_Normal.tga"; public static string spmFSFernGreyscaleAtlas = "RoR2/Base/foggyswamp/spmFSFernGreyscale_Atlas.tga"; public static string spmFSFoxtrotAtlas1 = "RoR2/Base/foggyswamp/spmFSFoxtrot_Atlas 1.tga"; public static string texFSTreeBarkDiffuse6 = "RoR2/Base/foggyswamp/texFSTreeBarkDiffuse.tga"; public static string texFSTreeBarkNormal = "RoR2/Base/foggyswamp/texFSTreeBarkNormal.tga"; public static string texFSLichen = "RoR2/Base/foggyswamp/texFSLichen.png"; public static string texFSLichen28 = "RoR2/Base/foggyswamp/texFSLichen.tga"; public static string texFoggyswampPreview = "RoR2/Base/foggyswamp/texFoggyswampPreview.png"; public static string texFWChainLinkDiffuse = "RoR2/Base/frozenwall/texFWChainLinkDiffuse.png"; public static string texFWChainLinkNormal = "RoR2/Base/frozenwall/texFWChainLinkNormal.png"; public static string texHangingCloth1Flowmap = "RoR2/Base/frozenwall/texHangingCloth1Flowmap.png"; public static string texHangingCloth1Normal = "RoR2/Base/frozenwall/texHangingCloth1Normal.png"; public static string texHangingCloth1NormalTiled = "RoR2/Base/frozenwall/texHangingCloth1NormalTiled.png"; public static string texRippedClothDiffuse = "RoR2/Base/frozenwall/texRippedClothDiffuse.png"; public static string spmFWPine1Atlas = "RoR2/Base/frozenwall/spmFWPine1_Atlas.tga"; public static string spmFWPine1AtlasBillboards = "RoR2/Base/frozenwall/spmFWPine1_Atlas_Billboards.tga"; public static string spmFWPine1AtlasBillboardsNormal = "RoR2/Base/frozenwall/spmFWPine1_Atlas_Billboards_Normal.tga"; public static string spmFWPine1AtlasNormal = "RoR2/Base/frozenwall/spmFWPine1_Atlas_Normal.tga"; public static string spmFWPine1optAtlas = "RoR2/Base/frozenwall/spmFWPine1_opt_Atlas.tga"; public static string spmFWPine1optAtlasBillboards = "RoR2/Base/frozenwall/spmFWPine1_opt_Atlas_Billboards.tga"; public static string spmFWPine1optAtlasBillboardsNormal = "RoR2/Base/frozenwall/spmFWPine1_opt_Atlas_Billboards_Normal.tga"; public static string spmFWPine1optAtlasNormal = "RoR2/Base/frozenwall/spmFWPine1_opt_Atlas_Normal.tga"; public static string texFWPineBarkDiffuse = "RoR2/Base/frozenwall/texFWPineBarkDiffuse.tga"; public static string texFWPineBarkNormal = "RoR2/Base/frozenwall/texFWPineBarkNormal.tga"; public static string texFWBasicRockSide = "RoR2/Base/frozenwall/texFWBasicRockSide.png"; public static string texFWIceDiffuse = "RoR2/Base/frozenwall/texFWIceDiffuse.png"; public static string texFWIceNormal = "RoR2/Base/frozenwall/texFWIceNormal.png"; public static string texFrozenwallPreview = "RoR2/Base/frozenwall/texFrozenwallPreview.png"; public static string texCoinpileDiffuse = "RoR2/Base/goldshores/texCoinpileDiffuse.png"; public static string texCoinpileNormals = "RoR2/Base/goldshores/texCoinpileNormals.png"; public static string texGoldshoresPreview = "RoR2/Base/goldshores/texGoldshoresPreview.png"; public static string spmGPFlowerAtlas = "RoR2/Base/golemplains/spmGPFlower_Atlas.tga"; public static string spmGPFlowerAtlasBillboards = "RoR2/Base/golemplains/spmGPFlower_Atlas_Billboards.tga"; public static string spmGPFlowerAtlasBillboardsNormal = "RoR2/Base/golemplains/spmGPFlower_Atlas_Billboards_Normal.tga"; public static string spmGPFlowerAtlasNormal = "RoR2/Base/golemplains/spmGPFlower_Atlas_Normal.tga"; public static string texGPFlowerBarkDiffuse = "RoR2/Base/golemplains/texGPFlowerBarkDiffuse.tga"; public static string spmGPGrassAtlas = "RoR2/Base/golemplains/spmGPGrass_Atlas.tga"; public static string texGPRockSide = "RoR2/Base/golemplains/texGPRockSide.png"; public static string texGolemplainsPreview = "RoR2/Base/golemplains/texGolemplainsPreview.png"; public static string golemPlainsRemix = "RoR2/Base/golemplains2/golemPlainsRemix.png"; public static string spmGlBamboo1Atlas = "RoR2/Base/goolake/spmGlBamboo1_Atlas.tga"; public static string spmGlBamboo1AtlasBillboards = "RoR2/Base/goolake/spmGlBamboo1_Atlas_Billboards.tga"; public static string spmGlBamboo1AtlasBillboardsNormal = "RoR2/Base/goolake/spmGlBamboo1_Atlas_Billboards_Normal.tga"; public static string spmGlBamboo1AtlasNormal = "RoR2/Base/goolake/spmGlBamboo1_Atlas_Normal.tga"; public static string spmGlBamboo1LargeAtlas = "RoR2/Base/goolake/spmGlBamboo1Large_Atlas.tga"; public static string spmGlBamboo1LargeAtlasBillboards = "RoR2/Base/goolake/spmGlBamboo1Large_Atlas_Billboards.tga"; public static string spmGlBamboo1LargeAtlasBillboardsNormal = "RoR2/Base/goolake/spmGlBamboo1Large_Atlas_Billboards_Normal.tga"; public static string spmGlBamboo1LargeAtlasNormal = "RoR2/Base/goolake/spmGlBamboo1Large_Atlas_Normal.tga"; public static string spmGlCactusBush1Atlas = "RoR2/Base/goolake/spmGlCactusBush1_Atlas.tga"; public static string spmGlCactusBush1AtlasNormal = "RoR2/Base/goolake/spmGlCactusBush1_Atlas_Normal.tga"; public static string spmGlCactusBush1optAtlas = "RoR2/Base/goolake/spmGlCactusBush1_opt_Atlas.tga"; public static string spmGlGrass1Atlas = "RoR2/Base/goolake/spmGlGrass1_Atlas.tga"; public static string texGlBamboo1Diffuse = "RoR2/Base/goolake/texGlBamboo1Diffuse.tga"; public static string goolakerough = "RoR2/Base/goolake/goolake_rough.psd"; public static string texGLMudDiffuse = "RoR2/Base/goolake/texGLMudDiffuse.png"; public static string texGLRockSide = "RoR2/Base/goolake/texGLRockSide.png"; public static string texGoolakeGrate = "RoR2/Base/goolake/texGoolakeGrate.png"; public static string texShrineTrimDiffuse = "RoR2/Base/goolake/texShrineTrimDiffuse.png"; public static string texShrineTrimNormal = "RoR2/Base/goolake/texShrineTrimNormal.png"; public static string texGoolakePreview = "RoR2/Base/goolake/texGoolakePreview.png"; public static string texColonyShipPoint = "RoR2/Base/intro/texColonyShipPoint.psd"; public static string texTrimSheetAlien3HumanRecolorDiffuse = "RoR2/Base/intro/texTrimSheetAlien3HumanRecolorDiffuse.png"; public static string texTrimSheetAlien3HumanRecolorNormal = "RoR2/Base/intro/texTrimSheetAlien3HumanRecolorNormal.png"; public static string texTrimSheetMetalVibrantColonyShip = "RoR2/Base/intro/texTrimSheetMetalVibrantColonyShip.png"; public static string texCutscenePlanetDiffuse = "RoR2/Base/intro/texCutscenePlanetDiffuse.png"; public static string texCutscenePlanetFlattenedDiffuse = "RoR2/Base/intro/texCutscenePlanetFlattenedDiffuse.png"; public static string texCutscenePlanetNormal = "RoR2/Base/intro/texCutscenePlanetNormal.png"; public static string texIntroStars = "RoR2/Base/intro/texIntroStars.png"; public static string texContactLightWireframe = "RoR2/Base/intro/texContactLightWireframe.png"; public static string texLimboPreview = "RoR2/Base/limbo/texLimboPreview.png"; public static string childRunstrip1 = "RoR2/Base/loadingbasic/childRun_strip1.png"; public static string commandoWalkstrip8 = "RoR2/Base/loadingbasic/commandoWalk_strip8.png"; public static string droneHoverstrip = "RoR2/Base/loadingbasic/droneHover_strip.png"; public static string golemWalkstrip6 = "RoR2/Base/loadingbasic/golemWalk_strip6.png"; public static string lemurianWalkstrip8 = "RoR2/Base/loadingbasic/lemurianWalk_strip8.png"; public static string loaderRunstrip1 = "RoR2/Base/loadingbasic/loaderRun_strip1.png"; public static string texCommandoWalkBW = "RoR2/Base/loadingbasic/texCommandoWalkBW.png"; public static string texGolemWalkBW = "RoR2/Base/loadingbasic/texGolemWalkBW.png"; public static string texLemurianWalkBW = "RoR2/Base/loadingbasic/texLemurianWalkBW.png"; public static string texLobbyPreview = "RoR2/Base/lobby/texLobbyPreview.png"; public static string texLunarForgeDiffuse = "RoR2/Base/moon/texLunarForgeDiffuse.psd"; public static string texLunarForgeNormal = "RoR2/Base/moon/texLunarForgeNormal.png"; public static string texMoonGhostGrass = "RoR2/Base/moon/texMoonGhostGrass.png"; public static string texMoonGrass1Diffuse4 = "RoR2/Base/moon/texMoonGrass1Diffuse.png"; public static string texSilverRootsDiffuse = "RoR2/Base/moon/texSilverRootsDiffuse.tga"; public static string texSilverRootsNormal = "RoR2/Base/moon/texSilverRootsNormal.tga"; public static string texMoonConcreteDiffuse = "RoR2/Base/moon/texMoonConcreteDiffuse.png"; public static string texMoonDirtDiffuse = "RoR2/Base/moon/texMoonDirtDiffuse.png"; public static string texMoonGrass = "RoR2/Base/moon/texMoonGrass.png"; public static string texMoonRockSide1 = "RoR2/Base/moon/texMoonRockSide 1.png"; public static string texMoonRockSide = "RoR2/Base/moon/texMoonRockSide.png"; public static string texMoonRockSideLight = "RoR2/Base/moon/texMoonRockSideLight.png"; public static string texMoonSkyboxChunks = "RoR2/Base/moon/texMoonSkyboxChunks.png"; public static string texMoonSkyboxNormal = "RoR2/Base/moon/texMoonSkyboxNormal.png"; public static string texMoonPreview = "RoR2/Base/moon2/texMoonPreview.png"; public static string texMSEasterEgg1Diffuse = "RoR2/Base/mysteryspace/texMSEasterEgg1Diffuse.png"; public static string texMSEasterEgg2Diffuse = "RoR2/Base/mysteryspace/texMSEasterEgg2Diffuse.png"; public static string texMSEasterEgg3Diffuse = "RoR2/Base/mysteryspace/texMSEasterEgg3Diffuse.png"; public static string texMSSandDiffuse = "RoR2/Base/mysteryspace/texMSSandDiffuse.png"; public static string texMSSandNormal = "RoR2/Base/mysteryspace/texMSSandNormal.png"; public static string texMSObeliskDiffuse = "RoR2/Base/mysteryspace/texMSObeliskDiffuse.png"; public static string texMSObeliskNormal = "RoR2/Base/mysteryspace/texMSObeliskNormal.png"; public static string texMysterySpacePreview = "RoR2/Base/mysteryspace/texMysterySpacePreview.png"; public static string Material2Color = "RoR2/Base/rootjungle/Material_2_Color.png"; public static string RJDistantTreeFoliageColor = "RoR2/Base/rootjungle/RJDistantTreeFoliage_Color.png"; public static string RJDistantTreeFoliageNormal = "RoR2/Base/rootjungle/RJDistantTreeFoliage_Normal.png"; public static string RJDistantTreeFoliageoptColor = "RoR2/Base/rootjungle/RJDistantTreeFoliage_opt_Color.png"; public static string RJDistantTreeFoliageCard = "RoR2/Base/rootjungle/RJDistantTreeFoliageCard.png"; public static string RJTowerTreeBark = "RoR2/Base/rootjungle/RJTowerTreeBark.png"; public static string RJTowerTreeFoliage = "RoR2/Base/rootjungle/RJTowerTreeFoliage.png"; public static string RJfernBillboardColor = "RoR2/Base/rootjungle/RJfern_Billboard_Color.png"; public static string RJfernBillboardNormal = "RoR2/Base/rootjungle/RJfern_Billboard_Normal.png"; public static string RJfernBillboardSubsurface = "RoR2/Base/rootjungle/RJfern_Billboard_Subsurface.png"; public static string RJfernColor = "RoR2/Base/rootjungle/RJfern_Color.png"; public static string spmRJgrass1BillboardColor = "RoR2/Base/rootjungle/spmRJgrass1_Billboard_Color.png"; public static string spmRJgrass1BillboardExtra = "RoR2/Base/rootjungle/spmRJgrass1_Billboard_Extra.png"; public static string spmRJgrass1BillboardNormal = "RoR2/Base/rootjungle/spmRJgrass1_Billboard_Normal.png"; public static string spmRJgrass1BillboardSubsurface = "RoR2/Base/rootjungle/spmRJgrass1_Billboard_Subsurface.png"; public static string spmRJgrass1Color = "RoR2/Base/rootjungle/spmRJgrass1_Color.png"; public static string spmRJgrass1Extra = "RoR2/Base/rootjungle/spmRJgrass1_Extra.png"; public static string spmRJgrass1Normal = "RoR2/Base/rootjungle/spmRJgrass1_Normal.png"; public static string spmRJgrass1Subsurface = "RoR2/Base/rootjungle/spmRJgrass1_Subsurface.png"; public static string spmRJgrass2BillboardColor = "RoR2/Base/rootjungle/spmRJgrass2_Billboard_Color.png"; public static string spmRJgrass2BillboardExtra = "RoR2/Base/rootjungle/spmRJgrass2_Billboard_Extra.png"; public static string spmRJgrass2BillboardNormal = "RoR2/Base/rootjungle/spmRJgrass2_Billboard_Normal.png"; public static string spmRJgrass2BillboardSubsurface = "RoR2/Base/rootjungle/spmRJgrass2_Billboard_Subsurface.png"; public static string spmRJgrass2Color = "RoR2/Base/rootjungle/spmRJgrass2_Color.png"; public static string spmRJgrass2Extra = "RoR2/Base/rootjungle/spmRJgrass2_Extra.png"; public static string spmRJgrass2Normal = "RoR2/Base/rootjungle/spmRJgrass2_Normal.png"; public static string spmRJgrass2Subsurface = "RoR2/Base/rootjungle/spmRJgrass2_Subsurface.png"; public static string RJHangingMossColor = "RoR2/Base/rootjungle/RJHangingMoss_Color.png"; public static string RJMossFoliageBillboardColor = "RoR2/Base/rootjungle/RJMossFoliage_Billboard_Color.png"; public static string RJMossFoliageBillboardExtra = "RoR2/Base/rootjungle/RJMossFoliage_Billboard_Extra.png"; public static string RJMossFoliageBillboardNormal = "RoR2/Base/rootjungle/RJMossFoliage_Billboard_Normal.png"; public static string RJMossFoliageColor = "RoR2/Base/rootjungle/RJMossFoliage_Color.png"; public static string RJMossFoliageNormal = "RoR2/Base/rootjungle/RJMossFoliage_Normal.png"; public static string RJpinkshroomBillboardColor = "RoR2/Base/rootjungle/RJpinkshroom_Billboard_Color.png"; public static string RJpinkshroomBillboardNormal = "RoR2/Base/rootjungle/RJpinkshroom_Billboard_Normal.png"; public static string RJpinkshroomColor = "RoR2/Base/rootjungle/RJpinkshroom_Color.png"; public static string RJpinkshroomNormal = "RoR2/Base/rootjungle/RJpinkshroom_Normal.png"; public static string texRJpinkshroomEmission = "RoR2/Base/rootjungle/texRJpinkshroomEmission.png"; public static string RJShroomFoliageBillboardColor = "RoR2/Base/rootjungle/RJShroomFoliage_Billboard_Color.png"; public static string RJShroomFoliageBillboardExtra = "RoR2/Base/rootjungle/RJShroomFoliage_Billboard_Extra.png"; public static string RJShroomFoliageBillboardNormal = "RoR2/Base/rootjungle/RJShroomFoliage_Billboard_Normal.png"; public static string RJShroomFoliageBillboardSubsurface = "RoR2/Base/rootjungle/RJShroomFoliage_Billboard_Subsurface.png"; public static string RJShroomFoliageColor = "RoR2/Base/rootjungle/RJShroomFoliage_Color.png"; public static string RJShroomFoliageExtra = "RoR2/Base/rootjungle/RJShroomFoliage_Extra.png"; public static string RJShroomFoliageNormal = "RoR2/Base/rootjungle/RJShroomFoliage_Normal.png"; public static string RJTowerTreeFoliageBillboardColor = "RoR2/Base/rootjungle/RJTowerTreeFoliage_Billboard_Color.png"; public static string RJTowerTreeFoliageBillboardExtra = "RoR2/Base/rootjungle/RJTowerTreeFoliage_Billboard_Extra.png"; public static string RJTowerTreeFoliageBillboardNormal = "RoR2/Base/rootjungle/RJTowerTreeFoliage_Billboard_Normal.png"; public static string RJTowerTreeFoliageBillboardSubsurface = "RoR2/Base/rootjungle/RJTowerTreeFoliage_Billboard_Subsurface.png"; public static string RJTowerTreeFoliageColor = "RoR2/Base/rootjungle/RJTowerTreeFoliage_Color.png"; public static string RJTowerTreeFoliageExtra = "RoR2/Base/rootjungle/RJTowerTreeFoliage_Extra.png"; public static string RJTowerTreeFoliageNormal = "RoR2/Base/rootjungle/RJTowerTreeFoliage_Normal.png"; public static string RJTowerTreeFoliageoptColor = "RoR2/Base/rootjungle/RJTowerTreeFoliage_opt_Color.png"; public static string RJTreeBigFoliageBillboardColor = "RoR2/Base/rootjungle/RJTreeBigFoliage_Billboard_Color.png"; public static string RJTreeBigFoliageBillboardExtra = "RoR2/Base/rootjungle/RJTreeBigFoliage_Billboard_Extra.png"; public static string RJTreeBigFoliageBillboardNormal = "RoR2/Base/rootjungle/RJTreeBigFoliage_Billboard_Normal.png"; public static string RJTreeBigFoliageColor = "RoR2/Base/rootjungle/RJTreeBigFoliage_Color.png"; public static string RJTreeBigFoliageExtra = "RoR2/Base/rootjungle/RJTreeBigFoliage_Extra.png"; public static string RJTreeBigFoliageNormal = "RoR2/Base/rootjungle/RJTreeBigFoliage_Normal.png"; public static string texRootJungleSpore = "RoR2/Base/rootjungle/texRootJungleSpore.png"; public static string spmRJgrasstestBillboardColor = "RoR2/Base/rootjungle/spmRJgrasstest_Billboard_Color.png"; public static string spmRJgrasstestBillboardExtra = "RoR2/Base/rootjungle/spmRJgrasstest_Billboard_Extra.png"; public static string spmRJgrasstestBillboardNormal = "RoR2/Base/rootjungle/spmRJgrasstest_Billboard_Normal.png"; public static string spmRJgrasstestBillboardSubsurface = "RoR2/Base/rootjungle/spmRJgrasstest_Billboard_Subsurface.png"; public static string spmRJgrasstestColor = "RoR2/Base/rootjungle/spmRJgrasstest_Color.png"; public static string spmRJgrasstestNormal = "RoR2/Base/rootjungle/spmRJgrasstest_Normal.png"; public static string texRootjunglePreview = "RoR2/Base/rootjungle/texRootjunglePreview.png"; public static string texRJDirtDiffuse = "RoR2/Base/rootjungle/texRJDirtDiffuse.png"; public static string texRJGrassTerrain = "RoR2/Base/rootjungle/texRJGrassTerrain.png"; public static string texRJGrassTerrain2 = "RoR2/Base/rootjungle/texRJGrassTerrain2.png"; public static string texRJLichenTerrain = "RoR2/Base/rootjungle/texRJLichenTerrain.png"; public static string texRJMoss = "RoR2/Base/rootjungle/texRJMoss.png"; public static string texRJMossPatch1Diffuse = "RoR2/Base/rootjungle/texRJMossPatch1Diffuse.png"; public static string texRJMossPatch1Normal = "RoR2/Base/rootjungle/texRJMossPatch1Normal.png"; public static string texRJMossPatch2Diffuse = "RoR2/Base/rootjungle/texRJMossPatch2Diffuse.png"; public static string texRJMossPatch2Normal = "RoR2/Base/rootjungle/texRJMossPatch2Normal.png"; public static string texRJMossPatchLargeDiffuse = "RoR2/Base/rootjungle/texRJMossPatchLargeDiffuse.png"; public static string texRJMossPatchLargeNormal = "RoR2/Base/rootjungle/texRJMossPatchLargeNormal.png"; public static string texRJRockNormal = "RoR2/Base/rootjungle/texRJRockNormal.png"; public static string texRJShroomBigDiffuse = "RoR2/Base/rootjungle/texRJShroomBigDiffuse.png"; public static string texRJShroomBigEmissive = "RoR2/Base/rootjungle/texRJShroomBigEmissive.png"; public static string texRJShroomBigNormal = "RoR2/Base/rootjungle/texRJShroomBigNormal.png"; public static string texRJShroomBigSplatmap = "RoR2/Base/rootjungle/texRJShroomBigSplatmap.png"; public static string texRJShroomBounceDiffuse = "RoR2/Base/rootjungle/texRJShroomBounceDiffuse.png"; public static string texRJShroomBounceNormal = "RoR2/Base/rootjungle/texRJShroomBounceNormal.png"; public static string texRJShroomShelfDiffuse = "RoR2/Base/rootjungle/texRJShroomShelfDiffuse.png"; public static string texRJShroomShelfEmissive = "RoR2/Base/rootjungle/texRJShroomShelfEmissive.png"; public static string texRJShroomShelfNormal = "RoR2/Base/rootjungle/texRJShroomShelfNormal.png"; public static string texRJShroomShelfSplatmap = "RoR2/Base/rootjungle/texRJShroomShelfSplatmap.png"; public static string texRJShroomSmallDiffuse = "RoR2/Base/rootjungle/texRJShroomSmallDiffuse.png"; public static string texRJShroomSmallEmissive = "RoR2/Base/rootjungle/texRJShroomSmallEmissive.png"; public static string texRJShroomSmallNormal = "RoR2/Base/rootjungle/texRJShroomSmallNormal.png"; public static string texRJShroomSmallSplatmap = "RoR2/Base/rootjungle/texRJShroomSmallSplatmap.png"; public static string texRJTree = "RoR2/Base/rootjungle/texRJTree.png"; public static string texRJTreeNormal = "RoR2/Base/rootjungle/texRJTreeNormal.png"; public static string texRJTreeTop = "RoR2/Base/rootjungle/texRJTreeTop.png"; public static string texRJTriangleDiffuse = "RoR2/Base/rootjungle/texRJTriangleDiffuse.png"; public static string texRJTriangleNormal = "RoR2/Base/rootjungle/texRJTriangleNormal.png"; public static string spmSGGrassAtlas22 = "RoR2/Base/shipgraveyard/spmSGGrass_Atlas.tga"; public static string spmSGMushroom1ClusterAtlas = "RoR2/Base/shipgraveyard/spmSGMushroom1Cluster_Atlas.tga"; public static string spmSGMushroom1TightAtlas = "RoR2/Base/shipgraveyard/spmSGMushroom1Tight_Atlas.tga"; public static string texSGMushroom1Height = "RoR2/Base/shipgraveyard/texSGMushroom1Height.png"; public static string spmSGMushroom2ClusterAtlas = "RoR2/Base/shipgraveyard/spmSGMushroom2Cluster_Atlas.tga"; public static string texSGMushroom2Height = "RoR2/Base/shipgraveyard/texSGMushroom2Height.png"; public static string texSGCompositeGrassTest = "RoR2/Base/shipgraveyard/texSGCompositeGrassTest.png"; public static string texSGCompositeWallTest = "RoR2/Base/shipgraveyard/texSGCompositeWallTest.png"; public static string texSGGrassTerrain = "RoR2/Base/shipgraveyard/texSGGrassTerrain.psd"; public static string texSGWalls = "RoR2/Base/shipgraveyard/texSGWalls.psd"; public static string texShipgraveyardPreview = "RoR2/Base/shipgraveyard/texShipgraveyardPreview.png"; public static string texVultureEggBody = "RoR2/Base/shipgraveyard/texVultureEggBody.png"; public static string spmSMFruitPlantAtlasEmission = "RoR2/Base/skymeadow/spmSMFruitPlant_Atlas Emission.tga"; public static string spmSMFruitPlantAtlasNormal = "RoR2/Base/skymeadow/spmSMFruitPlant_Atlas Normal.tga"; public static string spmSMFruitPlantAtlas = "RoR2/Base/skymeadow/spmSMFruitPlant_Atlas.tga"; public static string spmSMFruitPlantAtlasBillboardsEmission = "RoR2/Base/skymeadow/spmSMFruitPlant_Atlas_Billboards Emission.tga"; public static string spmSMFruitPlantAtlasBillboards = "RoR2/Base/skymeadow/spmSMFruitPlant_Atlas_Billboards.tga"; public static string spmSMFruitPlantAtlasBillboardsNormal = "RoR2/Base/skymeadow/spmSMFruitPlant_Atlas_Billboards_Normal.tga"; public static string spmSMFruitPlantDuoAtlas = "RoR2/Base/skymeadow/spmSMFruitPlantDuo_Atlas.tga"; public static string spmSMFruitPlantDuoAtlasBillboardsEmission = "RoR2/Base/skymeadow/spmSMFruitPlantDuo_Atlas_Billboards Emission.tga"; public static string spmSMFruitPlantDuoAtlasBillboards = "RoR2/Base/skymeadow/spmSMFruitPlantDuo_Atlas_Billboards.tga"; public static string spmSMFruitPlantDuoAtlasBillboardsNormal = "RoR2/Base/skymeadow/spmSMFruitPlantDuo_Atlas_Billboards_Normal.tga"; public static string texSMFruitBarkDiffuse = "RoR2/Base/skymeadow/texSMFruitBarkDiffuse.tga"; public static string spmSMGrassAtlas = "RoR2/Base/skymeadow/spmSMGrass_Atlas.tga"; public static string spmSMGrassSmallClusterAtlas = "RoR2/Base/skymeadow/spmSMGrassSmallCluster_Atlas.tga"; public static string texSMGrassEmissionMask = "RoR2/Base/skymeadow/texSMGrassEmissionMask.png"; public static string spmSMHangingVinesClusterAtlas = "RoR2/Base/skymeadow/spmSMHangingVinesCluster_Atlas.tga"; public static string texSMMaulingRock = "RoR2/Base/skymeadow/texSMMaulingRock.png"; public static string texSkymeadowPreview = "RoR2/Base/skymeadow/texSkymeadowPreview.png"; public static string texSkymeadowCoronaMask = "RoR2/Base/skymeadow/texSkymeadowCoronaMask.png"; public static string texSMMoonClouds = "RoR2/Base/skymeadow/texSMMoonClouds.png"; public static string texSMMoonDiffuse = "RoR2/Base/skymeadow/texSMMoonDiffuse.png"; public static string texSMMoonEmission = "RoR2/Base/skymeadow/texSMMoonEmission.png"; public static string texSMMoonNormal = "RoR2/Base/skymeadow/texSMMoonNormal.png"; public static string smallFlower = "RoR2/Base/skymeadow/smallFlower.tga"; public static string texMeadowFlowerD = "RoR2/Base/skymeadow/texMeadowFlower_D.png"; public static string texMeadowFlowerEm = "RoR2/Base/skymeadow/texMeadowFlower_Em.png"; public static string texMoonDiffuse = "RoR2/Base/skymeadow/texMoonDiffuse.jpg"; public static string texMoonNormal = "RoR2/Base/skymeadow/texMoonNormal.jpg"; public static string texSMFruitLeafDiffuse = "RoR2/Base/skymeadow/texSMFruitLeafDiffuse.png"; public static string texSMFruitLeafNormal = "RoR2/Base/skymeadow/texSMFruitLeafNormal.png"; public static string texSMLichenNormal = "RoR2/Base/skymeadow/texSMLichenNormal.png"; public static string texSMLichenTerrain = "RoR2/Base/skymeadow/texSMLichenTerrain.png"; public static string texSMNormal = "RoR2/Base/skymeadow/texSMNormal.png"; public static string texSMRockBridgeNormal = "RoR2/Base/skymeadow/texSMRockBridgeNormal.png"; public static string texSMRockSide = "RoR2/Base/skymeadow/texSMRockSide.png"; public static string texSMRockSide2 = "RoR2/Base/skymeadow/texSMRockSide2.png"; public static string texSMRockSide3 = "RoR2/Base/skymeadow/texSMRockSide3.png"; public static string texSMSmallFlowerBulb = "RoR2/Base/skymeadow/texSMSmallFlowerBulb.png"; public static string texSMSpikeBridgeDiffuse = "RoR2/Base/skymeadow/texSMSpikeBridgeDiffuse.png"; public static string texSMSpikeBridgeNormal = "RoR2/Base/skymeadow/texSMSpikeBridgeNormal.png"; public static string texCabinBlanketNormals = "RoR2/Base/title/texCabinBlanketNormals.png"; public static string texCabinCompositeDiffuse = "RoR2/Base/title/texCabinCompositeDiffuse.png"; public static string texCabinCompositeEmission = "RoR2/Base/title/texCabinCompositeEmission.png"; public static string texCabinTeruteruDiffuse = "RoR2/Base/title/texCabinTeruteruDiffuse.png"; public static string texCabinTeruteruNormal = "RoR2/Base/title/texCabinTeruteruNormal.png"; public static string spmTitleGrassAtlas = "RoR2/Base/title/spmTitleGrass_Atlas.tga"; public static string spmWPPine1Atlas = "RoR2/Base/wispgraveyard/spmWPPine1_Atlas.tga"; public static string spmWPPine1AtlasBillboards = "RoR2/Base/wispgraveyard/spmWPPine1_Atlas_Billboards.tga"; public static string spmWPPine1AtlasBillboardsNormal = "RoR2/Base/wispgraveyard/spmWPPine1_Atlas_Billboards_Normal.tga"; public static string spmWPPine1AtlasNormal = "RoR2/Base/wispgraveyard/spmWPPine1_Atlas_Normal.tga"; public static string spmWPPine1optAtlas = "RoR2/Base/wispgraveyard/spmWPPine1_opt_Atlas.tga"; public static string spmWPPine1optAtlasBillboards = "RoR2/Base/wispgraveyard/spmWPPine1_opt_Atlas_Billboards.tga"; public static string spmWPPine1optAtlasBillboardsNormal = "RoR2/Base/wispgraveyard/spmWPPine1_opt_Atlas_Billboards_Normal.tga"; public static string texFWPineBarkDiffuse2 = "RoR2/Base/wispgraveyard/texFWPineBarkDiffuse.tga"; public static string texFWPineBarkNormal24 = "RoR2/Base/wispgraveyard/texFWPineBarkNormal.tga"; public static string texWIPAshDiffuse = "RoR2/Base/wispgraveyard/texWIPAshDiffuse.png"; public static string texWPLichenTerrain = "RoR2/Base/wispgraveyard/texWPLichenTerrain.png"; public static string texWispgraveyardPreview = "RoR2/Base/wispgraveyard/texWispgraveyardPreview.png"; public static string texMeteorCloud = "RoR2/Base/texMeteorCloud.png"; public static string texUICornerRounded = "RoR2/Base/UI/texUICornerRounded.png"; public static string texUICornerSquared = "RoR2/Base/UI/texUICornerSquared.png"; public static string texUICornerTier1 = "RoR2/Base/UI/texUICornerTier1.png"; public static string texUICornerTier2 = "RoR2/Base/UI/texUICornerTier2.png"; public static string texUICornerTier3 = "RoR2/Base/UI/texUICornerTier3.png"; public static string texUIHatchingTile = "RoR2/Base/UI/texUIHatchingTile.png"; public static string texUILaunchButton = "RoR2/Base/UI/texUILaunchButton.png"; public static string texUILaunchButtonDepressed = "RoR2/Base/UI/texUILaunchButtonDepressed.png"; public static string texChevronDead = "RoR2/Base/UI/texChevronDead.png"; public static string texChevronEngiShield = "RoR2/Base/UI/texChevronEngiShield.png"; public static string texChevronNPC = "RoR2/Base/UI/texChevronNPC.png"; public static string texChevronPlayer = "RoR2/Base/UI/texChevronPlayer.png"; public static string texChevronSimpleTriangle = "RoR2/Base/UI/texChevronSimpleTriangle.png"; public static string CreditsSketches0000Jailer = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0000_Jailer.png"; public static string CreditsSketches0001Campfire = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0001_Campfire.png"; public static string CreditsSketches0002Jar = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0002_Jar.png"; public static string CreditsSketches0003Barnacle = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0003_Barnacle.png"; public static string CreditsSketches0004Shrine1 = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0004_Shrine-1.png"; public static string CreditsSketches0005CircleArch = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0005_Circle-Arch.png"; public static string CreditsSketches0006LavaTube = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0006_Lava-Tube.png"; public static string CreditsSketches0007Shrine2 = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0007_Shrine-2.png"; public static string CreditsSketches0008SulfurSphere = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0008_Sulfur-Sphere.png"; public static string CreditsSketches0009Sponge = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0009_Sponge.png"; public static string CreditsSketches0010DestructiblePod = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_0010_Destructible-Pod.png"; public static string CreditsSketches020000LakeFlower = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0000_Lake-Flower.png"; public static string CreditsSketches020001CrateandBarrel = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0001_Crate-and-Barrel.png"; public static string CreditsSketches020002Ferns = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0002_Ferns.png"; public static string CreditsSketches020003BirdNests = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0003_Bird-Nests.png"; public static string CreditsSketches020004ChefHeads = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0004_Chef-Heads.png"; public static string CreditsSketches020005TempleRock = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0005_Temple-Rock.png"; public static string CreditsSketches020006FireBlossom = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0006_Fire-Blossom.png"; public static string CreditsSketches020007HelminthRoost = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0007_Helminth-Roost.png"; public static string CreditsSketches020008FlowerTotem = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0008_Flower-Totem.png"; public static string CreditsSketches020009BeetleHabitatTop = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0009_Beetle-Habitat-Top.png"; public static string CreditsSketches020010UnstableTransmitter = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0010_Unstable-Transmitter.png"; public static string CreditsSketches020011Volcanoids = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0011_Volcanoids.png"; public static string CreditsSketches020012Seeker = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0012_Seeker.png"; public static string CreditsSketches020013VillageBuilding = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0013_Village-Building.png"; public static string CreditsSketches020014Colossus = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_02_0014_Colossus.png"; public static string CreditsSketches030001PowerOrb = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0001_PowerOrb.png"; public static string CreditsSketches030002PowerOrb = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0002_PowerOrb.png"; public static string CreditsSketches030003PowerOrb = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0003_PowerOrb.png"; public static string CreditsSketches030004PowerOrb = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0004_PowerOrb.png"; public static string CreditsSketches030005PowerOrb = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0005_PowerOrb.png"; public static string CreditsSketches030006IA = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0006_IA.png"; public static string CreditsSketches030007IA = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0007_IA.png"; public static string CreditsSketches030008SolusVendor = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0008_SolusVendor.png"; public static string CreditsSketches030009SolusVendor = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0009_SolusVendor.png"; public static string CreditsSketches030010SolusWing = "RoR2/Base/UI/CreditsPanel/Credits_Sketches_03_0010_SolusWing.png"; public static string dronecommanderconceptcredits = "RoR2/Base/UI/CreditsPanel/dronecommanderconcept_credits.png"; public static string flyingverminconceptcredits = "RoR2/Base/UI/CreditsPanel/flyingvermin_concept_credits.png"; public static string hereticconceptcredits = "RoR2/Base/UI/CreditsPanel/hereticconcept_credits.png"; public static string itconcept1credits = "RoR2/Base/UI/CreditsPanel/itconcept1_credits.png"; public static string itconcept2credits = "RoR2/Base/UI/CreditsPanel/itconcept2_credits.png"; public static string itconcept3credits = "RoR2/Base/UI/CreditsPanel/itconcept3_credits.png"; public static string railgunnerconceptcredits = "RoR2/Base/UI/CreditsPanel/railgunner_concept_credits.png"; public static string verminconceptcredits = "RoR2/Base/UI/CreditsPanel/vermin_concept_credits.png"; public static string voidsurvivorconceptcredits = "RoR2/Base/UI/CreditsPanel/voidsurvivor_concept_credits.png"; public static string d101 = "RoR2/Base/UI/CreditsPanel/d10-1.png"; public static string d111 = "RoR2/Base/UI/CreditsPanel/d11-1.png"; public static string d113 = "RoR2/Base/UI/CreditsPanel/d11-3.png"; public static string d123 = "RoR2/Base/UI/CreditsPanel/d12-3.png"; public static string d133 = "RoR2/Base/UI/CreditsPanel/d13-3.png"; public static string j111 = "RoR2/Base/UI/CreditsPanel/j11-1.png"; public static string j121 = "RoR2/Base/UI/CreditsPanel/j12-1.png"; public static string j131 = "RoR2/Base/UI/CreditsPanel/j13-1.png"; public static string j141 = "RoR2/Base/UI/CreditsPanel/j14-1.png"; public static string texFarbridgelogooptimizedW = "RoR2/Base/UI/CreditsPanel/texFarbridge_logo-optimized_W.png"; public static string texLogoAlchemyArt = "RoR2/Base/UI/CreditsPanel/texLogoAlchemyArt.png"; public static string texLogoChris = "RoR2/Base/UI/CreditsPanel/texLogoChris.png"; public static string texLogoCyanHeart = "RoR2/Base/UI/CreditsPanel/texLogoCyanHeart.png"; public static string texLogoDevoted = "RoR2/Base/UI/CreditsPanel/texLogoDevoted.png"; public static string texLogoDreamToaster = "RoR2/Base/UI/CreditsPanel/texLogoDreamToaster.png"; public static string texLogoEnduringGames = "RoR2/Base/UI/CreditsPanel/texLogoEnduringGames.png"; public static string texLogoGearboxPublishingVertical = "RoR2/Base/UI/CreditsPanel/texLogoGearboxPublishingVertical.png"; public static string texLogoGearboxSoftware = "RoR2/Base/UI/CreditsPanel/texLogoGearboxSoftware.png"; public static string texLogoGhostpunch = "RoR2/Base/UI/CreditsPanel/texLogoGhostpunch.png"; public static string texLogoLionbridge = "RoR2/Base/UI/CreditsPanel/texLogoLionbridge.png"; public static string texLogoLionbridgeNew = "RoR2/Base/UI/CreditsPanel/texLogoLionbridgeNew.png"; public static string texLogoPingle = "RoR2/Base/UI/CreditsPanel/texLogoPingle.png"; public static string texLogoPlayEveryWare = "RoR2/Base/UI/CreditsPanel/texLogoPlayEveryWare.png"; public static string texLogoSkewSound = "RoR2/Base/UI/CreditsPanel/texLogoSkewSound.png"; public static string texLogoSpeedTree = "RoR2/Base/UI/CreditsPanel/texLogoSpeedTree.png"; public static string texLogoStreamlineGames = "RoR2/Base/UI/CreditsPanel/texLogoStreamlineGames.png"; public static string texLogoStreamlineMediaGroup = "RoR2/Base/UI/CreditsPanel/texLogoStreamlineMediaGroup.png"; public static string texParentFlowGradient = "RoR2/Base/UI/CreditsPanel/texParentFlowGradient.png"; public static string texPoweredByWwise256 = "RoR2/Base/UI/CreditsPanel/texPoweredByWwise256.png"; public static string acrid = "RoR2/Base/UI/CreditsPanel/acrid.psd"; public static string artifact = "RoR2/Base/UI/CreditsPanel/artifact.psd"; public static string artifactteleporter = "RoR2/Base/UI/CreditsPanel/artifactteleporter.psd"; public static string bandito = "RoR2/Base/UI/CreditsPanel/bandito.psd"; public static string compounds = "RoR2/Base/UI/CreditsPanel/compounds.psd"; public static string doppelganger = "RoR2/Base/UI/CreditsPanel/doppelganger.psd"; public static string dunestrider = "RoR2/Base/UI/CreditsPanel/dunestrider.psd"; public static string evolution = "RoR2/Base/UI/CreditsPanel/evolution.psd"; public static string gamepad = "RoR2/Base/UI/CreditsPanel/gamepad.psd"; public static string interpolation = "RoR2/Base/UI/CreditsPanel/interpolation.psd"; public static string intervalattack = "RoR2/Base/UI/CreditsPanel/intervalattack.psd"; public static string lemmy = "RoR2/Base/UI/CreditsPanel/lemmy.jpg"; public static string lemmy2 = "RoR2/Base/UI/CreditsPanel/lemmy2.psd"; public static string lobbies = "RoR2/Base/UI/CreditsPanel/lobbies.psd"; public static string lunartrinkets = "RoR2/Base/UI/CreditsPanel/lunartrinkets.psd"; public static string minedeployer = "RoR2/Base/UI/CreditsPanel/minedeployer.psd"; public static string reliquary = "RoR2/Base/UI/CreditsPanel/reliquary.psd"; public static string sawblade = "RoR2/Base/UI/CreditsPanel/sawblade.psd"; public static string sawmerangpath = "RoR2/Base/UI/CreditsPanel/sawmerangpath.psd"; public static string scavshoot = "RoR2/Base/UI/CreditsPanel/scavshoot.jpg"; public static string scavstand = "RoR2/Base/UI/CreditsPanel/scavstand.psd"; public static string seer = "RoR2/Base/UI/CreditsPanel/seer.psd"; public static string spidermine = "RoR2/Base/UI/CreditsPanel/spidermine.psd"; public static string spite = "RoR2/Base/UI/CreditsPanel/spite.psd"; public static string tutorial = "RoR2/Base/UI/CreditsPanel/tutorial.psd"; public static string votebuttons = "RoR2/Base/UI/CreditsPanel/votebuttons.psd"; public static string texCooldownRemap = "RoR2/Base/UI/texCooldownRemap.png"; public static string texCrosshairCircleRemap = "RoR2/Base/UI/texCrosshairCircleRemap.png"; public static string texCrosshairCross1Remap = "RoR2/Base/UI/texCrosshairCross1Remap.png"; public static string texCrosshairCross1RemapTwisted = "RoR2/Base/UI/texCrosshairCross1RemapTwisted.png"; public static string texCrosshairCross2Remap = "RoR2/Base/UI/texCrosshairCross2Remap.png"; public static string texCrosshairCross3Remap = "RoR2/Base/UI/texCrosshairCross3Remap.png"; public static string texGradientCrosshairEngi = "RoR2/Base/UI/texGradientCrosshairEngi.png"; public static string texCrosshair2 = "RoR2/Base/UI/texCrosshair2.png"; public static string texCrosshairArrow = "RoR2/Base/UI/texCrosshairArrow.png"; public static string texCrosshairCircle = "RoR2/Base/UI/texCrosshairCircle.png"; public static string texCrosshairDot = "RoR2/Base/UI/texCrosshairDot.png"; public static string texCrosshairDotCropped = "RoR2/Base/UI/texCrosshairDotCropped.png"; public static string texCrosshairEngi2 = "RoR2/Base/UI/texCrosshairEngi2.png"; public static string texCrosshairGlaive = "RoR2/Base/UI/texCrosshairGlaive.png"; public static string texCrosshairNibBar = "RoR2/Base/UI/texCrosshairNibBar.png"; public static string texCrosshairNibBracket = "RoR2/Base/UI/texCrosshairNibBracket.png"; public static string texCrosshairNibCornerBracket = "RoR2/Base/UI/texCrosshairNibCornerBracket.png"; public static string texCrosshairNibCornerBracketBig = "RoR2/Base/UI/texCrosshairNibCornerBracketBig.png"; public static string texCrosshairNibCurved = "RoR2/Base/UI/texCrosshairNibCurved.png"; public static string texCrosshairQuadrant = "RoR2/Base/UI/texCrosshairQuadrant.png"; public static string texCrosshairShotgun = "RoR2/Base/UI/texCrosshairShotgun.png"; public static string texCrosshairTridant = "RoR2/Base/UI/texCrosshairTridant.png"; public static string texCrosshairTridant2 = "RoR2/Base/UI/texCrosshairTridant2.png"; public static string texCrosshairUnavailable = "RoR2/Base/UI/texCrosshairUnavailable.png"; public static string texCursorRevolver = "RoR2/Base/UI/texCursorRevolver.png"; public static string texSniperCharge = "RoR2/Base/UI/texSniperCharge.tif"; public static string texCursorActive25 = "RoR2/Base/UI/Cursor/texCursor_Active.png"; public static string texCursorInactive5 = "RoR2/Base/UI/Cursor/texCursor_Inactive.png"; public static string texCursorControllerActive30 = "RoR2/Base/UI/Cursor/texCursorController_Active.png"; public static string texCursorControllerInactive7 = "RoR2/Base/UI/Cursor/texCursorController_Inactive.png"; public static string texCursorSprite10 = "RoR2/Base/UI/Cursor/texCursorSprite.png"; public static string texWarning1 = "RoR2/Base/UI/texWarning.png"; public static string texUIIconRamp = "RoR2/Base/UI/texUIIconRamp.png"; public static string texSimpleTriangle = "RoR2/Base/UI/texSimpleTriangle.png"; public static string texUIAnimateHeaderGradient = "RoR2/Base/UI/texUIAnimateHeaderGradient.png"; public static string texUIAnimateHeaderGradientInverted = "RoR2/Base/UI/texUIAnimateHeaderGradientInverted.png"; public static string texUIAnimateSlice1Colored = "RoR2/Base/UI/texUIAnimateSlice1Colored.png"; public static string texUIAnimateSlice3 = "RoR2/Base/UI/texUIAnimateSlice3.png"; public static string texUIAnimateSlice4 = "RoR2/Base/UI/texUIAnimateSlice4.png"; public static string texUIAnimateSliceNakedButton = "RoR2/Base/UI/texUIAnimateSliceNakedButton.png"; public static string texUIBackdrop = "RoR2/Base/UI/texUIBackdrop.png"; public static string texUIBackdropFadedEnds = "RoR2/Base/UI/texUIBackdropFadedEnds.png"; public static string texUIBottomUpFade = "RoR2/Base/UI/texUIBottomUpFade.tga"; public static string texUICleanButton = "RoR2/Base/UI/texUICleanButton.png"; public static string texUICleanPanel = "RoR2/Base/UI/texUICleanPanel.png"; public static string texUICombatHealthbar = "RoR2/Base/UI/texUICombatHealthbar.png"; public static string texUICorner = "RoR2/Base/UI/texUICorner.png"; public static string texUICutOffCorner = "RoR2/Base/UI/texUICutOffCorner.png"; public static string texUIDifficultySegment = "RoR2/Base/UI/texUIDifficultySegment.png"; public static string texUIDifficultySegmentFade = "RoR2/Base/UI/texUIDifficultySegmentFade.png"; public static string texUIHeaderDouble = "RoR2/Base/UI/texUIHeaderDouble.png"; public static string texUIHeaderSingle = "RoR2/Base/UI/texUIHeaderSingle.png"; public static string texUIHighlightBoxOutline = "RoR2/Base/UI/texUIHighlightBoxOutline.png"; public static string texUIHighlightBoxOutlineThick = "RoR2/Base/UI/texUIHighlightBoxOutlineThick.png"; public static string texUIHighlightBoxOutlineThickIcon = "RoR2/Base/UI/texUIHighlightBoxOutlineThickIcon.png"; public static string texUIHighlightHeader = "RoR2/Base/UI/texUIHighlightHeader.png"; public static string texUIHologram = "RoR2/Base/UI/texUIHologram.png"; public static string texUIMainHealthbar = "RoR2/Base/UI/texUIMainHealthbar.png"; public static string texUIMainRect = "RoR2/Base/UI/texUIMainRect.png"; public static string texUINonsegmentedHealthbar = "RoR2/Base/UI/texUINonsegmentedHealthbar.png"; public static string texUIOutlineOnly = "RoR2/Base/UI/texUIOutlineOnly.png"; public static string texUIPopupRect = "RoR2/Base/UI/texUIPopupRect.png"; public static string texUISwipeOutGradient = "RoR2/Base/UI/texUISwipeOutGradient.png"; public static string texUITopDownFade = "RoR2/Base/UI/texUITopDownFade.tga"; public static string texCoinsIcon = "RoR2/Base/UI/texCoinsIcon.png"; public static string texHitmarker1 = "RoR2/Base/UI/texHitmarker1.png"; public static string texUIFlashSquare1 = "RoR2/Base/UI/texUIFlashSquare1.png"; public static string texUIWormGearHalf = "RoR2/Base/UI/texUIWormGearHalf.png"; public static string CanarySOTSStoreButton = "RoR2/Base/UI/Large Splashes/Canary_SOTS_StoreButton.png"; public static string CanarySOTVEmptyWhale48010fps = "RoR2/Base/UI/Large Splashes/Canary_SOTV_EmptyWhale_480_10fps.png"; public static string CanarySOTVLong = "RoR2/Base/UI/Large Splashes/Canary_SOTV_Long.png"; public static string CombinedLogoScreenGBXPub2K1024x1024 = "RoR2/Base/UI/Large Splashes/CombinedLogoScreen_GBX Pub_2K_1024x1024.png"; public static string companylogoOLD = "RoR2/Base/UI/Large Splashes/company logo OLD.png"; public static string companylogotransparent = "RoR2/Base/UI/Large Splashes/company logo transparent.png"; public static string companylogo = "RoR2/Base/UI/Large Splashes/company logo.png"; public static string DLCShopButtonVoid = "RoR2/Base/UI/Large Splashes/DLC_Shop_Button_Void.png"; public static string gearboxpublishing = "RoR2/Base/UI/Large Splashes/gearbox_publishing.png"; public static string logostackedcoloredoutlineddropshadowhardsmall = "RoR2/Base/UI/Large Splashes/logo_stacked_colored_outlined_dropshadow_hard_small.png"; public static string SOTSHorizontal = "RoR2/Base/UI/Large Splashes/SOTS_Horizontal.png"; public static string texEAWarningSplash = "RoR2/Base/UI/Large Splashes/texEAWarningSplash.png"; public static string texLogo2KRed = "RoR2/Base/UI/Large Splashes/texLogo2KRed.png"; public static string MicUnavailable = "RoR2/Base/UI/MicUnavailable.png"; public static string MuteIcon = "RoR2/Base/UI/MuteIcon.png"; public static string SpeakerIcon = "RoR2/Base/UI/SpeakerIcon.png"; public static string texCrownIcon = "RoR2/Base/UI/texCrownIcon.png"; public static string UnmuteIcon = "RoR2/Base/UI/UnmuteIcon.png"; public static string texSortAscendingIcon = "RoR2/Base/UI/texSortAscendingIcon.png"; public static string texTimekeepersSecret = "RoR2/Base/UI/texTimekeepersSecret.png"; public static string texSnakeEyes = "RoR2/Base/UI/texSnakeEyes.png"; public static string texGenericSkillIcons = "RoR2/Base/UI/texGenericSkillIcons.png"; public static string texDiscordIcon = "RoR2/Base/UI/texDiscordIcon.png"; public static string texDiscordIconInverted = "RoR2/Base/UI/texDiscordIconInverted.png"; public static string texFBIcon = "RoR2/Base/UI/texFBIcon.png"; public static string texFBIconInverted = "RoR2/Base/UI/texFBIconInverted.png"; public static string texTumblrIcon = "RoR2/Base/UI/texTumblrIcon.png"; public static string texTumblrIconInverted = "RoR2/Base/UI/texTumblrIconInverted.png"; public static string texTwitterIcon = "RoR2/Base/UI/texTwitterIcon.png"; public static string texTwitterIconInvertd = "RoR2/Base/UI/texTwitterIconInvertd.png"; public static string texUIAnimateRamp = "RoR2/Base/UI/SpecialUIMaterials/texUIAnimateRamp.png"; public static string texUIAnimateRampHighlights = "RoR2/Base/UI/SpecialUIMaterials/texUIAnimateRampHighlights.png"; public static string texUIAnimateRampPulse = "RoR2/Base/UI/SpecialUIMaterials/texUIAnimateRampPulse.png"; public static string texUISSOverlay2 = "RoR2/Base/UI/SpecialUIMaterials/texUISSOverlay2.png"; public static string Bombadiernumbertexture = "RoR2/Base/UI/SpriteText/Bombadier_number_texture.png"; public static string BombadierTimertexture = "RoR2/Base/UI/SpriteText/Bombadier_Timer_texture.png"; public static string texBasicArrowRight4 = "RoR2/Base/UI/texBasicArrowRight.png"; public static string texConvertToScrapArrow = "RoR2/Base/UI/texConvertToScrapArrow.png"; public static string texDefaultSocialUserIcon = "RoR2/Base/UI/texDefaultSocialUserIcon.png"; public static string texDetailPanel = "RoR2/Base/UI/texDetailPanel.png"; public static string texDetailPanelFrame = "RoR2/Base/UI/texDetailPanelFrame.png"; public static string texPlayerVoteStatus = "RoR2/Base/UI/texPlayerVoteStatus.png"; public static string texUICheckboxes = "RoR2/Base/UI/texUICheckboxes.png"; public static string texUICircleOutline = "RoR2/Base/UI/texUICircleOutline.png"; public static string texUIHandle = "RoR2/Base/UI/texUIHandle.png"; public static string texUIAnimateRampShine = "RoR2/Base/UI/texUIAnimateRampShine.png"; public static string texUIShineGradient = "RoR2/Base/UI/texUIShineGradient.png"; public static string texArtifactDelusionDisabled = "RoR2/CU8/texArtifactDelusionDisabled.png"; public static string texArtifactDelusionEnabled = "RoR2/CU8/texArtifactDelusionEnabled.png"; public static string texArtifactDelusionPickerBGBar = "RoR2/CU8/texArtifactDelusionPickerBGBar.png"; public static string texArtifactDelusionPickerBGBarMask = "RoR2/CU8/texArtifactDelusionPickerBGBarMask.png"; public static string texArtifactDelusionPickerBGMain = "RoR2/CU8/texArtifactDelusionPickerBGMain.png"; public static string texArtifactDelusionPickerBGWave = "RoR2/CU8/texArtifactDelusionPickerBGWave.png"; public static string texArtifactDelusionPickerTextFrame = "RoR2/CU8/texArtifactDelusionPickerTextFrame.png"; public static string texObtainArtifactDelusionIcon = "RoR2/CU8/texObtainArtifactDelusionIcon.png"; public static string texLemurianHarnessDiffuse = "RoR2/CU8/Harness/texLemurianHarnessDiffuse.tga"; public static string texLemurianHarnessEmmissive = "RoR2/CU8/Harness/texLemurianHarnessEmmissive.png"; public static string texArtifactDevotionDisabled = "RoR2/CU8/texArtifactDevotionDisabled.png"; public static string texArtifactDevotionEnabled = "RoR2/CU8/texArtifactDevotionEnabled.png"; public static string texObtainArtifactDevotionIcon = "RoR2/CU8/texObtainArtifactDevotionIcon.png"; public static string lightAsh = "RoR2/CU8/LemurianEgg/lightAsh.tga"; public static string texLemurianEggDiffuse = "RoR2/CU8/LemurianEgg/texLemurianEggDiffuse.png"; public static string texDevotionUIBG = "RoR2/CU8/LemurianEgg/texDevotionUIBG.png"; public static string texDevotionUIBorder = "RoR2/CU8/LemurianEgg/texDevotionUIBorder.png"; public static string texDevotionUIEgg = "RoR2/CU8/LemurianEgg/texDevotionUIEgg.png"; public static string texDevotionUIEggMask = "RoR2/CU8/LemurianEgg/texDevotionUIEggMask.png"; public static string texDevotionUIEggShell = "RoR2/CU8/LemurianEgg/texDevotionUIEggShell.png"; public static string texGrayBoxPattern = "RoR2/Dev/Common/texGrayBoxPattern.png"; public static string AcidLarvaBody = "RoR2/DLC1/AcidLarva/AcidLarvaBody.png"; public static string texAcidLarvaBodyDiffuse = "RoR2/DLC1/AcidLarva/texAcidLarvaBodyDiffuse.png"; public static string texAcidLarvaBodyNormal = "RoR2/DLC1/AcidLarva/texAcidLarvaBodyNormal.png"; public static string texAcidLarvaSacsDiffuse = "RoR2/DLC1/AcidLarva/texAcidLarvaSacsDiffuse.png"; public static string texAcidLarvaSacsEmission = "RoR2/DLC1/AcidLarva/texAcidLarvaSacsEmission.png"; public static string texAcidLarvaSacsNormal = "RoR2/DLC1/AcidLarva/texAcidLarvaSacsNormal.png"; public static string texAssassinImpact = "RoR2/DLC1/Assassin2/texAssassinImpact.png"; public static string Assassin2Body = "RoR2/DLC1/Assassin2/Assassin2Body.png"; public static string texAssassinDiffuse = "RoR2/DLC1/Assassin2/texAssassinDiffuse.tga"; public static string texAssassinEmissive = "RoR2/DLC1/Assassin2/texAssassinEmissive.png"; public static string texAssassinNormal = "RoR2/DLC1/Assassin2/texAssassinNormal.png"; public static string ClayGrenadierBody = "RoR2/DLC1/ClayGrenadier/ClayGrenadierBody.png"; public static string texClayGrenadierDiffuse = "RoR2/DLC1/ClayGrenadier/texClayGrenadierDiffuse.png"; public static string texClayGrenadierGrenadeDiffuse = "RoR2/DLC1/ClayGrenadier/texClayGrenadierGrenadeDiffuse.png"; public static string texClayGrenadierGrenadeNormal = "RoR2/DLC1/ClayGrenadier/texClayGrenadierGrenadeNormal.png"; public static string texClayGrenadierNormalGreyscale = "RoR2/DLC1/ClayGrenadier/texClayGrenadierNormalGreyscale.png"; public static string texCommandoMarineDiffuse = "RoR2/DLC1/texCommandoMarineDiffuse.png"; public static string texCommandoPaletteEmission1 = "RoR2/DLC1/texCommandoPaletteEmission 1.png"; public static string texDroneCommanderIcon = "RoR2/DLC1/DroneCommander/texDroneCommanderIcon.png"; public static string texDroneHatDiffuse = "RoR2/DLC1/DroneCommander/texDroneHatDiffuse.png"; public static string texDroneHatDisplacement = "RoR2/DLC1/DroneCommander/texDroneHatDisplacement.png"; public static string texDroneHatNormal = "RoR2/DLC1/DroneCommander/texDroneHatNormal.png"; public static string FlyingVerminBody = "RoR2/DLC1/FlyingVermin/FlyingVerminBody.png"; public static string texFlyingVerminDiffuse = "RoR2/DLC1/FlyingVermin/texFlyingVerminDiffuse.png"; public static string texFlyingVerminEmissive = "RoR2/DLC1/FlyingVermin/texFlyingVerminEmissive.png"; public static string texFlyingVerminNormal = "RoR2/DLC1/FlyingVermin/texFlyingVerminNormal.png"; public static string texFlyingVerminSnowyDiffuse = "RoR2/DLC1/FlyingVermin/texFlyingVerminSnowyDiffuse.png"; public static string GeepBody = "RoR2/DLC1/Gup/GeepBody.png"; public static string GipBody = "RoR2/DLC1/Gup/GipBody.png"; public static string GupBody = "RoR2/DLC1/Gup/GupBody.png"; public static string texGeepDiffuse = "RoR2/DLC1/Gup/texGeep_Diffuse.png"; public static string texGipDiffuse = "RoR2/DLC1/Gup/texGip_Diffuse.png"; public static string texGupDiffuse = "RoR2/DLC1/Gup/texGup_Diffuse.png"; public static string texGupEmission = "RoR2/DLC1/Gup/texGup_Emission.png"; public static string texGupNormal = "RoR2/DLC1/Gup/texGup_Normal.png"; public static string MajorConstructBody = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructBody.png"; public static string texMajorConstructDiffuse = "RoR2/DLC1/MajorAndMinorConstruct/texMajorConstructDiffuse.png"; public static string texMajorConstructEmission = "RoR2/DLC1/MajorAndMinorConstruct/texMajorConstructEmission.png"; public static string texMajorConstructLaserMask = "RoR2/DLC1/MajorAndMinorConstruct/texMajorConstructLaserMask.png"; public static string texMajorConstructNormals = "RoR2/DLC1/MajorAndMinorConstruct/texMajorConstructNormals.png"; public static string texMajorConstructPyresDiffuse = "RoR2/DLC1/MajorAndMinorConstruct/texMajorConstructPyresDiffuse.png"; public static string texMajorConstructPyresNormals = "RoR2/DLC1/MajorAndMinorConstruct/texMajorConstructPyresNormals.png"; public static string texMajorConstructShield = "RoR2/DLC1/MajorAndMinorConstruct/texMajorConstructShield.png"; public static string texMajorConstructStonesDiffuse = "RoR2/DLC1/MajorAndMinorConstruct/texMajorConstructStonesDiffuse.png"; public static string texMajorConstructStonesNormal = "RoR2/DLC1/MajorAndMinorConstruct/texMajorConstructStonesNormal.png"; public static string MegaConstructBody = "RoR2/DLC1/MajorAndMinorConstruct/MegaConstructBody.png"; public static string MinorConstructAllyBody = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructAllyBody.png"; public static string MinorConstructBody = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructBody.png"; public static string texConstructMask = "RoR2/DLC1/MajorAndMinorConstruct/texConstructMask.png"; public static string texMinorConstructAllyDiffuse = "RoR2/DLC1/MajorAndMinorConstruct/texMinorConstructAllyDiffuse.png"; public static string texMinorConstructDiffuse = "RoR2/DLC1/MajorAndMinorConstruct/texMinorConstructDiffuse.png"; public static string texMinorConstructEmission = "RoR2/DLC1/MajorAndMinorConstruct/texMinorConstructEmission.png"; public static string texMinorConstructFresnelMask = "RoR2/DLC1/MajorAndMinorConstruct/texMinorConstructFresnelMask.png"; public static string texMinorConstructNormals = "RoR2/DLC1/MajorAndMinorConstruct/texMinorConstructNormals.png"; public static string texRailgunnerBackpackChargeMask = "RoR2/DLC1/Railgunner/texRailgunnerBackpackChargeMask.png"; public static string texRailgunnerBackpackReboot = "RoR2/DLC1/Railgunner/texRailgunnerBackpackReboot.png"; public static string texRailgunnerScopeOverlayHeavycopy = "RoR2/DLC1/Railgunner/texRailgunnerScopeOverlayHeavy copy.png"; public static string texRailgunnerScopeOverlayLight = "RoR2/DLC1/Railgunner/texRailgunnerScopeOverlayLight.png"; public static string texRailgunnerBeamMask = "RoR2/DLC1/Railgunner/texRailgunnerBeamMask.png"; public static string texRailgunnerChunkMaskcopy = "RoR2/DLC1/Railgunner/texRailgunnerChunkMask copy.png"; public static string texRailgunnerWeakpointMask = "RoR2/DLC1/Railgunner/texRailgunnerWeakpointMask.png"; public static string texRailgunPistolSquare = "RoR2/DLC1/Railgunner/texRailgunPistolSquare.png"; public static string texRailgunTracerMask = "RoR2/DLC1/Railgunner/texRailgunTracerMask.png"; public static string texRailGunnerAltColossusBaseDiffuse = "RoR2/DLC1/Railgunner/texRailGunnerAltColossusBaseDiffuse.png"; public static string texRailGunnerAltColossusBaseNormal = "RoR2/DLC1/Railgunner/texRailGunnerAltColossusBaseNormal.png"; public static string texTrimSheetRailGunnerAltColossus = "RoR2/DLC1/Railgunner/texTrimSheetRailGunnerAltColossus.png"; public static string texRailGunnerAltPaletteDiffuse = "RoR2/DLC1/Railgunner/texRailGunnerAltPaletteDiffuse.png"; public static string texRailGunnerAltPaletteEmission = "RoR2/DLC1/Railgunner/texRailGunnerAltPaletteEmission.png"; public static string texTrimSheetMilitaryRailGunnerAlt = "RoR2/DLC1/Railgunner/texTrimSheetMilitaryRailGunnerAlt.png"; public static string texRailgunnerSkillIcons = "RoR2/DLC1/Railgunner/texRailgunnerSkillIcons.png"; public static string texCrosshairRailgunnerBracket = "RoR2/DLC1/Railgunner/texCrosshairRailgunnerBracket.png"; public static string texRailgunEmission = "RoR2/DLC1/Railgunner/texRailgunEmission.png"; public static string texRailgunnerAirborneMultiKillIcon = "RoR2/DLC1/Railgunner/texRailgunnerAirborneMultiKillIcon.png"; public static string texRailGunnerBody = "RoR2/DLC1/Railgunner/texRailGunnerBody.png"; public static string texRailGunnerClearGameMonsoonIcon = "RoR2/DLC1/Railgunner/texRailGunnerClearGameMonsoonIcon.png"; public static string texRailgunnerConsecutiveWeakPointsIcon = "RoR2/DLC1/Railgunner/texRailgunnerConsecutiveWeakPointsIcon.png"; public static string texRailgunnerDealMassiveDamageIcon = "RoR2/DLC1/Railgunner/texRailgunnerDealMassiveDamageIcon.png"; public static string texRailGunnerDiffuse = "RoR2/DLC1/Railgunner/texRailGunnerDiffuse.png"; public static string texRailGunnerNormals = "RoR2/DLC1/Railgunner/texRailGunnerNormals.png"; public static string texTrimSheetRailGunnerMetalBody = "RoR2/DLC1/Railgunner/texTrimSheetRailGunnerMetalBody.png"; public static string texCrosshairRailgunBoosted = "RoR2/DLC1/Railgunner/texCrosshairRailgunBoosted.png"; public static string texCrosshairRailgunnerBounds = "RoR2/DLC1/Railgunner/texCrosshairRailgunnerBounds.png"; public static string texCrosshairRailgunnerBoundsGlowy = "RoR2/DLC1/Railgunner/texCrosshairRailgunnerBoundsGlowy.png"; public static string texCrosshairRailgunnerFlavor1 = "RoR2/DLC1/Railgunner/texCrosshairRailgunnerFlavor1.png"; public static string texCrosshairRailgunnerNibs = "RoR2/DLC1/Railgunner/texCrosshairRailgunnerNibs.png"; public static string texCrosshairRailgunSniperCenter = "RoR2/DLC1/Railgunner/texCrosshairRailgunSniperCenter.png"; public static string texCrosshairRailgunSniperCenterAlt = "RoR2/DLC1/Railgunner/texCrosshairRailgunSniperCenterAlt.png"; public static string texCrosshairRailgunSniperNib = "RoR2/DLC1/Railgunner/texCrosshairRailgunSniperNib.png"; public static string texRailgunnerBatteryInner = "RoR2/DLC1/Railgunner/texRailgunnerBatteryInner.png"; public static string texRailgunnerBatteryOuter = "RoR2/DLC1/Railgunner/texRailgunnerBatteryOuter.png"; public static string texRailgunnerWeakPointLight = "RoR2/DLC1/Railgunner/texRailgunnerWeakPointLight.png"; public static string texUIHologramFaded = "RoR2/DLC1/Railgunner/texUIHologramFaded.png"; public static string texSulfurPodBody = "RoR2/DLC1/SulfurPod/texSulfurPodBody.png"; public static string texVerminBiteMask = "RoR2/DLC1/Vermin/texVerminBiteMask.png"; public static string texVerminDiffuse = "RoR2/DLC1/Vermin/texVerminDiffuse.png"; public static string texVerminEmission = "RoR2/DLC1/Vermin/texVerminEmission.png"; public static string texVerminFurDiffuse = "RoR2/DLC1/Vermin/texVerminFurDiffuse.png"; public static string texVerminNormal = "RoR2/DLC1/Vermin/texVerminNormal.png"; public static string texVerminSnowyDiffuse = "RoR2/DLC1/Vermin/texVerminSnowyDiffuse.png"; public static string texVerminTongueLashMask = "RoR2/DLC1/Vermin/texVerminTongueLashMask.png"; public static string VerminBody = "RoR2/DLC1/Vermin/VerminBody.png"; public static string texVoidBarnacleDiffuse = "RoR2/DLC1/VoidBarnacle/texVoidBarnacleDiffuse.tga"; public static string texVoidBarnacleEmissive = "RoR2/DLC1/VoidBarnacle/texVoidBarnacleEmissive.png"; public static string texVoidBarnacleNormal = "RoR2/DLC1/VoidBarnacle/texVoidBarnacleNormal.png"; public static string texVoidBarnacleRamp = "RoR2/DLC1/VoidBarnacle/texVoidBarnacleRamp.png"; public static string VoidBarnacleBody = "RoR2/DLC1/VoidBarnacle/VoidBarnacleBody.png"; public static string texJailerDart = "RoR2/DLC1/VoidJailer/texJailerDart.png"; public static string texVoidJailerWaterDrop = "RoR2/DLC1/VoidJailer/texVoidJailerWaterDrop.png"; public static string texTrimsheetJailerAllyDiffuse = "RoR2/DLC1/VoidJailer/texTrimsheetJailerAllyDiffuse.png"; public static string texVoidJailerDiffuse = "RoR2/DLC1/VoidJailer/texVoidJailerDiffuse.tga"; public static string texVoidJailerEmissive = "RoR2/DLC1/VoidJailer/texVoidJailerEmissive.png"; public static string texVoidJailerNormal = "RoR2/DLC1/VoidJailer/texVoidJailerNormal.png"; public static string texVoidJailerRampJailer = "RoR2/DLC1/VoidJailer/texVoidJailerRampJailer.png"; public static string texBuffJailed = "RoR2/DLC1/VoidJailer/texBuffJailed.tif"; public static string texVoidJailerTentacleMask1 = "RoR2/DLC1/VoidJailer/texVoidJailerTentacleMask1.png"; public static string texVoidJailerTentacleMask2 = "RoR2/DLC1/VoidJailer/texVoidJailerTentacleMask2.png"; public static string texVoidJailerTentacleMask2Normal = "RoR2/DLC1/VoidJailer/texVoidJailerTentacleMask2Normal.png"; public static string VoidJailerAllyBody = "RoR2/DLC1/VoidJailer/VoidJailerAllyBody.png"; public static string VoidJailerBody = "RoR2/DLC1/VoidJailer/VoidJailerBody.png"; public static string texVoidMegaCrabAllyDiffuse = "RoR2/DLC1/VoidMegaCrab/texVoidMegaCrabAllyDiffuse.png"; public static string DevastatorAllyBody = "RoR2/DLC1/VoidMegaCrab/DevastatorAllyBody.png"; public static string DevastatorBody = "RoR2/DLC1/VoidMegaCrab/DevastatorBody.png"; public static string texVoidMegaCrabDiffuse = "RoR2/DLC1/VoidMegaCrab/texVoidMegaCrabDiffuse.png"; public static string texVoidMegaCrabEmission = "RoR2/DLC1/VoidMegaCrab/texVoidMegaCrabEmission.png"; public static string texVoidMegaCrabNormal = "RoR2/DLC1/VoidMegaCrab/texVoidMegaCrabNormal.png"; public static string texVoidMegaCrabSplat = "RoR2/DLC1/VoidMegaCrab/texVoidMegaCrabSplat.png"; public static string texVoidRaidCrabEye = "RoR2/DLC1/VoidRaidCrab/texVoidRaidCrabEye.png"; public static string texRampVoidRaidCrabJointBreak = "RoR2/DLC1/VoidRaidCrab/texRampVoidRaidCrabJointBreak.png"; public static string texRampVoidRaidCrabTripleBeam = "RoR2/DLC1/VoidRaidCrab/texRampVoidRaidCrabTripleBeam.png"; public static string texVoidRaidCrabTripleBeamDecalRamp = "RoR2/DLC1/VoidRaidCrab/texVoidRaidCrabTripleBeamDecalRamp.png"; public static string texRampVoidRaidCrabSpinBeam = "RoR2/DLC1/VoidRaidCrab/texRampVoidRaidCrabSpinBeam.png"; public static string texVoidRaidcrabWardWipeFog = "RoR2/DLC1/VoidRaidCrab/texVoidRaidcrabWardWipeFog.png"; public static string texVoidRaidCrabBody = "RoR2/DLC1/VoidRaidCrab/texVoidRaidCrabBody.png"; public static string texVoidRaidCrabBrainDiffuse = "RoR2/DLC1/VoidRaidCrab/texVoidRaidCrabBrainDiffuse.png"; public static string texVoidRaidCrabBrainEmission = "RoR2/DLC1/VoidRaidCrab/texVoidRaidCrabBrainEmission.png"; public static string texVoidRaidCrabEyeHeightmap = "RoR2/DLC1/VoidRaidCrab/texVoidRaidCrabEyeHeightmap.jpg"; public static string texVoidRaidCrabLichen = "RoR2/DLC1/VoidRaidCrab/texVoidRaidCrabLichen.png"; public static string texVoidRaidCrabSand = "RoR2/DLC1/VoidRaidCrab/texVoidRaidCrabSand.png"; public static string texVoidSuperMegaCrabDiffuse = "RoR2/DLC1/texVoidSuperMegaCrabDiffuse.png"; public static string texVoidSuperMegaCrabEmissiveTips = "RoR2/DLC1/texVoidSuperMegaCrabEmissiveTips.png"; public static string texVoidSuperMegaCrabEyeFlowmap = "RoR2/DLC1/texVoidSuperMegaCrabEyeFlowmap.png"; public static string texVoidSuperMegaCrabNormal = "RoR2/DLC1/texVoidSuperMegaCrabNormal.png"; public static string texVoidSuperMegaCrabSplatmap = "RoR2/DLC1/texVoidSuperMegaCrabSplatmap.png"; public static string VoidSuperMegaCrabBody = "RoR2/DLC1/VoidSuperMegaCrabBody.png"; public static string texBuffVoidSurvivorCorruptionIcon = "RoR2/DLC1/VoidSurvivor/texBuffVoidSurvivorCorruptionIcon.tif"; public static string texVoidSurvivorCorruptionGauge = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorCorruptionGauge.png"; public static string texVoidSurvivorCorruptionGaugeOutlined = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorCorruptionGaugeOutlined.png"; public static string texVoidSurvivorAltColossusDiffuse = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorAltColossusDiffuse.png"; public static string texVoidSurvivorAltColossusEmissive = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorAltColossusEmissive.png"; public static string texVoidSurvivorAltColossusFresnel = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorAltColossusFresnel.png"; public static string texVoidSurvivorAltColossusNormal = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorAltColossusNormal.png"; public static string texTentacleHeadDiffuse = "RoR2/DLC1/VoidSurvivor/texTentacleHeadDiffuse.png"; public static string texTentacleHeadEmission = "RoR2/DLC1/VoidSurvivor/texTentacleHeadEmission.png"; public static string texTentacleHeadNormals = "RoR2/DLC1/VoidSurvivor/texTentacleHeadNormals.png"; public static string texVoidSurvivorClearGameOnMoonsoon = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorClearGameOnMoonsoon.png"; public static string texVoidSurvivorFleshAltDiffuse = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorFleshAltDiffuse.png"; public static string texVoidSurvivorFleshAltEmissive = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorFleshAltEmissive.png"; public static string texVoidSurvivorFleshAltNormal = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorFleshAltNormal.png"; public static string texCompleteVoidEndingIcon = "RoR2/DLC1/VoidSurvivor/texCompleteVoidEndingIcon.png"; public static string texRampVoidSurvivorBase1 = "RoR2/DLC1/VoidSurvivor/texRampVoidSurvivorBase1.png"; public static string texRampVoidSurvivorBase2 = "RoR2/DLC1/VoidSurvivor/texRampVoidSurvivorBase2.png"; public static string texRampVoidSurvivorCorrupted1 = "RoR2/DLC1/VoidSurvivor/texRampVoidSurvivorCorrupted1.png"; public static string texRampVoidSurvivorCorrupted2 = "RoR2/DLC1/VoidSurvivor/texRampVoidSurvivorCorrupted2.png"; public static string texRampVoidSurvivorCorrupted3 = "RoR2/DLC1/VoidSurvivor/texRampVoidSurvivorCorrupted3.png"; public static string texVoidSurvivorFleshDiffuse = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorFleshDiffuse.png"; public static string texVoidSurvivorFleshEmission = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorFleshEmission.png"; public static string texVoidSurvivorFleshFresnelMask = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorFleshFresnelMask.png"; public static string texVoidSurvivorNib = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorNib.png"; public static string texVoidSurvivorNormals = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorNormals.png"; public static string texVoidSurvivorSkillIcons = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorSkillIcons.png"; public static string VoidSurvivorBody = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBody.png"; public static string texVoidSurvivorPodDiffuse = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorPodDiffuse.png"; public static string texVoidSurvivorPodEmissive = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorPodEmissive.png"; public static string texVoidSurvivorPodNormal = "RoR2/DLC1/VoidSurvivor/texVoidSurvivorPodNormal.png"; public static string texGeepRamp = "RoR2/DLC1/Common/ColorRamps/texGeepRamp.png"; public static string texGipRamp = "RoR2/DLC1/Common/ColorRamps/texGipRamp.png"; public static string texGupRamp = "RoR2/DLC1/Common/ColorRamps/texGupRamp.png"; public static string texRampAcidLarva = "RoR2/DLC1/Common/ColorRamps/texRampAcidLarva.png"; public static string texRampAngel = "RoR2/DLC1/Common/ColorRamps/texRampAngel.png"; public static string texRampBearVoidFluff = "RoR2/DLC1/Common/ColorRamps/texRampBearVoidFluff.png"; public static string texRampBlunderbussGhost = "RoR2/DLC1/Common/ColorRamps/texRampBlunderbussGhost.png"; public static string texRampBottledChaos = "RoR2/DLC1/Common/ColorRamps/texRampBottledChaos.png"; public static string texRampCloverVoidOffset = "RoR2/DLC1/Common/ColorRamps/texRampCloverVoidOffset.png"; public static string texRampConstruct = "RoR2/DLC1/Common/ColorRamps/texRampConstruct.png"; public static string texRampConstructEmission = "RoR2/DLC1/Common/ColorRamps/texRampConstructEmission.png"; public static string texRampConstructLaser = "RoR2/DLC1/Common/ColorRamps/texRampConstructLaser.png"; public static string texRampConstructLaserTypeB = "RoR2/DLC1/Common/ColorRamps/texRampConstructLaserTypeB.png"; public static string texRampGold = "RoR2/DLC1/Common/ColorRamps/texRampGold.png"; public static string texRampHippoVoidEye = "RoR2/DLC1/Common/ColorRamps/texRampHippoVoidEye.png"; public static string texRampLunarPortalOnUse = "RoR2/DLC1/Common/ColorRamps/texRampLunarPortalOnUse.png"; public static string texRampMatterAntimatter = "RoR2/DLC1/Common/ColorRamps/texRampMatterAntimatter.png"; public static string texRampMatterAntimatter2 = "RoR2/DLC1/Common/ColorRamps/texRampMatterAntimatter2.png"; public static string texRampMinorConstructElectric = "RoR2/DLC1/Common/ColorRamps/texRampMinorConstructElectric.png"; public static string texRampMinorConstructProjectile = "RoR2/DLC1/Common/ColorRamps/texRampMinorConstructProjectile.png"; public static string texRampMushroomVoid = "RoR2/DLC1/Common/ColorRamps/texRampMushroomVoid.png"; public static string texRampNullifierSmoothLowSaturation = "RoR2/DLC1/Common/ColorRamps/texRampNullifierSmoothLowSaturation.png"; public static string texRampOpal = "RoR2/DLC1/Common/ColorRamps/texRampOpal.png"; public static string texRampOpalShield = "RoR2/DLC1/Common/ColorRamps/texRampOpalShield.png"; public static string texRampPortalVoid = "RoR2/DLC1/Common/ColorRamps/texRampPortalVoid.png"; public static string texRampPurpleLightning = "RoR2/DLC1/Common/ColorRamps/texRampPurpleLightning.png"; public static string texRampRailgun = "RoR2/DLC1/Common/ColorRamps/texRampRailgun.png"; public static string texRampRailgunDebris = "RoR2/DLC1/Common/ColorRamps/texRampRailgunDebris.png"; public static string texRampRailgunLight = "RoR2/DLC1/Common/ColorRamps/texRampRailgunLight.png"; public static string texRampRailgunnerBattery = "RoR2/DLC1/Common/ColorRamps/texRampRailgunnerBattery.png"; public static string texRampRailgunnerCryo = "RoR2/DLC1/Common/ColorRamps/texRampRailgunnerCryo.png"; public static string texRampRailgunnerPistol = "RoR2/DLC1/Common/ColorRamps/texRampRailgunnerPistol.png"; public static string texRampRegeneratingScrap = "RoR2/DLC1/Common/ColorRamps/texRampRegeneratingScrap.png"; public static string texRampScorpionPoison = "RoR2/DLC1/Common/ColorRamps/texRampScorpionPoison.png"; public static string texRampShurikenTrail = "RoR2/DLC1/Common/ColorRamps/texRampShurikenTrail.png"; public static string texRampStrongerBurn = "RoR2/DLC1/Common/ColorRamps/texRampStrongerBurn.png"; public static string texRampSuppressorEye = "RoR2/DLC1/Common/ColorRamps/texRampSuppressorEye.png"; public static string texRampThinGlass = "RoR2/DLC1/Common/ColorRamps/texRampThinGlass.png"; public static string texRampVermin = "RoR2/DLC1/Common/ColorRamps/texRampVermin.png"; public static string texRampVoidArenaShield = "RoR2/DLC1/Common/ColorRamps/texRampVoidArenaShield.png"; public static string texRampVoidArenaShieldTypeB = "RoR2/DLC1/Common/ColorRamps/texRampVoidArenaShieldTypeB.png"; public static string texRampVoidArenaShieldTypeC = "RoR2/DLC1/Common/ColorRamps/texRampVoidArenaShieldTypeC.png"; public static string texRampVoidCache = "RoR2/DLC1/Common/ColorRamps/texRampVoidCache.png"; public static string texRampVoidFlatCoral = "RoR2/DLC1/Common/ColorRamps/texRampVoidFlatCoral.png"; public static string texRampVoidMegaCrabEyes = "RoR2/DLC1/Common/ColorRamps/texRampVoidMegaCrabEyes.png"; public static string texRampVoidRaidCrabEye = "RoR2/DLC1/Common/ColorRamps/texRampVoidRaidCrabEye.png"; public static string texRampVoidRing = "RoR2/DLC1/Common/ColorRamps/texRampVoidRing.png"; public static string texRampVoidSurvivorFlame = "RoR2/DLC1/Common/ColorRamps/texRampVoidSurvivorFlame.png"; public static string texRampWhiteFlipped = "RoR2/DLC1/Common/ColorRamps/texRampWhiteFlipped.png"; public static string texRampWilloWispVoid = "RoR2/DLC1/Common/ColorRamps/texRampWilloWispVoid.png"; public static string texRampWilloWispVoidEye = "RoR2/DLC1/Common/ColorRamps/texRampWilloWispVoidEye.png"; public static string texSapRamp = "RoR2/DLC1/Common/ColorRamps/texSapRamp.png"; public static string texVoidBGIcon = "RoR2/DLC1/Common/IconBackgroundTextures/texVoidBGIcon.png"; public static string texTrimsheetCrabDiffuse = "RoR2/DLC1/Common/texTrimsheetCrabDiffuse.png"; public static string texTrimsheetCrabMoldyDiffuse = "RoR2/DLC1/Common/texTrimsheetCrabMoldyDiffuse.png"; public static string texTrimsheetCrabNormal = "RoR2/DLC1/Common/texTrimsheetCrabNormal.png"; public static string texTrimsheetCrabRedDiffuse = "RoR2/DLC1/Common/texTrimsheetCrabRedDiffuse.png"; public static string texTrimsheetCrabSplat = "RoR2/DLC1/Common/texTrimsheetCrabSplat.png"; public static string texTrimsheetCrabWhiteDiffuse = "RoR2/DLC1/Common/texTrimsheetCrabWhiteDiffuse.png"; public static string texTrimsheetJailerDiffuse = "RoR2/DLC1/Common/texTrimsheetJailerDiffuse.png"; public static string texTrimsheetJailerHighlightDiffuse = "RoR2/DLC1/Common/texTrimsheetJailerHighlightDiffuse.png"; public static string texTrimSheetVoidConcreteDiffuse = "RoR2/DLC1/Common/texTrimSheetVoidConcreteDiffuse.png"; public static string texTrimsheetVoidMetalCold = "RoR2/DLC1/Common/texTrimsheetVoidMetalCold.png"; public static string texTrimsheetVoidMetalDiffuse = "RoR2/DLC1/Common/texTrimsheetVoidMetalDiffuse.png"; public static string texTrimsheetVoidMetalHeight = "RoR2/DLC1/Common/texTrimsheetVoidMetalHeight.png"; public static string texTrimsheetVoidMetalHeightNormal = "RoR2/DLC1/Common/texTrimsheetVoidMetalHeightNormal.png"; public static string texTrimsheetVoidMetalNormal = "RoR2/DLC1/Common/texTrimsheetVoidMetalNormal.png"; public static string texTrimsheetVoidMetalRustyDiffuse = "RoR2/DLC1/Common/texTrimsheetVoidMetalRustyDiffuse.png"; public static string texNullifierSky3 = "RoR2/DLC1/Common/Void/texNullifierSky3.png"; public static string EliteEarthHealerBody = "RoR2/DLC1/EliteEarth/EliteEarthHealerBody.png"; public static string texAffixMendingAntlersDiffuse = "RoR2/DLC1/EliteEarth/texAffixMendingAntlersDiffuse.png"; public static string texAffixMendingAntlersEmissive = "RoR2/DLC1/EliteEarth/texAffixMendingAntlersEmissive.png"; public static string texAffixMendingAntlersNormal = "RoR2/DLC1/EliteEarth/texAffixMendingAntlersNormal.png"; public static string texAffixEarthIcon = "RoR2/DLC1/EliteEarth/texAffixEarthIcon.png"; public static string texBuffAffixEarth = "RoR2/DLC1/EliteEarth/texBuffAffixEarth.tif"; public static string texEliteMendingSphereDiffuse = "RoR2/DLC1/EliteEarth/texEliteMendingSphereDiffuse.png"; public static string texEliteMendingSphereEmissive = "RoR2/DLC1/EliteEarth/texEliteMendingSphereEmissive.png"; public static string texEliteMendingSphereEmissiveNoCracks = "RoR2/DLC1/EliteEarth/texEliteMendingSphereEmissiveNoCracks.png"; public static string texEliteMendingSphereNormal = "RoR2/DLC1/EliteEarth/texEliteMendingSphereNormal.png"; public static string texAffixSecretSpeedIcon = "RoR2/DLC1/texAffixSecretSpeedIcon.png"; public static string texBuffAffixSecretSpeed = "RoR2/DLC1/texBuffAffixSecretSpeed.png"; public static string texRabbitEarsDiffuse = "RoR2/DLC1/texRabbitEarsDiffuse.png"; public static string texRabbitEarsNormals = "RoR2/DLC1/texRabbitEarsNormals.png"; public static string texRabbitEarsSpecular = "RoR2/DLC1/texRabbitEarsSpecular.png"; public static string texAffixVoidIcon = "RoR2/DLC1/EliteVoid/texAffixVoidIcon.png"; public static string texBuffAffixVoid = "RoR2/DLC1/EliteVoid/texBuffAffixVoid.tif"; public static string texVoidInfestorDiffuse = "RoR2/DLC1/EliteVoid/texVoidInfestorDiffuse.png"; public static string texVoidInfestorEmission = "RoR2/DLC1/EliteVoid/texVoidInfestorEmission.png"; public static string texVoidInfestorFresnelMask = "RoR2/DLC1/EliteVoid/texVoidInfestorFresnelMask.png"; public static string texVoidInfestorNormal = "RoR2/DLC1/EliteVoid/texVoidInfestorNormal.png"; public static string VoidInfestorBody = "RoR2/DLC1/EliteVoid/VoidInfestorBody.png"; public static string texTricornDiffuse = "RoR2/DLC1/BossHunter/texTricornDiffuse.png"; public static string texTricornNormal = "RoR2/DLC1/BossHunter/texTricornNormal.png"; public static string texBlunderbussIcon = "RoR2/DLC1/BossHunter/texBlunderbussIcon.png"; public static string texTricornIcon = "RoR2/DLC1/BossHunter/texTricornIcon.png"; public static string texGummyCloneNormal = "RoR2/DLC1/GummyClone/texGummyCloneNormal.png"; public static string texGummyCloneBody = "RoR2/DLC1/GummyClone/texGummyCloneBody.png"; public static string texGummyCloneIcon = "RoR2/DLC1/GummyClone/texGummyCloneIcon.png"; public static string texIrradiatingLaserIcon = "RoR2/DLC1/IrradiatingLaser/texIrradiatingLaserIcon.png"; public static string texLunarPortalOnUseDisplacement = "RoR2/DLC1/LunarPortalOnUse/texLunarPortalOnUseDisplacement.png"; public static string texLunarPortalOnUseNormal = "RoR2/DLC1/LunarPortalOnUse/texLunarPortalOnUseNormal.png"; public static string texLunarPortalOnUseSpecial = "RoR2/DLC1/LunarPortalOnUse/texLunarPortalOnUseSpecial.png"; public static string texLunarPortalOnUseIcon = "RoR2/DLC1/LunarPortalOnUse/texLunarPortalOnUseIcon.png"; public static string texMolotovDiffuse = "RoR2/DLC1/Molotov/texMolotovDiffuse.png"; public static string texMolotovMask = "RoR2/DLC1/Molotov/texMolotovMask.png"; public static string texMolotovNormal = "RoR2/DLC1/Molotov/texMolotovNormal.png"; public static string texMolotovIcon = "RoR2/DLC1/Molotov/texMolotovIcon.png"; public static string texExecutiveCardDiffuse = "RoR2/DLC1/MultiShopCard/texExecutiveCard_Diffuse.png"; public static string texExecutiveCardFresnelMask = "RoR2/DLC1/MultiShopCard/texExecutiveCard_FresnelMask.png"; public static string texExecutiveCardNormals = "RoR2/DLC1/MultiShopCard/texExecutiveCard_Normals.png"; public static string texExecutiveCardIcon = "RoR2/DLC1/MultiShopCard/texExecutiveCardIcon.png"; public static string texOrbOnUseIcon = "RoR2/DLC1/OrbOnUse/texOrbOnUseIcon.png"; public static string texVendingMachineBody = "RoR2/DLC1/VendingMachine/texVendingMachineBody.png"; public static string texVendingMachineIcon = "RoR2/DLC1/VendingMachine/texVendingMachineIcon.png"; public static string texVendingMachineEclipseSlogan = "RoR2/DLC1/VendingMachine/texVendingMachineEclipseSlogan.png"; public static string texVendingMachineEclipseSloganGlow = "RoR2/DLC1/VendingMachine/texVendingMachineEclipseSloganGlow.png"; public static string texRampVendingMachine = "RoR2/DLC1/VendingMachine/texRampVendingMachine.png"; public static string texVendingMachineSlogan = "RoR2/DLC1/VendingMachine/texVendingMachineSlogan.png"; public static string throwawayvendingmachinetexture = "RoR2/DLC1/VendingMachine/throwawayvendingmachinetexture.png"; public static string texSodaPhoneDiffuse = "RoR2/DLC1/VendingMachine/texSodaPhoneDiffuse.png"; public static string texSodaPhoneEmissive = "RoR2/DLC1/VendingMachine/texSodaPhoneEmissive.png"; public static string texSodaPhoneNormals = "RoR2/DLC1/VendingMachine/texSodaPhoneNormals.png"; public static string texAlphaGradientDarkClamped = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texAlphaGradientDarkClamped.png"; public static string texInfiniteTowerGrid = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texInfiniteTowerGrid.png"; public static string texInfiniteTowerGridInverted = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texInfiniteTowerGridInverted.png"; public static string texTowerSphereShield = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texTowerSphereShield.png"; public static string texVoidWhale = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texVoidWhale.png"; public static string texITWaveBossIcon = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texITWaveBossIcon.png"; public static string texITWaveBrotherIcon = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texITWaveBrotherIcon.png"; public static string texITWaveDefaultIcon = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texITWaveDefaultIcon.png"; public static string texITWaveLunarIcon = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texITWaveLunarIcon.png"; public static string texITWaveScavIcon = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texITWaveScavIcon.png"; public static string texITWaveVoidIcon = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texITWaveVoidIcon.png"; public static string texInfiniteTowerSafeWardIcon = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texInfiniteTowerSafeWardIcon.png"; public static string texUIInfiniteTowerFillbar = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texUIInfiniteTowerFillbar.png"; public static string texUIInfiniteTowerFillbarBoss = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/texUIInfiniteTowerFillbarBoss.png"; public static string texDeepVoidPortalBatteryIcon = "RoR2/DLC1/DeepVoidPortalBattery/texDeepVoidPortalBatteryIcon.png"; public static string texVoidSignalEmissive = "RoR2/DLC1/DeepVoidPortalBattery/texVoidSignalEmissive.png"; public static string texVoidSignalGrassNormal = "RoR2/DLC1/DeepVoidPortalBattery/texVoidSignalGrassNormal.png"; public static string texUIVoidCommandBG = "RoR2/DLC1/OptionPickup/texUIVoidCommandBG.png"; public static string texUIVoidCommandBGCenter = "RoR2/DLC1/OptionPickup/texUIVoidCommandBGCenter.png"; public static string texArenaSandDiffuse1 = "RoR2/DLC1/VoidCamp/texArenaSandDiffuse 1.png"; public static string texVoidCampDecal1 = "RoR2/DLC1/VoidCamp/texVoidCampDecal 1.png"; public static string texVoidCampDecal = "RoR2/DLC1/VoidCamp/texVoidCampDecal.png"; public static string texVoidSuppressorDiffuse = "RoR2/DLC1/VoidSuppressor/texVoidSuppressorDiffuse.png"; public static string texVoidSuppressorDisplacement = "RoR2/DLC1/VoidSuppressor/texVoidSuppressorDisplacement.png"; public static string texVoidSuppressorEmission = "RoR2/DLC1/VoidSuppressor/texVoidSuppressorEmission.png"; public static string texVoidSuppressorNormal = "RoR2/DLC1/VoidSuppressor/texVoidSuppressorNormal.png"; public static string texVoidSuppressorStoneDiffuse = "RoR2/DLC1/VoidSuppressor/texVoidSuppressorStoneDiffuse.png"; public static string texVoidSuppressorStoneNormal = "RoR2/DLC1/VoidSuppressor/texVoidSuppressorStoneNormal.png"; public static string texVoidWardCrabEmission = "RoR2/DLC1/VoidWardCrab/texVoidWardCrab_Emission.png"; public static string texVoidWardCrabNormals = "RoR2/DLC1/VoidWardCrab/texVoidWardCrab_Normals.png"; public static string texVoidWardCrabBlackDiffuse = "RoR2/DLC1/VoidWardCrab/texVoidWardCrabBlack_Diffuse.png"; public static string texVoidWardCrabBlueDiffuse = "RoR2/DLC1/VoidWardCrab/texVoidWardCrabBlue_Diffuse.png"; public static string texVoidWardCrabGoldDiffuse = "RoR2/DLC1/VoidWardCrab/texVoidWardCrabGold_Diffuse.png"; public static string texVoidWardCrabGreenDiffuse = "RoR2/DLC1/VoidWardCrab/texVoidWardCrabGreen_Diffuse.png"; public static string texVoidWardCrabPurpleDiffuse = "RoR2/DLC1/VoidWardCrab/texVoidWardCrabPurple_Diffuse.png"; public static string texVoidWardCrabRedDiffuse = "RoR2/DLC1/VoidWardCrab/texVoidWardCrabRed_Diffuse.png"; public static string texVoidWardCrabWhiteDiffuse = "RoR2/DLC1/VoidWardCrab/texVoidWardCrabWhite_Diffuse.png"; public static string texCoffeeDiffuse = "RoR2/DLC1/AttackSpeedAndMoveSpeed/texCoffeeDiffuse.png"; public static string texCoffeeNormals = "RoR2/DLC1/AttackSpeedAndMoveSpeed/texCoffeeNormals.png"; public static string texCoffeeIcon = "RoR2/DLC1/AttackSpeedAndMoveSpeed/texCoffeeIcon.png"; public static string texBearVoidDiffuse = "RoR2/DLC1/BearVoid/texBearVoidDiffuse.png"; public static string texBearVoidNormal = "RoR2/DLC1/BearVoid/texBearVoidNormal.png"; public static string texBearVoidIcon = "RoR2/DLC1/BearVoid/texBearVoidIcon.png"; public static string texBuffBearVoidCooldown = "RoR2/DLC1/BearVoid/texBuffBearVoidCooldown.png"; public static string texBuffBearVoidReady = "RoR2/DLC1/BearVoid/texBuffBearVoidReady.tif"; public static string texBuffFractureIcon = "RoR2/DLC1/BleedOnHitVoid/texBuffFractureIcon.tif"; public static string texTriTipVoidIcon = "RoR2/DLC1/BleedOnHitVoid/texTriTipVoidIcon.png"; public static string texTriTipVoidDiffuse = "RoR2/DLC1/BleedOnHitVoid/texTriTipVoidDiffuse.png"; public static string texTriTipVoidMask = "RoR2/DLC1/BleedOnHitVoid/texTriTipVoidMask.png"; public static string texTriTipVoidNormal = "RoR2/DLC1/BleedOnHitVoid/texTriTipVoidNormal.png"; public static string texUkuleleVoidIcon = "RoR2/DLC1/ChainLightningVoid/texUkuleleVoidIcon.png"; public static string texUkaleleVoidDiffuse = "RoR2/DLC1/ChainLightningVoid/texUkaleleVoidDiffuse.png"; public static string texUkaleleVoidNormal = "RoR2/DLC1/ChainLightningVoid/texUkaleleVoidNormal.png"; public static string texCloverVoidDiffuse = "RoR2/DLC1/CloverVoid/texCloverVoidDiffuse.png"; public static string texCloverVoidEmissive = "RoR2/DLC1/CloverVoid/texCloverVoidEmissive.png"; public static string texCloverVoidNormal = "RoR2/DLC1/CloverVoid/texCloverVoidNormal.png"; public static string texCloverVoidIcon = "RoR2/DLC1/CloverVoid/texCloverVoidIcon.png"; public static string texLaserSightDiffuse = "RoR2/DLC1/CritDamage/texLaserSightDiffuse.png"; public static string texLaserSightEmission = "RoR2/DLC1/CritDamage/texLaserSightEmission.png"; public static string texLaserSightNormals = "RoR2/DLC1/CritDamage/texLaserSightNormals.png"; public static string texLaserSightIcon = "RoR2/DLC1/CritDamage/texLaserSightIcon.png"; public static string texCritGlassesVoidDiffuse = "RoR2/DLC1/CritGlassesVoid/texCritGlassesVoidDiffuse.png"; public static string texCritGlassesVoidEmission = "RoR2/DLC1/CritGlassesVoid/texCritGlassesVoidEmission.png"; public static string texCritGlassesVoidNormal = "RoR2/DLC1/CritGlassesVoid/texCritGlassesVoidNormal.png"; public static string texCritGlassesVoidIcon = "RoR2/DLC1/CritGlassesVoid/texCritGlassesVoidIcon.png"; public static string texBlack16 = "RoR2/DLC1/DroneWeapons/texBlack.png"; public static string texTrimSheetDroneWeaponsWoodDiffuse = "RoR2/DLC1/DroneWeapons/texTrimSheetDroneWeaponsWoodDiffuse.png"; public static string texDroneWeaponsIcon = "RoR2/DLC1/DroneWeapons/texDroneWeaponsIcon.png"; public static string texBuffElementalRingVoidCooldownIcon = "RoR2/DLC1/ElementalRingVoid/texBuffElementalRingVoidCooldownIcon.tif"; public static string texBuffElementalRingVoidReadyIcon = "RoR2/DLC1/ElementalRingVoid/texBuffElementalRingVoidReadyIcon.tif"; public static string texVoidRingIcon = "RoR2/DLC1/ElementalRingVoid/texVoidRingIcon.png"; public static string texVoidRingDiffuse = "RoR2/DLC1/ElementalRingVoid/texVoidRingDiffuse.png"; public static string texVoidRingEmission = "RoR2/DLC1/ElementalRingVoid/texVoidRingEmission.png"; public static string texVoidRingFresnelMask = "RoR2/DLC1/ElementalRingVoid/texVoidRingFresnelMask.png"; public static string texVoidRingNormal = "RoR2/DLC1/ElementalRingVoid/texVoidRingNormal.png"; public static string texFuelCellVoidDiffuse = "RoR2/DLC1/EquipmentMagazineVoid/texFuelCellVoidDiffuse.png"; public static string texFuelCellVoidEmission = "RoR2/DLC1/EquipmentMagazineVoid/texFuelCellVoidEmission.png"; public static string texFuelCellVoidMask = "RoR2/DLC1/EquipmentMagazineVoid/texFuelCellVoidMask.png"; public static string texFuelCellVoidNormal = "RoR2/DLC1/EquipmentMagazineVoid/texFuelCellVoidNormal.png"; public static string texFuelCellVoidIcon = "RoR2/DLC1/EquipmentMagazineVoid/texFuelCellVoidIcon.png"; public static string texWilloWispVoidIcon = "RoR2/DLC1/ExplodeOnDeathVoid/texWilloWispVoidIcon.png"; public static string texWilloWispVoidNormal = "RoR2/DLC1/ExplodeOnDeathVoid/texWilloWispVoidNormal.png"; public static string texWilloWispVoidVertex = "RoR2/DLC1/ExplodeOnDeathVoid/texWilloWispVoidVertex.png"; public static string texHippoVoidDiffuse = "RoR2/DLC1/ExtraLifeVoid/texHippoVoidDiffuse.png"; public static string texHippoVoidFresnelMask = "RoR2/DLC1/ExtraLifeVoid/texHippoVoidFresnelMask.png"; public static string texHippoVoidNormal = "RoR2/DLC1/ExtraLifeVoid/texHippoVoidNormal.png"; public static string texVoidHippoEmissive = "RoR2/DLC1/ExtraLifeVoid/texVoidHippoEmissive.png"; public static string texHippoVoidIcon = "RoR2/DLC1/ExtraLifeVoid/texHippoVoidIcon.png"; public static string texHippoVoidIconConsumed = "RoR2/DLC1/ExtraLifeVoid/texHippoVoidIconConsumed.png"; public static string texDelicateWatchDiffuse = "RoR2/DLC1/FragileDamageBonus/texDelicateWatch_Diffuse.png"; public static string texDelicateWatchMask = "RoR2/DLC1/FragileDamageBonus/texDelicateWatch_Mask.png"; public static string texDelicateWatchNormals = "RoR2/DLC1/FragileDamageBonus/texDelicateWatch_Normals.png"; public static string texDelicateWatchBrokenIcon = "RoR2/DLC1/FragileDamageBonus/texDelicateWatchBrokenIcon.png"; public static string texDelicateWatchIcon = "RoR2/DLC1/FragileDamageBonus/texDelicateWatchIcon.png"; public static string texShippingRequestFormDiffuse = "RoR2/DLC1/FreeChest/texShippingRequestForm_Diffuse.png"; public static string texShippingRequestFormNormal = "RoR2/DLC1/FreeChest/texShippingRequestForm_Normal.png"; public static string texShippingRequestFormIcon = "RoR2/DLC1/FreeChest/texShippingRequestFormIcon.png"; public static string texRollOfPenniesDiffuse = "RoR2/DLC1/GoldOnHurt/texRollOfPennies_Diffuse.png"; public static string texRollOfPenniesFresnelMask = "RoR2/DLC1/GoldOnHurt/texRollOfPennies_FresnelMask.png"; public static string texRollOfPenniesNormals = "RoR2/DLC1/GoldOnHurt/texRollOfPennies_Normals.png"; public static string texRollOfPenniesIcon = "RoR2/DLC1/GoldOnHurt/texRollOfPenniesIcon.png"; public static string texLunarShoulderNatureDiffuse = "RoR2/DLC1/HalfAttackSpeedHalfCooldowns/texLunarShoulderNatureDiffuse.png"; public static string texLunarShoulderNatureNormal = "RoR2/DLC1/HalfAttackSpeedHalfCooldowns/texLunarShoulderNatureNormal.png"; public static string texLunarShoulderNatureIcon = "RoR2/DLC1/HalfAttackSpeedHalfCooldowns/texLunarShoulderNatureIcon.png"; public static string texLunarShoulderStoneDiffuse = "RoR2/DLC1/HalfSpeedDoubleHealth/texLunarShoulderStoneDiffuse.png"; public static string texLunarShoulderStoneEmission = "RoR2/DLC1/HalfSpeedDoubleHealth/texLunarShoulderStoneEmission.png"; public static string texLunarShoulderStoneFresnelMask = "RoR2/DLC1/HalfSpeedDoubleHealth/texLunarShoulderStoneFresnelMask.png"; public static string texLunarShoulderStoneNormal = "RoR2/DLC1/HalfSpeedDoubleHealth/texLunarShoulderStoneNormal.png"; public static string texDirtLunarShoulder = "RoR2/DLC1/HalfSpeedDoubleHealth/texDirtLunarShoulder.png"; public static string texHalfSpeedDoubleHealthDiffuse = "RoR2/DLC1/HalfSpeedDoubleHealth/texHalfSpeedDoubleHealthDiffuse.png"; public static string texHalfSpeedDoubleHealthFresnelMask = "RoR2/DLC1/HalfSpeedDoubleHealth/texHalfSpeedDoubleHealthFresnelMask.png"; public static string texHalfSpeedDoubleHealthNormals = "RoR2/DLC1/HalfSpeedDoubleHealth/texHalfSpeedDoubleHealthNormals.png"; public static string texLunarShoulderStoneIcon = "RoR2/DLC1/HalfSpeedDoubleHealth/texLunarShoulderStoneIcon.png"; public static string texHealingPotionCorkDiffuse = "RoR2/DLC1/HealingPotion/texHealingPotionCork_Diffuse.png"; public static string texHealingPotionCorkEmissive = "RoR2/DLC1/HealingPotion/texHealingPotionCork_Emissive.png"; public static string texHealingPotionCorkNormals = "RoR2/DLC1/HealingPotion/texHealingPotionCork_Normals.png"; public static string texHealingPotion = "RoR2/DLC1/HealingPotion/texHealingPotion.png"; public static string texHealingPotionConsumed = "RoR2/DLC1/HealingPotion/texHealingPotionConsumed.png"; public static string texRainCoatDiffuse = "RoR2/DLC1/ImmuneToDebuff/texRainCoatDiffuse.png"; public static string texRainCoatNormal = "RoR2/DLC1/ImmuneToDebuff/texRainCoatNormal.png"; public static string texBuffImmuneToDebuff = "RoR2/DLC1/ImmuneToDebuff/texBuffImmuneToDebuff.tiff"; public static string texBuffImmuneToDebuffConsumed = "RoR2/DLC1/ImmuneToDebuff/texBuffImmuneToDebuffConsumed.tif"; public static string texBuffImmuneToDebuffSolid = "RoR2/DLC1/ImmuneToDebuff/texBuffImmuneToDebuffSolid.tif"; public static string texImmuneToDebuffMask = "RoR2/DLC1/ImmuneToDebuff/texImmuneToDebuffMask.png"; public static string texRaincoatIcon = "RoR2/DLC1/ImmuneToDebuff/texRaincoatIcon.png"; public static string texSunHeadDiffuse = "RoR2/DLC1/LunarSun/texSunHeadDiffuse.png"; public static string texSunHeadMask = "RoR2/DLC1/LunarSun/texSunHeadMask.png"; public static string texSunHeadNormal = "RoR2/DLC1/LunarSun/texSunHeadNormal.png"; public static string texSunHeadPickup = "RoR2/DLC1/LunarSun/texSunHeadPickup.png"; public static string texSunHeadIcon = "RoR2/DLC1/LunarSun/texSunHeadIcon.png"; public static string texLunarWingsDiffuse = "RoR2/DLC1/LunarWings/texLunarWingsDiffuse.png"; public static string texLunarWingsEmission = "RoR2/DLC1/LunarWings/texLunarWingsEmission.png"; public static string texLunarWingsNormal = "RoR2/DLC1/LunarWings/texLunarWingsNormal.png"; public static string texLunarWingsIcon = "RoR2/DLC1/LunarWings/texLunarWingsIcon.png"; public static string texDefenseNucleusDiffuse = "RoR2/DLC1/MinorConstructOnKill/texDefenseNucleusDiffuse.png"; public static string texDefenseNucleusEmission = "RoR2/DLC1/MinorConstructOnKill/texDefenseNucleusEmission.png"; public static string texDefenseNucleusNormal = "RoR2/DLC1/MinorConstructOnKill/texDefenseNucleusNormal.png"; public static string texMinorConstructOnKillIcon = "RoR2/DLC1/MinorConstructOnKill/texMinorConstructOnKillIcon.png"; public static string texMissileLauncherVoidDiffuse = "RoR2/DLC1/MissileVoid/texMissileLauncherVoidDiffuse.png"; public static string texMissileLauncherVoidEmissive = "RoR2/DLC1/MissileVoid/texMissileLauncherVoidEmissive.png"; public static string texMissileLauncherVoidFresnelMask = "RoR2/DLC1/MissileVoid/texMissileLauncherVoidFresnelMask.png"; public static string texMissileLauncherVoidNormal = "RoR2/DLC1/MissileVoid/texMissileLauncherVoidNormal.png"; public static string texMissileLauncherVoidIcon = "RoR2/DLC1/MissileVoid/texMissileLauncherVoidIcon.png"; public static string texICBMIcon = "RoR2/DLC1/MoreMissile/texICBMIcon.png"; public static string texMoveSpeedOnKillDiffuse = "RoR2/DLC1/MoveSpeedOnKill/texMoveSpeedOnKillDiffuse.png"; public static string texMoveSpeedOnKillNormal = "RoR2/DLC1/MoveSpeedOnKill/texMoveSpeedOnKillNormal.png"; public static string texBuffKillMoveSpeed = "RoR2/DLC1/MoveSpeedOnKill/texBuffKillMoveSpeed.tif"; public static string texGrappleHookIcon = "RoR2/DLC1/MoveSpeedOnKill/texGrappleHookIcon.png"; public static string texMushroomVoidDiffuse = "RoR2/DLC1/MushroomVoid/texMushroomVoidDiffuse.png"; public static string texMushroomVoidEmissive = "RoR2/DLC1/MushroomVoid/texMushroomVoidEmissive.png"; public static string texMushroomVoidNormal = "RoR2/DLC1/MushroomVoid/texMushroomVoidNormal.png"; public static string texBuffMushroomVoidIcon = "RoR2/DLC1/MushroomVoid/texBuffMushroomVoidIcon.tif"; public static string texMushroomVoidIcon = "RoR2/DLC1/MushroomVoid/texMushroomVoidIcon.png"; public static string texOddlyShapedOpalDiffuse = "RoR2/DLC1/OutOfCombatArmor/texOddlyShapedOpal_Diffuse.png"; public static string texOddlyShapedOpalMask = "RoR2/DLC1/OutOfCombatArmor/texOddlyShapedOpal_Mask.png"; public static string texOddlyShapedOpalNormal = "RoR2/DLC1/OutOfCombatArmor/texOddlyShapedOpal_Normal.png"; public static string texBuffUtilitySkillArmor = "RoR2/DLC1/OutOfCombatArmor/texBuffUtilitySkillArmor.tif"; public static string texOddlyShapedOpalIcon = "RoR2/DLC1/OutOfCombatArmor/texOddlyShapedOpalIcon.png"; public static string texScorpionDiffuse = "RoR2/DLC1/PermanentDebuffOnHit/texScorpion_Diffuse.png"; public static string texScorpionEmissive = "RoR2/DLC1/PermanentDebuffOnHit/texScorpion_Emissive.png"; public static string texScorpionNormal = "RoR2/DLC1/PermanentDebuffOnHit/texScorpion_Normal.png"; public static string texBuffPermanentDebuffIcon = "RoR2/DLC1/PermanentDebuffOnHit/texBuffPermanentDebuffIcon.tif"; public static string texScorpionIcon = "RoR2/DLC1/PermanentDebuffOnHit/texScorpionIcon.png"; public static string texShurikenDiffuse = "RoR2/DLC1/PrimarySkillShuriken/texShurikenDiffuse.png"; public static string texShurikenNormals = "RoR2/DLC1/PrimarySkillShuriken/texShurikenNormals.png"; public static string texPrimarySkillShurikenBuffIcon = "RoR2/DLC1/PrimarySkillShuriken/texPrimarySkillShurikenBuffIcon.tif"; public static string texShurikenIcon = "RoR2/DLC1/PrimarySkillShuriken/texShurikenIcon.png"; public static string texBottledChaosDiffuse = "RoR2/DLC1/RandomEquipmentTrigger/texBottledChaos_Diffuse.png"; public static string texBottledChaosNormal = "RoR2/DLC1/RandomEquipmentTrigger/texBottledChaos_Normal.png"; public static string texBottledChaosIcon = "RoR2/DLC1/RandomEquipmentTrigger/texBottledChaosIcon.png"; public static string texDominoDiffuse = "RoR2/DLC1/RandomlyLunar/texDominoDiffuse.png"; public static string texDominoDirt = "RoR2/DLC1/RandomlyLunar/texDominoDirt.png"; public static string texDominoNormal = "RoR2/DLC1/RandomlyLunar/texDominoNormal.png"; public static string texDominoSplatmap = "RoR2/DLC1/RandomlyLunar/texDominoSplatmap.png"; public static string texDominoIcon = "RoR2/DLC1/RandomlyLunar/texDominoIcon.png"; public static string orange = "RoR2/DLC1/RegeneratingScrap/orange.png"; public static string texRegeneratingScrapGooDiffuse = "RoR2/DLC1/RegeneratingScrap/texRegeneratingScrapGooDiffuse.png"; public static string texRegeneratingScrapGooDisplacement = "RoR2/DLC1/RegeneratingScrap/texRegeneratingScrapGooDisplacement.png"; public static string texRegeneratingScrapGooEmission = "RoR2/DLC1/RegeneratingScrap/texRegeneratingScrapGooEmission.png"; public static string texRegeneratingScrapGooNormal = "RoR2/DLC1/RegeneratingScrap/texRegeneratingScrapGooNormal.png"; public static string texRegeneratingScrapSplatMap = "RoR2/DLC1/RegeneratingScrap/texRegeneratingScrapSplatMap.png"; public static string texRegeneratingScrapConsumedIcon = "RoR2/DLC1/RegeneratingScrap/texRegeneratingScrapConsumedIcon.png"; public static string texRegeneratingScrapIcon = "RoR2/DLC1/RegeneratingScrap/texRegeneratingScrapIcon.png"; public static string texScrapVoidNormal = "RoR2/DLC1/ScrapVoid/texScrapVoidNormal.png"; public static string texVoidScrapGreenIcon = "RoR2/DLC1/ScrapVoid/texVoidScrapGreenIcon.png"; public static string texVoidScrapRedIcon = "RoR2/DLC1/ScrapVoid/texVoidScrapRedIcon.png"; public static string texVoidScrapWhiteIcon = "RoR2/DLC1/ScrapVoid/texVoidScrapWhiteIcon.png"; public static string texBaubleVoidDiffuse = "RoR2/DLC1/SlowOnHitVoid/texBaubleVoidDiffuse.png"; public static string texBaubleVoidNormal = "RoR2/DLC1/SlowOnHitVoid/texBaubleVoidNormal.png"; public static string texBaubleVoidTrimDiffuse = "RoR2/DLC1/SlowOnHitVoid/texBaubleVoidTrimDiffuse.png"; public static string texBaubleVoidTrimDisplacement = "RoR2/DLC1/SlowOnHitVoid/texBaubleVoidTrimDisplacement.png"; public static string texBaubleVoidTrimEmissive = "RoR2/DLC1/SlowOnHitVoid/texBaubleVoidTrimEmissive.png"; public static string texBaubleVoidTrimNormal = "RoR2/DLC1/SlowOnHitVoid/texBaubleVoidTrimNormal.png"; public static string texBaubleVoidIcon = "RoR2/DLC1/SlowOnHitVoid/texBaubleVoidIcon.png"; public static string texGasTankDiffuse = "RoR2/DLC1/StrengthenBurn/texGasTankDiffuse.png"; public static string texGasTankMask = "RoR2/DLC1/StrengthenBurn/texGasTankMask.png"; public static string texGasTankNormal = "RoR2/DLC1/StrengthenBurn/texGasTankNormal.png"; public static string texBuffStrongerBurnIcon = "RoR2/DLC1/StrengthenBurn/texBuffStrongerBurnIcon.tif"; public static string texGasTankIcon = "RoR2/DLC1/StrengthenBurn/texGasTankIcon.png"; public static string texKeyVoidDiffuse = "RoR2/DLC1/TreasureCacheVoid/texKeyVoidDiffuse.png"; public static string texKeyVoidNormal = "RoR2/DLC1/TreasureCacheVoid/texKeyVoidNormal.png"; public static string texKeyVoidIcon = "RoR2/DLC1/TreasureCacheVoid/texKeyVoidIcon.png"; public static string texMegaCrabItem = "RoR2/DLC1/texMegaCrabItem.png"; public static string texSubThoraxDiffuse = "RoR2/DLC1/texSubThoraxDiffuse.png"; public static string texSubThoraxEmission = "RoR2/DLC1/texSubThoraxEmission.png"; public static string texSubThoraxNormal = "RoR2/DLC1/texSubThoraxNormal.png"; public static string texVoidCoinIcon = "RoR2/DLC1/VoidCoin/texVoidCoinIcon.png"; public static string texAncientLoftBaseWhiteBrick = "RoR2/DLC1/ancientloft/texAncientLoft_BaseWhiteBrick.png"; public static string texAncientLoftCircleArchwayDiffuse = "RoR2/DLC1/ancientloft/texAncientLoft_CircleArchwayDiffuse.png"; public static string texAncientLoftCircleArchwayGreenNormal = "RoR2/DLC1/ancientloft/texAncientLoft_CircleArchwayGreenNormal.png"; public static string texAncientLoftCloud = "RoR2/DLC1/ancientloft/texAncientLoft_Cloud.tga"; public static string texAncientLoftFlowerFlecksDiffuse = "RoR2/DLC1/ancientloft/texAncientLoft_FlowerFlecksDiffuse.png"; public static string texAncientLoftLichen = "RoR2/DLC1/ancientloft/texAncientLoft_Lichen.png"; public static string texAncientLoftLichenGreenLighter = "RoR2/DLC1/ancientloft/texAncientLoft_LichenGreenLighter.tga"; public static string texAncientLoftLichenGreenOvergrownGroundStone = "RoR2/DLC1/ancientloft/texAncientLoft_LichenGreenOvergrownGroundStone.tga"; public static string texAncientLoftLilyPad = "RoR2/DLC1/ancientloft/texAncientLoft_LilyPad.tga"; public static string texAncientLoftRim = "RoR2/DLC1/ancientloft/texAncientLoft_Rim.png"; public static string texAncientLoftsplat = "RoR2/DLC1/ancientloft/texAncientLoft_splat.png"; public static string texAncientLoftsplatPillar = "RoR2/DLC1/ancientloft/texAncientLoft_splat_Pillar.png"; public static string texAncientLoftStoneSurfaceDiffuse = "RoR2/DLC1/ancientloft/texAncientLoft_StoneSurfaceDiffuse.png"; public static string texAncientLoftStoneSurfaceNormal = "RoR2/DLC1/ancientloft/texAncientLoft_StoneSurfaceNormal.png"; public static string texAncientLoftTempleDecal = "RoR2/DLC1/ancientloft/texAncientLoft_TempleDecal.tga"; public static string texAncientLoftTileRustyMetal = "RoR2/DLC1/ancientloft/texAncientLoft_TileRustyMetal.tif"; public static string texAncientLoftPreview = "RoR2/DLC1/ancientloft/texAncientLoftPreview.png"; public static string spmBonsai1V1InfiniteTowerAtlas = "RoR2/DLC1/itancientloft/spmBonsai1V1InfiniteTower_Atlas.png"; public static string texAncientLoftLichenGreenLighterInfiniteTower = "RoR2/DLC1/itancientloft/texAncientLoft_LichenGreenLighterInfiniteTower.tga"; public static string texAncientLoftLichenGreenOvergrownGroundStoneInfiniteTower = "RoR2/DLC1/itancientloft/texAncientLoft_LichenGreenOvergrownGroundStoneInfiniteTower.tga"; public static string texAncientLoftLichenInfiniteTower = "RoR2/DLC1/itancientloft/texAncientLoft_LichenInfiniteTower.png"; public static string texAncientLoftStoneSurfaceDiffuseInfiniteTower = "RoR2/DLC1/itancientloft/texAncientLoft_StoneSurfaceDiffuseInfiniteTower.png"; public static string texDCGravelDiffuseInfiniteTower = "RoR2/DLC1/itancientloft/texDCGravelDiffuseInfiniteTower.png"; public static string texGPGrassTerrainInfiniteTower = "RoR2/DLC1/itancientloft/texGPGrassTerrainInfiniteTower.png"; public static string texGPLichenTerrainInfiniteTower = "RoR2/DLC1/itancientloft/texGPLichenTerrainInfiniteTower.png"; public static string texBlackbeachDirtInfiniteTower = "RoR2/DLC1/itdampcave/texBlackbeachDirtInfiniteTower.png"; public static string texDCGrassInfiniteTower = "RoR2/DLC1/itdampcave/texDCGrassInfiniteTower.png"; public static string texDCGravelDiffuseInfiniteTower10 = "RoR2/DLC1/itdampcave/texDCGravelDiffuseInfiniteTower.png"; public static string texDCHeatvent1DiffuseInfiniteTower = "RoR2/DLC1/itdampcave/texDCHeatvent1DiffuseInfiniteTower.png"; public static string texDCRockSideInfiniteTower = "RoR2/DLC1/itdampcave/texDCRockSideInfiniteTower.png"; public static string texDCSulfurInfiniteTower = "RoR2/DLC1/itdampcave/texDCSulfurInfiniteTower.png"; public static string texTrimSheetLemurianRuinsInfiniteTower = "RoR2/DLC1/itdampcave/texTrimSheetLemurianRuinsInfiniteTower.png"; public static string texTrimSheetRuinsInfiniteTower = "RoR2/DLC1/itdampcave/texTrimSheetRuinsInfiniteTower.png"; public static string texWhiteSandSimpleInfiniteTower = "RoR2/DLC1/itdampcave/texWhiteSandSimpleInfiniteTower.png"; public static string texFWBasicRockSideInfiniteTower = "RoR2/DLC1/itfrozenwall/texFWBasicRockSideInfiniteTower.png"; public static string texFWIceDiffuseInfiniteTower = "RoR2/DLC1/itfrozenwall/texFWIceDiffuseInfiniteTower.png"; public static string texFWSnowInfiniteTower = "RoR2/DLC1/itfrozenwall/texFWSnowInfiniteTower.tga"; public static string spmGPGrassInfiniteTowerAtlas = "RoR2/DLC1/itgolemplains/spmGPGrassInfiniteTower_Atlas.png"; public static string texGPGrassInfiniteTower = "RoR2/DLC1/itgolemplains/texGPGrassInfiniteTower.png"; public static string texGLMudDiffuseInfiniteTower = "RoR2/DLC1/itgoolake/texGLMudDiffuseInfiniteTower.png"; public static string texGLRockSideInfiniteTower = "RoR2/DLC1/itgoolake/texGLRockSideInfiniteTower.png"; public static string texSand1SimpleInfiniteTower = "RoR2/DLC1/itgoolake/texSand1SimpleInfiniteTower.png"; public static string texStage2RockSideInfiniteTower = "RoR2/DLC1/itgoolake/texStage2RockSideInfiniteTower.png"; public static string texTrimSheetSandstoneInfiniteTowerDiffuse = "RoR2/DLC1/itgoolake/texTrimSheetSandstoneInfiniteTowerDiffuse.png"; public static string texWhorlShellDiffuseInfiniteTower = "RoR2/DLC1/itgoolake/texWhorlShellDiffuseInfiniteTower.png"; public static string texacridConstellation = "RoR2/DLC1/itmoon/texacridConstellation.png"; public static string texlunartrinketsConstellation = "RoR2/DLC1/itmoon/texlunartrinketsConstellation.png"; public static string texscavstandConstellation = "RoR2/DLC1/itmoon/texscavstandConstellation.png"; public static string spmSGMushroom2ClusterAtlas6 = "RoR2/DLC1/itskymeadow/spmSGMushroom2Cluster_Atlas.tga"; public static string texSGMushroom2Height7 = "RoR2/DLC1/itskymeadow/texSGMushroom2Height.png"; public static string spmSMFruitPlantDuoInfiniteTowerAtlas = "RoR2/DLC1/itskymeadow/spmSMFruitPlantDuoInfiniteTower_Atlas.tga"; public static string spmSMFruitPlantDuoInfiniteTowerAtlasBillboardsEmission = "RoR2/DLC1/itskymeadow/spmSMFruitPlantDuoInfiniteTower_Atlas_Billboards Emission.tga"; public static string spmSMFruitPlantDuoInfiniteTowerAtlasBillboards = "RoR2/DLC1/itskymeadow/spmSMFruitPlantDuoInfiniteTower_Atlas_Billboards.tga"; public static string spmSMFruitPlantDuoInfiniteTowerAtlasBillboardsNormal = "RoR2/DLC1/itskymeadow/spmSMFruitPlantDuoInfiniteTower_Atlas_Billboards_Normal.tga"; public static string spmSMFruitPlantInfiniteTowerAtlasEmission = "RoR2/DLC1/itskymeadow/spmSMFruitPlantInfiniteTower_Atlas Emission.tga"; public static string spmSMFruitPlantInfiniteTowerAtlasNormal = "RoR2/DLC1/itskymeadow/spmSMFruitPlantInfiniteTower_Atlas Normal.tga"; public static string spmSMFruitPlantInfiniteTowerAtlas = "RoR2/DLC1/itskymeadow/spmSMFruitPlantInfiniteTower_Atlas.tga"; public static string spmSMFruitPlantInfiniteTowerAtlasBillboardsEmission = "RoR2/DLC1/itskymeadow/spmSMFruitPlantInfiniteTower_Atlas_Billboards Emission.tga"; public static string spmSMFruitPlantInfiniteTowerAtlasBillboards = "RoR2/DLC1/itskymeadow/spmSMFruitPlantInfiniteTower_Atlas_Billboards.tga"; public static string spmSMFruitPlantInfiniteTowerAtlasBillboardsNormal = "RoR2/DLC1/itskymeadow/spmSMFruitPlantInfiniteTower_Atlas_Billboards_Normal.tga"; public static string texSMFruitBarkInfiniteTowerDiffuse = "RoR2/DLC1/itskymeadow/texSMFruitBarkInfiniteTowerDiffuse.tga"; public static string spmSMGrassInfiniteTowerAtlas = "RoR2/DLC1/itskymeadow/spmSMGrassInfiniteTower_Atlas.tga"; public static string spmSMGrassSmallClusterInfiniteTowerAtlas = "RoR2/DLC1/itskymeadow/spmSMGrassSmallClusterInfiniteTower_Atlas.tga"; public static string texSMGrassInfiniteTowerEmissionMask = "RoR2/DLC1/itskymeadow/texSMGrassInfiniteTowerEmissionMask.png"; public static string spmSMHangingVinesClusterInfiniteTowerAtlas = "RoR2/DLC1/itskymeadow/spmSMHangingVinesClusterInfiniteTower_Atlas.tga"; public static string texSMFruitLeafInfiniteTowerDiffuse = "RoR2/DLC1/itskymeadow/texSMFruitLeafInfiniteTowerDiffuse.png"; public static string texSMGrassTerrainInfiniteTower = "RoR2/DLC1/itskymeadow/texSMGrassTerrainInfiniteTower.png"; public static string texSMLichenTerrainInfiniteTower = "RoR2/DLC1/itskymeadow/texSMLichenTerrainInfiniteTower.png"; public static string texSMRockSide2InfiniteTower = "RoR2/DLC1/itskymeadow/texSMRockSide2InfiniteTower.png"; public static string texSMRockSideInfiniteTower = "RoR2/DLC1/itskymeadow/texSMRockSideInfiniteTower.png"; public static string texSMSpikeBridgeInfiniteTowerDiffuse = "RoR2/DLC1/itskymeadow/texSMSpikeBridgeInfiniteTowerDiffuse.png"; public static string texTrimSheetRuinsInfiniteTower7 = "RoR2/DLC1/itskymeadow/texTrimSheetRuinsInfiniteTower.png"; public static string spmSFDryBushAtlas = "RoR2/DLC1/snowyforest/spmSFDryBush_Atlas.tga"; public static string texSFTreeSap = "RoR2/DLC1/snowyforest/texSF_TreeSap.tga"; public static string texSFTreeSapNormal = "RoR2/DLC1/snowyforest/texSF_TreeSapNormal.tga"; public static string texSFAurora = "RoR2/DLC1/snowyforest/texSFAurora.tga"; public static string texSFAuroraMask = "RoR2/DLC1/snowyforest/texSFAuroraMask.png"; public static string texSFBigIndividualLeaves = "RoR2/DLC1/snowyforest/texSFBigIndividualLeaves.png"; public static string texSFCausticshadow = "RoR2/DLC1/snowyforest/texSFCausticshadow.png"; public static string texSFFrost = "RoR2/DLC1/snowyforest/texSFFrost.tga"; public static string texSFGodRay = "RoR2/DLC1/snowyforest/texSFGodRay.tga"; public static string texSFGrass = "RoR2/DLC1/snowyforest/texSFGrass.tga"; public static string texSFGround = "RoR2/DLC1/snowyforest/texSFGround.png"; public static string texSFIceCracks = "RoR2/DLC1/snowyforest/texSFIceCracks.tga"; public static string texSFLeaves = "RoR2/DLC1/snowyforest/texSFLeaves.tga"; public static string texSFSnow = "RoR2/DLC1/snowyforest/texSFSnow.tga"; public static string texSFTree = "RoR2/DLC1/snowyforest/texSFTree.png"; public static string texSFTreering = "RoR2/DLC1/snowyforest/texSFTreering.png"; public static string texSnowyforestPreview = "RoR2/DLC1/snowyforest/texSnowyforestPreview.jpg"; public static string spmSPVine = "RoR2/DLC1/sulfurpools/spmSPVine.tga"; public static string texSPCoralEmi = "RoR2/DLC1/sulfurpools/texSPCoralEmi.png"; public static string texSPCoralSplat = "RoR2/DLC1/sulfurpools/texSPCoralSplat.png"; public static string texSPCoralString = "RoR2/DLC1/sulfurpools/texSPCoralString.tga"; public static string texSPGrass = "RoR2/DLC1/sulfurpools/texSPGrass.tga"; public static string texSPGrassEMI = "RoR2/DLC1/sulfurpools/texSPGrassEMI.png"; public static string texSPGroundDIFMain = "RoR2/DLC1/sulfurpools/texSPGroundDIFMain.png"; public static string texSPGroundDIFPale = "RoR2/DLC1/sulfurpools/texSPGroundDIFPale.tga"; public static string texSPGroundDIFVein = "RoR2/DLC1/sulfurpools/texSPGroundDIFVein.tga"; public static string texSPGroundRed = "RoR2/DLC1/sulfurpools/texSPGroundRed.png"; public static string texSPSpheremoss = "RoR2/DLC1/sulfurpools/texSPSpheremoss.tga"; public static string texSPSphereNrm = "RoR2/DLC1/sulfurpools/texSPSphereNrm.png"; public static string texSPSphereRock = "RoR2/DLC1/sulfurpools/texSPSphereRock.png"; public static string texSPSphereSplat = "RoR2/DLC1/sulfurpools/texSPSphereSplat.png"; public static string texSPTallGrass = "RoR2/DLC1/sulfurpools/texSPTallGrass.tga"; public static string texSulfurPoolsPreview = "RoR2/DLC1/sulfurpools/texSulfurPoolsPreview.png"; public static string texGPGrassTerrainRaidBoss = "RoR2/DLC1/voidraid/texGPGrassTerrainRaidBoss.png"; public static string Planet2DPlanetStripEarth = "RoR2/DLC1/voidraid/Planet2DPlanetStripEarth.png"; public static string tex2DPlanetBlackBase = "RoR2/DLC1/voidraid/tex2DPlanetBlackBase.png"; public static string tex2DPlanetEarth = "RoR2/DLC1/voidraid/tex2DPlanetEarth.png"; public static string tex2DPlanetFrozenEarth = "RoR2/DLC1/voidraid/tex2DPlanetFrozenEarth.png"; public static string tex2DPlanetGreyStreak = "RoR2/DLC1/voidraid/tex2DPlanetGreyStreak.png"; public static string tex2DPlanetSecretEgg = "RoR2/DLC1/voidraid/tex2DPlanetSecretEgg.png"; public static string tex2DPlanetSecretIce = "RoR2/DLC1/voidraid/tex2DPlanetSecretIce.png"; public static string tex2DPlanetSecretLunarPink = "RoR2/DLC1/voidraid/tex2DPlanetSecretLunarPink.png"; public static string tex2DPlanetSecretMars = "RoR2/DLC1/voidraid/tex2DPlanetSecretMars.png"; public static string tex2DPlanetSecretRing = "RoR2/DLC1/voidraid/tex2DPlanetSecretRing.png"; public static string tex2DPlanetSecretStar = "RoR2/DLC1/voidraid/tex2DPlanetSecretStar.png"; public static string tex2DPlanetSecretZ = "RoR2/DLC1/voidraid/tex2DPlanetSecretZ.png"; public static string texSphereNormal = "RoR2/DLC1/voidraid/texSphereNormal.png"; public static string text2DPlanetSecretMoon = "RoR2/DLC1/voidraid/text2DPlanetSecretMoon.png"; public static string texVoidRaid2DBillboardPlanets = "RoR2/DLC1/voidraid/texVoidRaid2DBillboardPlanets.png"; public static string texRaidPlanetMarsType2 = "RoR2/DLC1/voidraid/texRaidPlanetMarsType2.png"; public static string texVoidRaidPRing2 = "RoR2/DLC1/voidraid/texVoidRaidPRing2.png"; public static string texRaidPlanetOceanic = "RoR2/DLC1/voidraid/texRaidPlanetOceanic.png"; public static string texRaidPlanetSmoothGreenOceanType2 = "RoR2/DLC1/voidraid/texRaidPlanetSmoothGreenOceanType2.png"; public static string texRaidPlanetPurpleType2 = "RoR2/DLC1/voidraid/texRaidPlanetPurpleType2.png"; public static string texRaidPlanetSmoothGreenOcean = "RoR2/DLC1/voidraid/texRaidPlanetSmoothGreenOcean.png"; public static string texRaidPlanetMars = "RoR2/DLC1/voidraid/texRaidPlanetMars.png"; public static string texVoidRaidPRing3 = "RoR2/DLC1/voidraid/texVoidRaidPRing3.png"; public static string texRaidPlanetOceanicType2 = "RoR2/DLC1/voidraid/texRaidPlanetOceanicType2.png"; public static string texRaidPlanetPurple = "RoR2/DLC1/voidraid/texRaidPlanetPurple.png"; public static string texRaidPlanetVerdantGreenType2 = "RoR2/DLC1/voidraid/texRaidPlanetVerdantGreenType2.png"; public static string texRaidPlanetBlueMarble = "RoR2/DLC1/voidraid/texRaidPlanetBlueMarble.png"; public static string texRaidPlanetVerdantGreen = "RoR2/DLC1/voidraid/texRaidPlanetVerdantGreen.png"; public static string texVoidRaidAsteroidsSheet = "RoR2/DLC1/voidraid/texVoidRaidAsteroidsSheet.png"; public static string texVoidRaidPRing1 = "RoR2/DLC1/voidraid/texVoidRaidPRing1.png"; public static string texVoidTerrainDiffuseRaidVoid = "RoR2/DLC1/voidraid/texVoidTerrainDiffuseRaidVoid.tga"; public static string spmGPGrassRaidAtlas = "RoR2/DLC1/voidraid/spmGPGrassRaid_Atlas.tga"; public static string texRampVoidRaidSky = "RoR2/DLC1/voidraid/texRampVoidRaidSky.png"; public static string texVoidRaidFakePlanetCloud = "RoR2/DLC1/voidraid/texVoidRaidFakePlanetCloud.png"; public static string texVoidRaidSky = "RoR2/DLC1/voidraid/texVoidRaidSky.png"; public static string texVoidRaidPreview = "RoR2/DLC1/voidraid/texVoidRaidPreview.png"; public static string pavebakeDefaultMaterialNormal = "RoR2/DLC1/voidstage/pavebake_DefaultMaterial_Normal.png"; public static string texVoidBlackSunMoon = "RoR2/DLC1/voidstage/texVoidBlackSunMoon.tga"; public static string texVoidBlackSunRim = "RoR2/DLC1/voidstage/texVoidBlackSunRim.png"; public static string texVoidCrystalDiffuse = "RoR2/DLC1/voidstage/texVoidCrystalDiffuse.png"; public static string texVoidDecal = "RoR2/DLC1/voidstage/texVoidDecal.png"; public static string texVoidGrass = "RoR2/DLC1/voidstage/texVoidGrass.tga"; public static string texVoidGrassEmi = "RoR2/DLC1/voidstage/texVoidGrassEmi.png"; public static string texVoidMoss = "RoR2/DLC1/voidstage/texVoidMoss.tga"; public static string texVoidMossBlue = "RoR2/DLC1/voidstage/texVoidMossBlue.tga"; public static string texVoidMossOrange = "RoR2/DLC1/voidstage/texVoidMossOrange.tga"; public static string texVoidMossRed = "RoR2/DLC1/voidstage/texVoidMossRed.tga"; public static string texVoidMossYellow = "RoR2/DLC1/voidstage/texVoidMossYellow.tga"; public static string texVoidOverhangNormal = "RoR2/DLC1/voidstage/texVoidOverhangNormal.png"; public static string texVoidPillarSetNormal = "RoR2/DLC1/voidstage/texVoidPillarSetNormal.png"; public static string texVoidSandDiffuse = "RoR2/DLC1/voidstage/texVoidSandDiffuse.png"; public static string texVoidScrollSetNormal = "RoR2/DLC1/voidstage/texVoidScrollSetNormal.png"; public static string texVoidSmallMoon = "RoR2/DLC1/voidstage/texVoidSmallMoon.tga"; public static string texVoidSnow = "RoR2/DLC1/voidstage/texVoidSnow.tga"; public static string texVoidTerrainCards = "RoR2/DLC1/voidstage/texVoidTerrainCards.tga"; public static string texVoidTerrainCards2 = "RoR2/DLC1/voidstage/texVoidTerrainCards2.tga"; public static string texVoidTerrainDiffuse = "RoR2/DLC1/voidstage/texVoidTerrainDiffuse.tga"; public static string texVoidTerrainDiffuse2 = "RoR2/DLC1/voidstage/texVoidTerrainDiffuse2.tga"; public static string texVoidTerrainHLDiffuse = "RoR2/DLC1/voidstage/texVoidTerrainHLDiffuse.png"; public static string texVoidTerrainHLDiffuseType2 = "RoR2/DLC1/voidstage/texVoidTerrainHLDiffuseType2.png"; public static string texVoidTerrainPlatformDiffuse = "RoR2/DLC1/voidstage/texVoidTerrainPlatformDiffuse.png"; public static string texTrimsheetCrabMoldyDiffuse30 = "RoR2/DLC1/voidstage/texTrimsheetCrabMoldyDiffuse.png"; public static string texTrimsheetCrabNormal27 = "RoR2/DLC1/voidstage/texTrimsheetCrabNormal.png"; public static string texTrimsheetCrabRedDiffuse13 = "RoR2/DLC1/voidstage/texTrimsheetCrabRedDiffuse.png"; public static string texVoidTallGrass = "RoR2/DLC1/voidstage/texVoidTallGrass.tga"; public static string texWindNoiseswitch = "RoR2/DLC1/voidstage/texWindNoise_switch.tga"; public static string texVoidStagePreview = "RoR2/DLC1/voidstage/texVoidStagePreview.png"; public static string texVoidTransformationBackground = "RoR2/DLC1/UI/texVoidTransformationBackground.png"; public static string texVoidExpansionIcon = "RoR2/DLC1/UI/texVoidExpansionIcon.png"; public static string texArtifactRebirthDisabled = "RoR2/DLC2/texArtifactRebirthDisabled.png"; public static string texArtifactRebirthEnabled = "RoR2/DLC2/texArtifactRebirthEnabled.png"; public static string texObtainArtifactRebirthIcon = "RoR2/DLC2/texObtainArtifactRebirthIcon.png"; public static string texBuffBeadArmor = "RoR2/DLC2/texBuffBeadArmor.png"; public static string texBuffDisableAllSkillsIcon = "RoR2/DLC2/texBuffDisableAllSkillsIcon.png"; public static string texBuffsAmputation = "RoR2/DLC2/texBuffsAmputation.png"; public static string texChefAltAccessoriesDiffuse = "RoR2/DLC2/Chef/texChefAltAccessoriesDiffuse.png"; public static string texChefAltAccessoriesFresnel = "RoR2/DLC2/Chef/texChefAltAccessoriesFresnel.bmp"; public static string texChefAltAccessoriesNormal = "RoR2/DLC2/Chef/texChefAltAccessoriesNormal.png"; public static string texChefAltDiffuse = "RoR2/DLC2/Chef/texChefAltDiffuse.tga"; public static string texChefAltFresnel = "RoR2/DLC2/Chef/texChefAltFresnel.png"; public static string texChefAltIceBoxDiffuse = "RoR2/DLC2/Chef/texChefAltIceBoxDiffuse.png"; public static string texChefAltIceBoxFresnelMask = "RoR2/DLC2/Chef/texChefAltIceBoxFresnelMask.png"; public static string texChefAltIceBoxNormal = "RoR2/DLC2/Chef/texChefAltIceBoxNormal.png"; public static string texChefAltNormal = "RoR2/DLC2/Chef/texChefAltNormal.png"; public static string texChefDiffuse = "RoR2/DLC2/Chef/texChefDiffuse.tga"; public static string texChefEmissive = "RoR2/DLC2/Chef/texChefEmissive.tga"; public static string texChefIceBoxDiffuse = "RoR2/DLC2/Chef/texChefIceBoxDiffuse.png"; public static string texChefIceBoxFresnelMask = "RoR2/DLC2/Chef/texChefIceBoxFresnelMask.png"; public static string texChefIceBoxNormal = "RoR2/DLC2/Chef/texChefIceBoxNormal.png"; public static string texChefNormal = "RoR2/DLC2/Chef/texChefNormal.png"; public static string texChefKebobDiffuse = "RoR2/DLC2/Chef/Buffs/texChefKebobDiffuse.png"; public static string texChefKebobNormal = "RoR2/DLC2/Chef/Buffs/texChefKebobNormal.png"; public static string texPizzasliceDiffuse = "RoR2/DLC2/Chef/Buffs/texPizzasliceDiffuse.tga"; public static string texPizzasliceNormal = "RoR2/DLC2/Chef/Buffs/texPizzasliceNormal.png"; public static string texSakeNigiriDiffuse = "RoR2/DLC2/Chef/Buffs/texSakeNigiriDiffuse.tga"; public static string texTurkeylegDiffuse = "RoR2/DLC2/Chef/Buffs/texTurkeylegDiffuse.tga"; public static string texChefBoostedMark = "RoR2/DLC2/Chef/Buffs/texChefBoostedMark.png"; public static string texChefChilledMark = "RoR2/DLC2/Chef/Buffs/texChefChilledMark.png"; public static string texChefChoppedMark = "RoR2/DLC2/Chef/Buffs/texChefChoppedMark.png"; public static string texChefOiledMark = "RoR2/DLC2/Chef/Buffs/texChefOiledMark.png"; public static string texChefRoastedMark = "RoR2/DLC2/Chef/Buffs/texChefRoastedMark.png"; public static string texChefRolledMark = "RoR2/DLC2/Chef/Buffs/texChefRolledMark.png"; public static string texChefCleaverGhost1 = "RoR2/DLC2/Chef/texChefCleaverGhost1.png"; public static string texChefFrostDebuffIcon = "RoR2/DLC2/Chef/texChefFrostDebuffIcon.png"; public static string texChefIceBoxAchievementIcon = "RoR2/DLC2/Chef/texChefIceBoxAchievementIcon.png"; public static string texChefIceBoxSnowflake = "RoR2/DLC2/Chef/texChefIceBoxSnowflake.png"; public static string texChefSecondaryFlameVFX1 = "RoR2/DLC2/Chef/texChefSecondaryFlameVFX1.png"; public static string texChefSecondaryFlameVFX2 = "RoR2/DLC2/Chef/texChefSecondaryFlameVFX2.png"; public static string texChefGlazeGhost1 = "RoR2/DLC2/Chef/texChefGlazeGhost1.png"; public static string texChefGlazeGhost2 = "RoR2/DLC2/Chef/texChefGlazeGhost2.png"; public static string texChefGlazeGhost3 = "RoR2/DLC2/Chef/texChefGlazeGhost3.png"; public static string texChefGlazeGhost4 = "RoR2/DLC2/Chef/texChefGlazeGhost4.png"; public static string texChefGlazeImpactEffect1 = "RoR2/DLC2/Chef/texChefGlazeImpactEffect1.png"; public static string texChefGlazeImpactEffect2 = "RoR2/DLC2/Chef/texChefGlazeImpactEffect2.png"; public static string texChefGlazeImpactEffect3 = "RoR2/DLC2/Chef/texChefGlazeImpactEffect3.png"; public static string texChefGlazeImpactEffect4 = "RoR2/DLC2/Chef/texChefGlazeImpactEffect4.png"; public static string texChefYesChefFrostAuraMask = "RoR2/DLC2/Chef/texChefYesChefFrostAuraMask.png"; public static string texChefOilDecal = "RoR2/DLC2/Chef/texChefOilDecal.png"; public static string texChefOilDecalFrozenRamp = "RoR2/DLC2/Chef/texChefOilDecalFrozenRamp.png"; public static string texChefOilDecalMask = "RoR2/DLC2/Chef/texChefOilDecalMask.png"; public static string texChefOilDecalMask2 = "RoR2/DLC2/Chef/texChefOilDecalMask2.png"; public static string texChefOilDecalRamp = "RoR2/DLC2/Chef/texChefOilDecalRamp.png"; public static string texChefOiledDebuffIcon = "RoR2/DLC2/Chef/texChefOiledDebuffIcon.png"; public static string texChefOilFrozenDecal = "RoR2/DLC2/Chef/texChefOilFrozenDecal.png"; public static string texChefOilSpillAchievementIcon = "RoR2/DLC2/Chef/texChefOilSpillAchievementIcon.png"; public static string texChefYesChefBoostedFireRamp = "RoR2/DLC2/Chef/texChefYesChefBoostedFireRamp.png"; public static string texChefUtilityImpactFoodGreen = "RoR2/DLC2/Chef/texChefUtilityImpactFoodGreen.png"; public static string texChefUtilityImpactFoodRed = "RoR2/DLC2/Chef/texChefUtilityImpactFoodRed.png"; public static string texChefAchievementIcon = "RoR2/DLC2/Chef/texChefAchievementIcon.png"; public static string texChefBodyIcon = "RoR2/DLC2/Chef/texChefBodyIcon.png"; public static string texChefCrosshair = "RoR2/DLC2/Chef/texChefCrosshair.png"; public static string texChefCrosshairFlare = "RoR2/DLC2/Chef/texChefCrosshairFlare.png"; public static string texChefCrosshairStock = "RoR2/DLC2/Chef/texChefCrosshairStock.png"; public static string texChefSkillIcon = "RoR2/DLC2/Chef/texChefSkillIcon.png"; public static string texChildDiffuse = "RoR2/DLC2/Child/texChildDiffuse.png"; public static string texChildFlowMask = "RoR2/DLC2/Child/texChildFlowMask.png"; public static string texChildNormal = "RoR2/DLC2/Child/texChildNormal.png"; public static string texChildPrimaryStarCloud = "RoR2/DLC2/Child/texChildPrimaryStarCloud.png"; public static string texChildSecondaryStarDust = "RoR2/DLC2/Child/texChildSecondaryStarDust.png"; public static string texChildIcon = "RoR2/DLC2/Child/texChildIcon.png"; public static string texFalseSonClothDiffuse = "RoR2/DLC2/FalseSon/texFalseSonClothDiffuse.tga"; public static string texFalseSonClothNormal = "RoR2/DLC2/FalseSon/texFalseSonClothNormal.png"; public static string texFalseSonDiffuse = "RoR2/DLC2/FalseSon/texFalseSonDiffuse.tga"; public static string texFalseSonEmissive = "RoR2/DLC2/FalseSon/texFalseSonEmissive.bmp"; public static string texFalseSonFlow = "RoR2/DLC2/FalseSon/texFalseSonFlow.png"; public static string texFalseSonFresnel = "RoR2/DLC2/FalseSon/texFalseSonFresnel.bmp"; public static string texFalseSonNormal = "RoR2/DLC2/FalseSon/texFalseSonNormal.png"; public static string texBuffLunarRuinIcon = "RoR2/DLC2/FalseSon/texBuffLunarRuinIcon.png"; public static string texFalseSonLunarStakeAchievementIcon = "RoR2/DLC2/FalseSon/texFalseSonLunarStakeAchievementIcon.png"; public static string texEnergizedCoreBuffIcon = "RoR2/DLC2/FalseSon/texEnergizedCoreBuffIcon.png"; public static string texFalseSonMeridiansWillAchievementIcon = "RoR2/DLC2/FalseSon/texFalseSonMeridiansWillAchievementIcon.png"; public static string texFalseSonAltClothDiffuse = "RoR2/DLC2/FalseSon/texFalseSonAltClothDiffuse.tga"; public static string texFalseSonAltClothFlow = "RoR2/DLC2/FalseSon/texFalseSonAltClothFlow.bmp"; public static string texFalseSonAltDiffuse = "RoR2/DLC2/FalseSon/texFalseSonAltDiffuse.png"; public static string texFalseSonAltEmmisive = "RoR2/DLC2/FalseSon/texFalseSonAltEmmisive.bmp"; public static string texFalseSonAltFlow = "RoR2/DLC2/FalseSon/texFalseSonAltFlow.bmp"; public static string texFalseSonAltFresnel = "RoR2/DLC2/FalseSon/texFalseSonAltFresnel.bmp"; public static string texFalseSonAltNormal = "RoR2/DLC2/FalseSon/texFalseSonAltNormal.png"; public static string texFalseSonAchievementIcon = "RoR2/DLC2/FalseSon/texFalseSonAchievementIcon.png"; public static string texFalseSonBodyIcon = "RoR2/DLC2/FalseSon/texFalseSonBodyIcon.png"; public static string texFalseSonSkillIcons = "RoR2/DLC2/FalseSon/texFalseSonSkillIcons.png"; public static string texFalseSonSkillIconsTemp = "RoR2/DLC2/FalseSon/texFalseSonSkillIconsTemp.png"; public static string texCursorFalseSon = "RoR2/DLC2/FalseSon/texCursorFalseSon.png"; public static string texCursorFalseSon2 = "RoR2/DLC2/FalseSon/texCursorFalseSon2.png"; public static string texLunarGazeFireLaser1 = "RoR2/DLC2/FalseSonBoss/texLunarGazeFireLaser1.png"; public static string texPrimeDevastatorTetherMask1 = "RoR2/DLC2/FalseSonBoss/texPrimeDevastatorTetherMask1.png"; public static string texPrimeDevastatorTetherMask2 = "RoR2/DLC2/FalseSonBoss/texPrimeDevastatorTetherMask2.png"; public static string texLunarGazePlusChargeEffect1 = "RoR2/DLC2/FalseSonBoss/texLunarGazePlusChargeEffect1.png"; public static string texLunarGazePlusChargeEffect2 = "RoR2/DLC2/FalseSonBoss/texLunarGazePlusChargeEffect2.png"; public static string texLunarGazePlusFireEffect2 = "RoR2/DLC2/FalseSonBoss/texLunarGazePlusFireEffect2.png"; public static string texLunarGazePlusFireLaser1 = "RoR2/DLC2/FalseSonBoss/texLunarGazePlusFireLaser1.png"; public static string texLunarGazePlusFireLaser2 = "RoR2/DLC2/FalseSonBoss/texLunarGazePlusFireLaser2.png"; public static string texLunarGazePlusFireLaser3 = "RoR2/DLC2/FalseSonBoss/texLunarGazePlusFireLaser3.png"; public static string texLunarGazePlusFireLaser4 = "RoR2/DLC2/FalseSonBoss/texLunarGazePlusFireLaser4.png"; public static string texLunarGazePlusFireLaser6 = "RoR2/DLC2/FalseSonBoss/texLunarGazePlusFireLaser6.png"; public static string texLunarGazePlusFireLaser7 = "RoR2/DLC2/FalseSonBoss/texLunarGazePlusFireLaser7.png"; public static string texFalseSonFissurePillarGhost1 = "RoR2/DLC2/FalseSonBoss/texFalseSonFissurePillarGhost1.png"; public static string texFalseSonFissurePillarGhost2 = "RoR2/DLC2/FalseSonBoss/texFalseSonFissurePillarGhost2.png"; public static string texFalseSonFissurePillarGhost3 = "RoR2/DLC2/FalseSonBoss/texFalseSonFissurePillarGhost3.png"; public static string texFalseSonFissurePillarGhost4 = "RoR2/DLC2/FalseSonBoss/texFalseSonFissurePillarGhost4.png"; public static string texFissureSlamSwingEffect1 = "RoR2/DLC2/FalseSonBoss/texFissureSlamSwingEffect1.png"; public static string texFSBLunarSpikeDiffuse = "RoR2/DLC2/FalseSonBoss/texFSBLunarSpikeDiffuse.png"; public static string texFSBLunarSpikeRamp = "RoR2/DLC2/FalseSonBoss/texFSBLunarSpikeRamp.png"; public static string texFSBLunarSpikeRampGrey = "RoR2/DLC2/FalseSonBoss/texFSBLunarSpikeRampGrey.png"; public static string texLunarRainSummonVFX1 = "RoR2/DLC2/FalseSonBoss/texLunarRainSummonVFX1.png"; public static string texLunarRainSummonVFX2 = "RoR2/DLC2/FalseSonBoss/texLunarRainSummonVFX2.png"; public static string texTaintedOffering1 = "RoR2/DLC2/FalseSonBoss/texTaintedOffering1.png"; public static string texFalseSonBossBodyIcon = "RoR2/DLC2/FalseSonBoss/texFalseSonBossBodyIcon.png"; public static string texHalcyoniteDiffuse = "RoR2/DLC2/Halcyonite/texHalcyoniteDiffuse.tga"; public static string texHalcyoniteFlow = "RoR2/DLC2/Halcyonite/texHalcyoniteFlow.png"; public static string texHalcyoniteFresnel = "RoR2/DLC2/Halcyonite/texHalcyoniteFresnel.png"; public static string texHalcyoniteNormal = "RoR2/DLC2/Halcyonite/texHalcyoniteNormal.png"; public static string texHaIcyoniteIdleGlow1 = "RoR2/DLC2/Halcyonite/texHaIcyoniteIdleGlow1.png"; public static string texHalcyoniteBodyIcon = "RoR2/DLC2/Halcyonite/texHalcyoniteBodyIcon.png"; public static string texRampScorchling = "RoR2/DLC2/Scorchling/texRampScorchling.png"; public static string texRampScorchlingBreachPile = "RoR2/DLC2/Scorchling/texRampScorchlingBreachPile.png"; public static string texScorchlingBreachDecal = "RoR2/DLC2/Scorchling/texScorchlingBreachDecal.png"; public static string texScorchlingBreachPileFlow = "RoR2/DLC2/Scorchling/texScorchlingBreachPileFlow.png"; public static string texScorchlingFlow = "RoR2/DLC2/Scorchling/texScorchlingFlow.png"; public static string texScorchlingLavaDiffuse = "RoR2/DLC2/Scorchling/texScorchlingLavaDiffuse.tga"; public static string texLavaCrack = "RoR2/DLC2/Scorchling/texLavaCrack.png"; public static string texScorchlingIcon = "RoR2/DLC2/Scorchling/texScorchlingIcon.png"; public static string texSeekerAltClothDiffuse = "RoR2/DLC2/Seeker/texSeekerAltClothDiffuse.tga"; public static string texSeekerAltClothFlow = "RoR2/DLC2/Seeker/texSeekerAltClothFlow.png"; public static string texSeekerAltDiffuse = "RoR2/DLC2/Seeker/texSeekerAltDiffuse.tga"; public static string texSeekerAltFlow = "RoR2/DLC2/Seeker/texSeekerAltFlow.png"; public static string texSeekerAltFresnel = "RoR2/DLC2/Seeker/texSeekerAltFresnel.png"; public static string texSeekerAltNormal = "RoR2/DLC2/Seeker/texSeekerAltNormal.png"; public static string texSeekerDiffuse = "RoR2/DLC2/Seeker/texSeekerDiffuse.tga"; public static string texSeekerFlow = "RoR2/DLC2/Seeker/texSeekerFlow.bmp"; public static string texSeekerFresnel = "RoR2/DLC2/Seeker/texSeekerFresnel.png"; public static string texSeekerLotusMask = "RoR2/DLC2/Seeker/texSeekerLotusMask.png"; public static string texSeekerLotusMask2 = "RoR2/DLC2/Seeker/texSeekerLotusMask2.png"; public static string texSeekerLotusMask3 = "RoR2/DLC2/Seeker/texSeekerLotusMask3.png"; public static string texSeekerLotusRamp = "RoR2/DLC2/Seeker/texSeekerLotusRamp.png"; public static string texSeekerNormal = "RoR2/DLC2/Seeker/texSeekerNormal.png"; public static string texChakraBuff = "RoR2/DLC2/Seeker/ChakraBuff/texChakraBuff.tif"; public static string texSeekerAirPunchRamp = "RoR2/DLC2/Seeker/texSeekerAirPunchRamp.png"; public static string texSeekerLotusPetal01 = "RoR2/DLC2/Seeker/texSeekerLotusPetal01.png"; public static string texSeekerLotusPetal02 = "RoR2/DLC2/Seeker/texSeekerLotusPetal02.png"; public static string texSeekerPrimaryTrail = "RoR2/DLC2/Seeker/texSeekerPrimaryTrail.png"; public static string texRevitalizeBuff = "RoR2/DLC2/Seeker/RevitalizeBuff/texRevitalizeBuff.tif"; public static string texSeekerPalmBlastAchievementIcon = "RoR2/DLC2/Seeker/texSeekerPalmBlastAchievementIcon.png"; public static string texSeekerReprieveAchievementIcon = "RoR2/DLC2/Seeker/texSeekerReprieveAchievementIcon.png"; public static string texSeekerBodyIcon = "RoR2/DLC2/Seeker/texSeekerBodyIcon.png"; public static string texSeekerSkillIcon = "RoR2/DLC2/Seeker/texSeekerSkillIcon.png"; public static string texMeditationInputCircle = "RoR2/DLC2/Seeker/texMeditationInputCircle.png"; public static string texMeditationInputCircleCenter = "RoR2/DLC2/Seeker/texMeditationInputCircleCenter.png"; public static string texMeditationInputTimer = "RoR2/DLC2/Seeker/texMeditationInputTimer.png"; public static string texMeditationInputTimerFrame = "RoR2/DLC2/Seeker/texMeditationInputTimerFrame.png"; public static string texMeditationInputTimerSprite = "RoR2/DLC2/Seeker/texMeditationInputTimerSprite.png"; public static string texPetalGlow = "RoR2/DLC2/Seeker/texPetalGlow.png"; public static string texSeekerCursor = "RoR2/DLC2/Seeker/texSeekerCursor.png"; public static string texSeekerTrackingIndicator = "RoR2/DLC2/Seeker/texSeekerTrackingIndicator.png"; public static string textInputIconMeditationArrow = "RoR2/DLC2/Seeker/textInputIconMeditationArrow.png"; public static string textPedalFillPartialSeeker = "RoR2/DLC2/Seeker/textPedalFillPartialSeeker.png"; public static string textPedalFillSeeker = "RoR2/DLC2/Seeker/textPedalFillSeeker.png"; public static string textPedalOutlinePartialSeeker = "RoR2/DLC2/Seeker/textPedalOutlinePartialSeeker.png"; public static string textPedalOutlineSeeker = "RoR2/DLC2/Seeker/textPedalOutlineSeeker.png"; public static string texRampBeamLightning35 = "RoR2/DLC2/Common/texRampBeamLightning.png"; public static string texRampLightning18 = "RoR2/DLC2/Common/texRampLightning.png"; public static string texRampSeeker01 = "RoR2/DLC2/Common/texRampSeeker01.png"; public static string texRampSeeker02 = "RoR2/DLC2/Common/texRampSeeker02.png"; public static string texRampTritone3Reverse = "RoR2/DLC2/Common/texRampTritone3Reverse.png"; public static string texRampVerticalSmoothFalloff = "RoR2/DLC2/Common/texRampVerticalSmoothFalloff.png"; public static string texFlash01 = "RoR2/DLC2/Common/texFlash01.png"; public static string texAffixAurelioniteIcon = "RoR2/DLC2/Elites/EliteAurelionite/texAffixAurelioniteIcon.png"; public static string texBuffAffixAureleonite = "RoR2/DLC2/Elites/EliteAurelionite/texBuffAffixAureleonite.png"; public static string texBuffAurelioniteBlessingIcon = "RoR2/DLC2/Elites/EliteAurelionite/texBuffAurelioniteBlessingIcon.png"; public static string texBuffEliteAurelioniteIcon = "RoR2/DLC2/Elites/EliteAurelionite/texBuffEliteAurelioniteIcon.png"; public static string texGildedPillar = "RoR2/DLC2/Elites/EliteAurelionite/texGildedPillar.png"; public static string texGildedPillarDiffuse = "RoR2/DLC2/Elites/EliteAurelionite/texGildedPillarDiffuse.tga"; public static string texGildedPillarEmissive = "RoR2/DLC2/Elites/EliteAurelionite/texGildedPillarEmissive.tga"; public static string texAffixBeadIcon = "RoR2/DLC2/Elites/EliteBead/texAffixBeadIcon.png"; public static string texBuffAffixBead = "RoR2/DLC2/Elites/EliteBead/texBuffAffixBead.png"; public static string texBuffEliteBeadCorruptionIcon = "RoR2/DLC2/Elites/EliteBead/texBuffEliteBeadCorruptionIcon.png"; public static string texBuffEliteBeadIcon = "RoR2/DLC2/Elites/EliteBead/texBuffEliteBeadIcon.png"; public static string texEliteBeadArmorBuff = "RoR2/DLC2/Elites/EliteBead/texEliteBeadArmorBuff.png"; public static string texSeedOfLifeDiffuse = "RoR2/DLC2/HealAndRevive/texSeedOfLifeDiffuse.png"; public static string texSeedOfLifeEmissive = "RoR2/DLC2/HealAndRevive/texSeedOfLifeEmissive.png"; public static string texSeedOfLifeMask = "RoR2/DLC2/HealAndRevive/texSeedOfLifeMask.png"; public static string texSeedOfLifeNormal = "RoR2/DLC2/HealAndRevive/texSeedOfLifeNormal.png"; public static string texSproutOfLifeLeafDiffuse = "RoR2/DLC2/HealAndRevive/texSproutOfLifeLeafDiffuse.png"; public static string texSproutOfLifeLeafEmissive = "RoR2/DLC2/HealAndRevive/texSproutOfLifeLeafEmissive.png"; public static string texSproutOfLifeLeafMask = "RoR2/DLC2/HealAndRevive/texSproutOfLifeLeafMask.png"; public static string texSproutOfLifeLeafNormal = "RoR2/DLC2/HealAndRevive/texSproutOfLifeLeafNormal.png"; public static string texSproutOfLifeStemDiffuse = "RoR2/DLC2/HealAndRevive/texSproutOfLifeStemDiffuse.png"; public static string texSproutOfLifeStemMask = "RoR2/DLC2/HealAndRevive/texSproutOfLifeStemMask.png"; public static string texBuffHealAndReviveRegenBuffIcon = "RoR2/DLC2/HealAndRevive/texBuffHealAndReviveRegenBuffIcon.png"; public static string texSeedOfLifeAchievementIcon = "RoR2/DLC2/HealAndRevive/texSeedOfLifeAchievementIcon.png"; public static string texSeedOfLifeConsumedIcon = "RoR2/DLC2/HealAndRevive/texSeedOfLifeConsumedIcon.png"; public static string texSeedOfLifeIcon = "RoR2/DLC2/HealAndRevive/texSeedOfLifeIcon.png"; public static string texSproutOfLifeBurst1 = "RoR2/DLC2/HealAndRevive/texSproutOfLifeBurst1.png"; public static string texSproutOfLifeBurst2 = "RoR2/DLC2/HealAndRevive/texSproutOfLifeBurst2.png"; public static string texSproutOfLifeBurst3 = "RoR2/DLC2/HealAndRevive/texSproutOfLifeBurst3.png"; public static string texSproutOfLifeBurst4 = "RoR2/DLC2/HealAndRevive/texSproutOfLifeBurst4.png"; public static string texSproutOfLifeBurst5 = "RoR2/DLC2/HealAndRevive/texSproutOfLifeBurst5.png"; public static string texWokCookingVFX1 = "RoR2/DLC2/texWokCookingVFX1.png"; public static string texAurelioniteGeodeDiffuse = "RoR2/DLC2/texAurelioniteGeodeDiffuse.tga"; public static string texAurelioniteGeodeEmissive = "RoR2/DLC2/texAurelioniteGeodeEmissive.png"; public static string texAurelioniteGeodeMask = "RoR2/DLC2/texAurelioniteGeodeMask.png"; public static string texAurelioniteGeodeNormal = "RoR2/DLC2/texAurelioniteGeodeNormal.png"; public static string texAFUIChunkIcon = "RoR2/DLC2/texAFUIChunkIcon.png"; public static string texAFUIMainBG = "RoR2/DLC2/texAFUIMainBG.png"; public static string texAFUIMask = "RoR2/DLC2/texAFUIMask.png"; public static string texAFUIRay = "RoR2/DLC2/texAFUIRay.png"; public static string texAurelioniteFragmentDiffuse = "RoR2/DLC2/texAurelioniteFragmentDiffuse.png"; public static string texAurelioniteFragmentMask = "RoR2/DLC2/texAurelioniteFragmentMask.png"; public static string texAurelioniteFragmentNormal = "RoR2/DLC2/texAurelioniteFragmentNormal.png"; public static string texHalcyoniteShrineCrystalFlow = "RoR2/DLC2/texHalcyoniteShrineCrystalFlow.png"; public static string texHalcyoniteShrineDiffuse = "RoR2/DLC2/texHalcyoniteShrineDiffuse.png"; public static string texHalcyoniteShrineFlow = "RoR2/DLC2/texHalcyoniteShrineFlow.png"; public static string texHalcyoniteShrineFresnel = "RoR2/DLC2/texHalcyoniteShrineFresnel.png"; public static string texHalcyoniteShrineNormal = "RoR2/DLC2/texHalcyoniteShrineNormal.png"; public static string texHalcyoniteShrineBolt = "RoR2/DLC2/texHalcyoniteShrineBolt.png"; public static string texRampTritoneHShrine = "RoR2/DLC2/texRampTritoneHShrine.png"; public static string texShrineColossusAccessDiffuse = "RoR2/DLC2/texShrineColossusAccessDiffuse.png"; public static string texShrineColossusAccessEmissive = "RoR2/DLC2/texShrineColossusAccessEmissive.png"; public static string texShrineColossusAccessFresnel = "RoR2/DLC2/texShrineColossusAccessFresnel.png"; public static string texShrineColossusAccessNormal = "RoR2/DLC2/texShrineColossusAccessNormal.png"; public static string texShrineColossusAccessSymbol = "RoR2/DLC2/texShrineColossusAccessSymbol.jpg"; public static string texBuffExtraLifeBuffIcon = "RoR2/DLC2/texBuffExtraLifeBuffIcon.png"; public static string texBuffSoulCostIcon = "RoR2/DLC2/texBuffSoulCostIcon.png"; public static string texRebirthIdleVFX1 = "RoR2/DLC2/texRebirthIdleVFX1.png"; public static string texRebirthIdleVFX2 = "RoR2/DLC2/texRebirthIdleVFX2.png"; public static string texRebirthUIBG = "RoR2/DLC2/texRebirthUIBG.png"; public static string texRebirthUIFrame = "RoR2/DLC2/texRebirthUIFrame.png"; public static string texRebirthUISymbol = "RoR2/DLC2/texRebirthUISymbol.png"; public static string texShrineofRebirthDiffuse = "RoR2/DLC2/texShrineofRebirthDiffuse.tga"; public static string texShrineofRebirthEmissive = "RoR2/DLC2/texShrineofRebirthEmissive.png"; public static string texShrineofRebirthNormal = "RoR2/DLC2/texShrineofRebirthNormal.png"; public static string texBuffAttackSpeedPerNearbyAllyOrEnemyIcon = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/texBuffAttackSpeedPerNearbyAllyOrEnemyIcon.png"; public static string texRageCrystalDiffuse = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/texRageCrystalDiffuse.tga"; public static string texRageCrystalIcon = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/texRageCrystalIcon.png"; public static string texRageCrystalNormal = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/texRageCrystalNormal.png"; public static string texWarbondMissileDiffuse = "RoR2/DLC2/Items/BarrageOnBoss/texWarbondMissileDiffuse.tga"; public static string texWarBondsBuff = "RoR2/DLC2/Items/BarrageOnBoss/texWarBondsBuff.png"; public static string texWarbondsMissileEmissive = "RoR2/DLC2/Items/BarrageOnBoss/texWarbondsMissileEmissive.png"; public static string texWarbondsMissileNormal = "RoR2/DLC2/Items/BarrageOnBoss/texWarbondsMissileNormal.png"; public static string texBarrageOnBossDiffuse = "RoR2/DLC2/Items/BarrageOnBoss/texBarrageOnBossDiffuse.png"; public static string texBarrageOnBossNormal = "RoR2/DLC2/Items/BarrageOnBoss/texBarrageOnBossNormal.png"; public static string texBarrageOnBossScreenDiffuse = "RoR2/DLC2/Items/BarrageOnBoss/texBarrageOnBossScreenDiffuse.png"; public static string texTreasuryDividendsIcon = "RoR2/DLC2/Items/BarrageOnBoss/texTreasuryDividendsIcon.png"; public static string texGrowthNectarBaseColor = "RoR2/DLC2/Items/BoostAllStats/texGrowthNectar_BaseColor.png"; public static string texGrowthNectarFresnelMap = "RoR2/DLC2/Items/BoostAllStats/texGrowthNectar_FresnelMap.png"; public static string texGrowthNectarNormal = "RoR2/DLC2/Items/BoostAllStats/texGrowthNectar_Normal.png"; public static string texGrowthNectarWreathDiffuse = "RoR2/DLC2/Items/BoostAllStats/texGrowthNectarWreathDiffuse.png"; public static string texBuffBoostAllStats = "RoR2/DLC2/Items/BoostAllStats/texBuffBoostAllStats.png"; public static string texGrowthNectarIcon = "RoR2/DLC2/Items/BoostAllStats/texGrowthNectarIcon.png"; public static string texBuffDelayedDamageOnIcon = "RoR2/DLC2/Items/DelayedDamage/texBuffDelayedDamageOnIcon.png"; public static string texBuffDelayedDamageRedIcon = "RoR2/DLC2/Items/DelayedDamage/texBuffDelayedDamageRedIcon.png"; public static string texDelayDamageIcon = "RoR2/DLC2/Items/DelayedDamage/texDelayDamageIcon.png"; public static string texDelayedDamageIndicator1 = "RoR2/DLC2/Items/DelayedDamage/texDelayedDamageIndicator1.png"; public static string texDelayedDamageIndicator2 = "RoR2/DLC2/Items/DelayedDamage/texDelayedDamageIndicator2.png"; public static string texDelayedDamageIndicator3 = "RoR2/DLC2/Items/DelayedDamage/texDelayedDamageIndicator3.png"; public static string texRampWarpedEcho = "RoR2/DLC2/Items/DelayedDamage/texRampWarpedEcho.png"; public static string texWarpedEchoDiffuse = "RoR2/DLC2/Items/DelayedDamage/texWarpedEchoDiffuse.png"; public static string texWarpedEchoEmissive = "RoR2/DLC2/Items/DelayedDamage/texWarpedEchoEmissive.png"; public static string texWarpedEchoFersnelMask = "RoR2/DLC2/Items/DelayedDamage/texWarpedEchoFersnelMask.png"; public static string texWarpedEchoNormal = "RoR2/DLC2/Items/DelayedDamage/texWarpedEchoNormal.png"; public static string texWarpedEchoOverheadShield = "RoR2/DLC2/Items/DelayedDamage/texWarpedEchoOverheadShield.png"; public static string texChanceDollBaseColor = "RoR2/DLC2/Items/ExtraShrineItem/texChanceDoll_BaseColor.png"; public static string texChanceDollFresnelMask = "RoR2/DLC2/Items/ExtraShrineItem/texChanceDoll_FresnelMask.png"; public static string texChanceDollNormal = "RoR2/DLC2/Items/ExtraShrineItem/texChanceDoll_Normal.png"; public static string texChanceDollIcon = "RoR2/DLC2/Items/ExtraShrineItem/texChanceDollIcon.png"; public static string mdlExtraStatsOnLevelUpDefaultMaterialNormal = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/mdlExtraStatsOnLevelUp_DefaultMaterial_Normal.png"; public static string texBuffExtraStatsOnLevelUpBuffIcon = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/texBuffExtraStatsOnLevelUpBuffIcon.png"; public static string texExtraStatsOnLevelUpColor = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/texExtraStatsOnLevelUpColor.tga"; public static string texExtraStatsOnLevelUpEmissive = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/texExtraStatsOnLevelUpEmissive.png"; public static string texExtraStatsOnLevelUpIcon = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/texExtraStatsOnLevelUpIcon.png"; public static string texBuffIncreaseDamageBuffIcon = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texBuffIncreaseDamageBuffIcon.png"; public static string texIncreaseDamageOnMultiKill1 = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texIncreaseDamageOnMultiKill1.png"; public static string texIncreaseDamageOnMultiKill2 = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texIncreaseDamageOnMultiKill2.png"; public static string texIncreaseDamageOnMultiKill3 = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texIncreaseDamageOnMultiKill3.png"; public static string texIncreaseDamageOnMultiKill4 = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texIncreaseDamageOnMultiKill4.png"; public static string texIncreaseDamageOnMultiKill5 = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texIncreaseDamageOnMultiKill5.png"; public static string texIncreaseDamageOnMultiKillColor = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texIncreaseDamageOnMultiKillColor.tga"; public static string texIncreaseDamageOnMultiKillEmissive = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texIncreaseDamageOnMultiKillEmissive.png"; public static string texIncreaseDamageOnMultiKillIcon = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texIncreaseDamageOnMultiKillIcon.png"; public static string texIncreaseDamageOnMultiKillNormal = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/texIncreaseDamageOnMultiKillNormal.png"; public static string texLuminousShotBaseColor = "RoR2/DLC2/Items/IncreasePrimaryDamage/texLuminousShot_BaseColor.png"; public static string texLuminousShotNormal = "RoR2/DLC2/Items/IncreasePrimaryDamage/texLuminousShot_Normal.png"; public static string texBuffIncreasePrimaryDamageIcon = "RoR2/DLC2/Items/IncreasePrimaryDamage/texBuffIncreasePrimaryDamageIcon.png"; public static string texBuffIncreasePrimaryDamageIcon0 = "RoR2/DLC2/Items/IncreasePrimaryDamage/texBuffIncreasePrimaryDamageIcon_0.png"; public static string texIncreasePrimaryDamageIcon = "RoR2/DLC2/Items/IncreasePrimaryDamage/texIncreasePrimaryDamageIcon.png"; public static string texIncreasePrimaryDamageImpact = "RoR2/DLC2/Items/IncreasePrimaryDamage/texIncreasePrimaryDamageImpact.png"; public static string texSonorousEchoDiffuse = "RoR2/DLC2/Items/ItemDropChanceOnKill/texSonorousEchoDiffuse.tga"; public static string texSonorousEchoFresnelMask = "RoR2/DLC2/Items/ItemDropChanceOnKill/texSonorousEchoFresnelMask.png"; public static string texSonorousEchoNormal = "RoR2/DLC2/Items/ItemDropChanceOnKill/texSonorousEchoNormal.png"; public static string texSonorousEchoIcon = "RoR2/DLC2/Items/ItemDropChanceOnKill/texSonorousEchoIcon.png"; public static string texKnockbackFinDebuffTargetBGBar = "RoR2/DLC2/Items/KnockBackHitEnemies/texKnockbackFinDebuffTargetBGBar.png"; public static string texKnockbackFinDiffuse = "RoR2/DLC2/Items/KnockBackHitEnemies/texKnockbackFinDiffuse.png"; public static string texKnockbackFinGuaranteedCritDebuff = "RoR2/DLC2/Items/KnockBackHitEnemies/texKnockbackFinGuaranteedCritDebuff.png"; public static string texKnockbackFinIcon = "RoR2/DLC2/Items/KnockBackHitEnemies/texKnockbackFinIcon.png"; public static string texKnockbackFinKnockupBuff = "RoR2/DLC2/Items/KnockBackHitEnemies/texKnockbackFinKnockupBuff.png"; public static string texKnockbackFinKnockupBuffCooldown = "RoR2/DLC2/Items/KnockBackHitEnemies/texKnockbackFinKnockupBuffCooldown.png"; public static string texKnockbackFinNormal = "RoR2/DLC2/Items/KnockBackHitEnemies/texKnockbackFinNormal.png"; public static string texRampKnockbackFinOverlay = "RoR2/DLC2/Items/KnockBackHitEnemies/texRampKnockbackFinOverlay.png"; public static string texLowerPricedChestsIconConsumed = "RoR2/DLC2/Items/LowerPricedChests/texLowerPricedChestsIconConsumed.png"; public static string texSaleStarDiffuse = "RoR2/DLC2/Items/LowerPricedChests/texSaleStarDiffuse.tga"; public static string texSaleStarIcon = "RoR2/DLC2/Items/LowerPricedChests/texSaleStarIcon.png"; public static string texSaleStarNormal = "RoR2/DLC2/Items/LowerPricedChests/texSaleStarNormal.png"; public static string texRunicLensDiffuse = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/texRunicLensDiffuse.png"; public static string texRunicLensEmissive = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/texRunicLensEmissive.png"; public static string texRunicLensFresnelMask = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/texRunicLensFresnelMask.png"; public static string texRunicLensMeteorDiffuse = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/texRunicLensMeteorDiffuse.png"; public static string texRunicLensNormal = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/texRunicLensNormal.png"; public static string texRunicLensIcon = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/texRunicLensIcon.png"; public static string texBuffFreeUnlocksIcon = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/texBuffFreeUnlocksIcon.png"; public static string texLongstandingSolitudeColor = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/texLongstandingSolitudeColor.tga"; public static string texLongstandingSolitudeEmmisive = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/texLongstandingSolitudeEmmisive.png"; public static string texLongstandingSolitudeIcon = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/texLongstandingSolitudeIcon.png"; public static string texLongstandingSolitudeNormal = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/texLongstandingSolitudeNormal.png"; public static string texOnLevelUpFreeUnlockDroneFlash = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/texOnLevelUpFreeUnlockDroneFlash.png"; public static string texElusiveAntlersBuffPickFlameMask = "RoR2/DLC2/Items/SpeedBoostPickup/texElusiveAntlersBuffPickFlameMask.png"; public static string texElusiveAntlersDiffuse = "RoR2/DLC2/Items/SpeedBoostPickup/texElusiveAntlersDiffuse.png"; public static string texElusiveAntlersIcon = "RoR2/DLC2/Items/SpeedBoostPickup/texElusiveAntlersIcon.png"; public static string texElusiveAntlersMask = "RoR2/DLC2/Items/SpeedBoostPickup/texElusiveAntlersMask.png"; public static string texElusiveAntlersNormal = "RoR2/DLC2/Items/SpeedBoostPickup/texElusiveAntlersNormal.png"; public static string texElusiveAntlersRamp = "RoR2/DLC2/Items/SpeedBoostPickup/texElusiveAntlersRamp.png"; public static string texElusiveAntlersSpeedBuff = "RoR2/DLC2/Items/SpeedBoostPickup/texElusiveAntlersSpeedBuff.png"; public static string texElusiveAntlersSymbolMask = "RoR2/DLC2/Items/SpeedBoostPickup/texElusiveAntlersSymbolMask.png"; public static string texNegateAttackTrail = "RoR2/DLC2/Items/SpeedBoostPickup/texNegateAttackTrail.png"; public static string texSpeedBoostPickupThornRamp = "RoR2/DLC2/Items/SpeedBoostPickup/texSpeedBoostPickupThornRamp.png"; public static string texElectricBoomerangBasecolor = "RoR2/DLC2/Items/StunAndPierce/texElectricBoomerang_Basecolor.png"; public static string texElectricBoomerangElectricityBasecolor = "RoR2/DLC2/Items/StunAndPierce/texElectricBoomerang_Electricity_Basecolor.png"; public static string texElectricBoomerangElectricityEmissive = "RoR2/DLC2/Items/StunAndPierce/texElectricBoomerang_Electricity_Emissive.png"; public static string texElectricBoomerangMask = "RoR2/DLC2/Items/StunAndPierce/texElectricBoomerang_Mask.png"; public static string texElectricBoomerangNormal = "RoR2/DLC2/Items/StunAndPierce/texElectricBoomerang_Normal.png"; public static string texElectricBoomerangIcon = "RoR2/DLC2/Items/StunAndPierce/texElectricBoomerangIcon.png"; public static string texStunAndPierceBoomerangGhost1 = "RoR2/DLC2/Items/StunAndPierce/texStunAndPierceBoomerangGhost1.png"; public static string texStunAndPierceBoomerangGhost2 = "RoR2/DLC2/Items/StunAndPierce/texStunAndPierceBoomerangGhost2.png"; public static string texBuffTeleportOnLowHealthIcon = "RoR2/DLC2/Items/TeleportOnLowHealth/texBuffTeleportOnLowHealthIcon.png"; public static string texTeleportOnLowHealthIcon = "RoR2/DLC2/Items/TeleportOnLowHealth/texTeleportOnLowHealthIcon.png"; public static string texTeleportOnLowHealthIconConsumed = "RoR2/DLC2/Items/TeleportOnLowHealth/texTeleportOnLowHealthIconConsumed.png"; public static string texRampUnstableTransmitter = "RoR2/DLC2/Items/TeleportOnLowHealth/texRampUnstableTransmitter.png"; public static string texUnstableTransmitterDiffuse = "RoR2/DLC2/Items/TeleportOnLowHealth/texUnstableTransmitterDiffuse.png"; public static string texUnstableTransmitterEmissive = "RoR2/DLC2/Items/TeleportOnLowHealth/texUnstableTransmitterEmissive.png"; public static string texNoxiousThornDiffuse = "RoR2/DLC2/Items/TriggerEnemyDebuffs/texNoxiousThornDiffuse.png"; public static string texNoxiousThornNormal = "RoR2/DLC2/Items/TriggerEnemyDebuffs/texNoxiousThornNormal.png"; public static string texDQNoxiousThornExplosion1 = "RoR2/DLC2/Items/TriggerEnemyDebuffs/tex_DQ_NoxiousThornExplosion1.png"; public static string texDQNoxiousThornExplosion2 = "RoR2/DLC2/Items/TriggerEnemyDebuffs/tex_DQ_NoxiousThornExplosion2.png"; public static string texNoxiousThornIcon = "RoR2/DLC2/Items/TriggerEnemyDebuffs/texNoxiousThornIcon.png"; public static string texNoxiousThornVineRamp = "RoR2/DLC2/Items/TriggerEnemyDebuffs/texNoxiousThornVineRamp.png"; public static string texAW1Grass = "RoR2/DLC2/artifactworld01/Assets/texAW1Grass.tga"; public static string texAW1GrassYellow = "RoR2/DLC2/artifactworld01/Assets/texAW1GrassYellow.tga"; public static string texAW1GrungeBrown = "RoR2/DLC2/artifactworld01/Assets/texAW1GrungeBrown.tga"; public static string texAW1GrungeGrey = "RoR2/DLC2/artifactworld01/Assets/texAW1GrungeGrey.tga"; public static string texAW1PatternBase = "RoR2/DLC2/artifactworld01/Assets/texAW1PatternBase.tga"; public static string texAW1Trim = "RoR2/DLC2/artifactworld01/Assets/texAW1Trim.tga"; public static string texArtifactWorld01Preview = "RoR2/DLC2/artifactworld01/texArtifactWorld01Preview.png"; public static string texAW2SandDiffuse = "RoR2/DLC2/artifactworld02/Assets/texAW2SandDiffuse.tga"; public static string texTrimSheetArtifactDiffuse1 = "RoR2/DLC2/artifactworld02/Assets/texTrimSheetArtifactDiffuse 1.png"; public static string texArtifactWorld02Preview = "RoR2/DLC2/artifactworld02/texArtifactWorld02Preview.png"; public static string texArtifactWorld03Preview = "RoR2/DLC2/artifactworld03/texArtifactWorld03Preview.png"; public static string BHGrassAtlas = "RoR2/DLC2/habitat/Assets/BHGrass_Atlas.tga"; public static string BHGrassAtlasopt = "RoR2/DLC2/habitat/Assets/BHGrass_Atlas_opt.tga"; public static string BHDistantTreeAtlas = "RoR2/DLC2/habitat/Assets/BHDistantTree_Atlas.tga"; public static string BHDistantTreeAtlasBillboards = "RoR2/DLC2/habitat/Assets/BHDistantTree_Atlas_Billboards.tga"; public static string BHDistantTreeAtlasopt = "RoR2/DLC2/habitat/Assets/BHDistantTree_Atlas_opt.tga"; public static string BHDistantTreePAtlas = "RoR2/DLC2/habitat/Assets/BHDistantTreeP_Atlas.tga"; public static string BHDistantTreePAtlasBillboards = "RoR2/DLC2/habitat/Assets/BHDistantTreeP_Atlas_Billboards.tga"; public static string BHDistantTreePAtlasBillboardsNormal = "RoR2/DLC2/habitat/Assets/BHDistantTreeP_Atlas_Billboards_Normal.tga"; public static string HBShrubAtlas = "RoR2/DLC2/habitat/Assets/HBShrub_Atlas.tga"; public static string texHBShrubBDiffuse = "RoR2/DLC2/habitat/Assets/texHBShrubBDiffuse.tga"; public static string texHBShrubBDiffuseopt = "RoR2/DLC2/habitat/Assets/texHBShrubBDiffuse_opt.tga"; public static string texHBShrubBNormal = "RoR2/DLC2/habitat/Assets/texHBShrubBNormal.png"; public static string texBHFlowerDiffuse = "RoR2/DLC2/habitat/Assets/texBHFlowerDiffuse.tga"; public static string texBHFlowerNormal = "RoR2/DLC2/habitat/Assets/texBHFlowerNormal.png"; public static string texBHFruitDiffuse = "RoR2/DLC2/habitat/Assets/texBHFruitDiffuse.png"; public static string texBHFruitMask = "RoR2/DLC2/habitat/Assets/texBHFruitMask.png"; public static string texBHFruitNormal = "RoR2/DLC2/habitat/Assets/texBHFruitNormal.png"; public static string texBHLeafSingleDiffuse = "RoR2/DLC2/habitat/Assets/texBHLeafSingleDiffuse.png"; public static string texBHLeafSingleNormal = "RoR2/DLC2/habitat/Assets/texBHLeafSingleNormal.png"; public static string texBHLilyPadDiffuse = "RoR2/DLC2/habitat/Assets/texBHLilyPadDiffuse.tga"; public static string texBHLilyPadMask = "RoR2/DLC2/habitat/Assets/texBHLilyPadMask.png"; public static string texBHLilyPadNormal = "RoR2/DLC2/habitat/Assets/texBHLilyPadNormal.png"; public static string texBHMossDiffuse = "RoR2/DLC2/habitat/Assets/texBHMossDiffuse.tga"; public static string texBHMossSimpleDiffuse = "RoR2/DLC2/habitat/Assets/texBHMossSimpleDiffuse.png"; public static string texBHPlatformDarkDiffuse = "RoR2/DLC2/habitat/Assets/texBHPlatformDarkDiffuse.tga"; public static string texBHPlatformSimpleDiffuse = "RoR2/DLC2/habitat/Assets/texBHPlatformSimpleDiffuse.png"; public static string texBHPlatformSimpleNormal = "RoR2/DLC2/habitat/Assets/texBHPlatformSimpleNormal.tga"; public static string texBHVineBarkDiffuse = "RoR2/DLC2/habitat/Assets/texBHVineBarkDiffuse.tga"; public static string texBHWallNormal = "RoR2/DLC2/habitat/Assets/texBHWallNormal.png"; public static string texHiveBubblesBH = "RoR2/DLC2/habitat/Assets/texHiveBubbles_BH.png"; public static string texNestBH = "RoR2/DLC2/habitat/Assets/texNest_BH.png"; public static string texBHFruitBig = "RoR2/DLC2/habitat/Assets/texBHFruitBig.png"; public static string texBHFruitSmall = "RoR2/DLC2/habitat/Assets/texBHFruitSmall.png"; public static string texBHSeedPodDiffuse = "RoR2/DLC2/habitat/Assets/texBHSeedPodDiffuse.png"; public static string texBHSeedPodNormal = "RoR2/DLC2/habitat/Assets/texBHSeedPodNormal.png"; public static string texBHSeedPodVineDiffuse = "RoR2/DLC2/habitat/Assets/texBHSeedPodVineDiffuse.tga"; public static string texBHSeedPodVineNormal = "RoR2/DLC2/habitat/Assets/texBHSeedPodVineNormal.png"; public static string texHabitatPreview = "RoR2/DLC2/habitat/texHabitatPreview.png"; public static string texBHFallGrassDiffuse = "RoR2/DLC2/habitatfall/Assets/texBHFallGrassDiffuse.tga"; public static string texBHFallGrassDiffuseopt = "RoR2/DLC2/habitatfall/Assets/texBHFallGrassDiffuse_opt.tga"; public static string texBHFallGrassEmission = "RoR2/DLC2/habitatfall/Assets/texBHFallGrassEmission.tga"; public static string texBHFallGrassEmissionopt = "RoR2/DLC2/habitatfall/Assets/texBHFallGrassEmission_opt.tga"; public static string texBHDistantTreeWhiteAtlas = "RoR2/DLC2/habitatfall/Assets/texBHDistantTreeWhite_Atlas.tga"; public static string texBHDistantTreeWhiteAtlasopt = "RoR2/DLC2/habitatfall/Assets/texBHDistantTreeWhite_Atlas_opt.tga"; public static string texBHFallDistantTreeAtlasBillboards = "RoR2/DLC2/habitatfall/Assets/texBHFallDistantTree_Atlas_Billboards.tga"; public static string texBHFallShurb = "RoR2/DLC2/habitatfall/Assets/texBHFallShurb.tga"; public static string texBHFallShurbopt = "RoR2/DLC2/habitatfall/Assets/texBHFallShurb_opt.tga"; public static string texHBFallShrubBNormal = "RoR2/DLC2/habitatfall/Assets/texHBFallShrubBNormal.png"; public static string texBHFallFlowerDiffuse = "RoR2/DLC2/habitatfall/Assets/texBHFallFlowerDiffuse.tga"; public static string texBHFallHiveBubbles = "RoR2/DLC2/habitatfall/Assets/texBHFallHiveBubbles.png"; public static string texBHFallMossAlphaDiffuse = "RoR2/DLC2/habitatfall/Assets/texBHFallMossAlphaDiffuse.tga"; public static string texBHFallMossDiffuse = "RoR2/DLC2/habitatfall/Assets/texBHFallMossDiffuse.tga"; public static string texBHFallPlatformDarkDiffuse = "RoR2/DLC2/habitatfall/Assets/texBHFallPlatformDarkDiffuse.tga"; public static string texBHFallPlatformSimpleDiffuse = "RoR2/DLC2/habitatfall/Assets/texBHFallPlatformSimpleDiffuse.png"; public static string texBHFallShroomPathDiffuse = "RoR2/DLC2/habitatfall/Assets/texBHFallShroomPathDiffuse.png"; public static string texBHFallShroomPathNormal = "RoR2/DLC2/habitatfall/Assets/texBHFallShroomPathNormal.png"; public static string texBHFallShroomTunnelDiffuse = "RoR2/DLC2/habitatfall/Assets/texBHFallShroomTunnelDiffuse.png"; public static string texBHFallShroomTunnelNormal = "RoR2/DLC2/habitatfall/Assets/texBHFallShroomTunnelNormal.png"; public static string texBHFallVineBarkDiffuse = "RoR2/DLC2/habitatfall/Assets/texBHFallVineBarkDiffuse.tga"; public static string texBHFallMushroomDrips = "RoR2/DLC2/habitatfall/Assets/texBHFallMushroomDrips.png"; public static string texHabitatFallPreview = "RoR2/DLC2/habitatfall/texHabitatFallPreview.png"; public static string texHRBlossomMaskopt = "RoR2/DLC2/helminthroost/Assets/texHRBlossomMask_opt.png"; public static string texHRChimeDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRChimeDiffuse.tga"; public static string texHRCrystalDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRCrystalDiffuse.png"; public static string texHREggEmmisive = "RoR2/DLC2/helminthroost/Assets/texHREggEmmisive.png"; public static string texHREggEmmisiveopt = "RoR2/DLC2/helminthroost/Assets/texHREggEmmisive_opt.png"; public static string texHREggNormal = "RoR2/DLC2/helminthroost/Assets/texHREggNormal.png"; public static string texHREggNormalopt = "RoR2/DLC2/helminthroost/Assets/texHREggNormal_opt.png"; public static string texHRFireBlossomDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRFireBlossomDiffuse.tga"; public static string texHRFireBlossomEmmisive = "RoR2/DLC2/helminthroost/Assets/texHRFireBlossomEmmisive.png"; public static string texHRFireBlossomEmmisiveopt = "RoR2/DLC2/helminthroost/Assets/texHRFireBlossomEmmisive_opt.png"; public static string texHRFireBlossomNormal = "RoR2/DLC2/helminthroost/Assets/texHRFireBlossomNormal.png"; public static string texHRFireBlossomNormalopt = "RoR2/DLC2/helminthroost/Assets/texHRFireBlossomNormal_opt.png"; public static string texHRFireGrass = "RoR2/DLC2/helminthroost/Assets/texHRFireGrass.tga"; public static string texHRFireGrassopt = "RoR2/DLC2/helminthroost/Assets/texHRFireGrass_opt.tga"; public static string texHRFloorSplat = "RoR2/DLC2/helminthroost/Assets/texHRFloorSplat.png"; public static string texHRLavaDarkDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRLavaDarkDiffuse.tga"; public static string texHRLavaDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRLavaDiffuse.tga"; public static string texHRLavaDiffuseopt = "RoR2/DLC2/helminthroost/Assets/texHRLavaDiffuse_opt.tga"; public static string texHRLavaWeedDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRLavaWeedDiffuse.tga"; public static string texHRLeafDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRLeafDiffuse.tga"; public static string texHRLeafEmissive = "RoR2/DLC2/helminthroost/Assets/texHRLeafEmissive.png"; public static string texHRRockVerticalDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRRockVerticalDiffuse.tga"; public static string texHRRugDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRRugDiffuse.tga"; public static string texHRTable = "RoR2/DLC2/helminthroost/Assets/texHRTable.png"; public static string texHRTerrainAsh = "RoR2/DLC2/helminthroost/Assets/texHRTerrainAsh.tga"; public static string texHRTerrainHorizontalDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRTerrainHorizontalDiffuse.tga"; public static string texHRTerrainNormal = "RoR2/DLC2/helminthroost/Assets/texHRTerrainNormal.tga"; public static string texHRTerrainVerticaliDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRTerrainVerticaliDiffuse.tga"; public static string texHRTreeDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRTreeDiffuse.png"; public static string texHRWallBrickColor = "RoR2/DLC2/helminthroost/Assets/texHRWallBrickColor.png"; public static string texHRWallSplat = "RoR2/DLC2/helminthroost/Assets/texHRWallSplat.png"; public static string texHRWormBChannelDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRWormBChannelDiffuse.tga"; public static string texHRWormNormal = "RoR2/DLC2/helminthroost/Assets/texHRWormNormal.tga"; public static string texHRWormRChannelDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRWormRChannelDiffuse.tga"; public static string texHRLandingPadDiffuse = "RoR2/DLC2/helminthroost/Assets/texHRLandingPadDiffuse.png"; public static string texHRLandingPadMask = "RoR2/DLC2/helminthroost/Assets/texHRLandingPadMask.tga"; public static string texHRLandingPadNormal = "RoR2/DLC2/helminthroost/Assets/texHRLandingPadNormal.png"; public static string texHelminthRoostPreview = "RoR2/DLC2/helminthroost/texHelminthRoostPreview.png"; public static string texShrubDiffuse = "RoR2/DLC2/lakes/Assets/texShrubDiffuse.tga"; public static string texShrubNormal = "RoR2/DLC2/lakes/Assets/texShrubNormal.tga"; public static string texTLCatailsAtlas = "RoR2/DLC2/lakes/Assets/texTLCatails_Atlas.tga"; public static string texTLCottonAtlas = "RoR2/DLC2/lakes/Assets/texTLCotton_Atlas.tga"; public static string texTLGrassAtlas = "RoR2/DLC2/lakes/Assets/texTLGrass_Atlas.tga"; public static string texTLGrassAtlasopt = "RoR2/DLC2/lakes/Assets/texTLGrass_Atlas_opt.tga"; public static string texTLGrassSparce = "RoR2/DLC2/lakes/Assets/texTLGrassSparce.tga"; public static string texTLGrassSparceopt = "RoR2/DLC2/lakes/Assets/texTLGrassSparce_opt.tga"; public static string texTLVineHanging = "RoR2/DLC2/lakes/Assets/texTLVineHanging.tga"; public static string texTLVineHangingopt = "RoR2/DLC2/lakes/Assets/texTLVineHanging_opt.tga"; public static string TLCatailsAtlas = "RoR2/DLC2/lakes/Assets/TLCatails_Atlas.tga"; public static string TLCottonAtlas = "RoR2/DLC2/lakes/Assets/TLCotton_Atlas.tga"; public static string texTLCliffSide = "RoR2/DLC2/lakes/Assets/texTLCliffSide.png"; public static string texTLContDiffuse = "RoR2/DLC2/lakes/Assets/texTLContDiffuse.png"; public static string texTLContNormal = "RoR2/DLC2/lakes/Assets/texTLContNormal.png"; public static string texTLGFlowerBottomDiffuse = "RoR2/DLC2/lakes/Assets/texTLGFlowerBottomDiffuse.png"; public static string texTLGFlowerBottomMask = "RoR2/DLC2/lakes/Assets/texTLGFlowerBottomMask.tga"; public static string texTLGFlowerBottomNormal = "RoR2/DLC2/lakes/Assets/texTLGFlowerBottomNormal.tga"; public static string texTLGFlowerRamp = "RoR2/DLC2/lakes/Assets/texTLGFlowerRamp.tga"; public static string texTLGFlowerStemDiffuse = "RoR2/DLC2/lakes/Assets/texTLGFlowerStemDiffuse.tga"; public static string texTLGFlowerStemNormal = "RoR2/DLC2/lakes/Assets/texTLGFlowerStemNormal.tga"; public static string texTLGFlowerTopDiffuse = "RoR2/DLC2/lakes/Assets/texTLGFlowerTopDiffuse.tga"; public static string texTLGFlowerTopMask = "RoR2/DLC2/lakes/Assets/texTLGFlowerTopMask.tga"; public static string texTLGFlowerTopNormal = "RoR2/DLC2/lakes/Assets/texTLGFlowerTopNormal.tga"; public static string texTLGVineDiffuse = "RoR2/DLC2/lakes/Assets/texTLGVineDiffuse.tga"; public static string texTLGVineDiffuseopt = "RoR2/DLC2/lakes/Assets/texTLGVineDiffuse_opt.tga"; public static string texTLJumpRamp = "RoR2/DLC2/lakes/Assets/texTLJumpRamp.png"; public static string texTLPlantDiffuse = "RoR2/DLC2/lakes/Assets/texTLPlantDiffuse.tga"; public static string texTLPlantFresnelMask = "RoR2/DLC2/lakes/Assets/texTLPlantFresnelMask.png"; public static string texTLPlantLeafJumpDiffuse = "RoR2/DLC2/lakes/Assets/texTLPlantLeafJumpDiffuse.png"; public static string texTLPlantLeafJumpNormal = "RoR2/DLC2/lakes/Assets/texTLPlantLeafJumpNormal.png"; public static string texTLPlantNormal = "RoR2/DLC2/lakes/Assets/texTLPlantNormal.png"; public static string texTLPlantTopDiffuse = "RoR2/DLC2/lakes/Assets/texTLPlantTopDiffuse.tga"; public static string texTLShipRustBasecolor = "RoR2/DLC2/lakes/Assets/texTLShipRustBasecolor.tga"; public static string texTLShipRustNormal = "RoR2/DLC2/lakes/Assets/texTLShipRustNormal.tga"; public static string texTLTerrainCliff = "RoR2/DLC2/lakes/Assets/texTLTerrainCliff.tga"; public static string texTLTerrainCliffopt = "RoR2/DLC2/lakes/Assets/texTLTerrainCliff_opt.tga"; public static string texTLTerrainDirt = "RoR2/DLC2/lakes/Assets/texTLTerrainDirt.tga"; public static string texTLTerrainGrassBlue = "RoR2/DLC2/lakes/Assets/texTLTerrainGrassBlue.tga"; public static string texTLTerrainGrassGreen = "RoR2/DLC2/lakes/Assets/texTLTerrainGrassGreen.tga"; public static string texTLTerrainGrassGreenopt = "RoR2/DLC2/lakes/Assets/texTLTerrainGrassGreen_opt.tga"; public static string texTLTerrainGrassPink = "RoR2/DLC2/lakes/Assets/texTLTerrainGrassPink.tga"; public static string texTLTerrainGrassPinkopt = "RoR2/DLC2/lakes/Assets/texTLTerrainGrassPink_opt.tga"; public static string texTLTerrainSand = "RoR2/DLC2/lakes/Assets/texTLTerrainSand.tga"; public static string texTLTerrainSandopt = "RoR2/DLC2/lakes/Assets/texTLTerrainSand_opt.tga"; public static string texTLTerrainSandCliffopt = "RoR2/DLC2/lakes/Assets/texTLTerrainSandCliff_opt.tga"; public static string texTLTrimBasecolor = "RoR2/DLC2/lakes/Assets/texTLTrimBasecolor.tga"; public static string texTLTrimNormal = "RoR2/DLC2/lakes/Assets/texTLTrimNormal.tga"; public static string texTLWaterfallDiffuse = "RoR2/DLC2/lakes/Assets/texTLWaterfallDiffuse.tga"; public static string texLakesPreview = "RoR2/DLC2/lakes/texLakesPreview.png"; public static string cottoncopy = "RoR2/DLC2/lakesnight/Assets/cotton copy.tga"; public static string texTLCattailFlowerDiffuse = "RoR2/DLC2/lakesnight/Assets/texTLCattailFlowerDiffuse.tga"; public static string texTLCattailFlowerEmissive = "RoR2/DLC2/lakesnight/Assets/texTLCattailFlowerEmissive.png"; public static string ramp = "RoR2/DLC2/lakesnight/Assets/ramp.png"; public static string texNotUsedHereButAfraidToDelete = "RoR2/DLC2/lakesnight/Assets/texNotUsedHereButAfraidToDelete.png"; public static string texTLBugSprite = "RoR2/DLC2/lakesnight/Assets/texTLBugSprite.tga"; public static string texTLFirepitDiffuse = "RoR2/DLC2/lakesnight/Assets/texTLFirepitDiffuse.png"; public static string texTLFirepitEmissive = "RoR2/DLC2/lakesnight/Assets/texTLFirepitEmissive.png"; public static string texTLFirepitNormal = "RoR2/DLC2/lakesnight/Assets/texTLFirepitNormal.png"; public static string texTLNebula = "RoR2/DLC2/lakesnight/Assets/texTLNebula.tga"; public static string texTLNightTerrainGrassBlueopt = "RoR2/DLC2/lakesnight/Assets/texTLNightTerrainGrassBlue_opt.tga"; public static string texTLNightTerrainGrassGreenopt = "RoR2/DLC2/lakesnight/Assets/texTLNightTerrainGrassGreen_opt.tga"; public static string texTLNightVinePinkopt = "RoR2/DLC2/lakesnight/Assets/texTLNightVinePink_opt.tga"; public static string texTLShroomDiffuse = "RoR2/DLC2/lakesnight/Assets/texTLShroomDiffuse.png"; public static string texTLShroomNormal = "RoR2/DLC2/lakesnight/Assets/texTLShroomNormal.png"; public static string texTLStarNoise = "RoR2/DLC2/lakesnight/Assets/texTLStarNoise.tga"; public static string texTLNWaterfallDiffuse = "RoR2/DLC2/lakesnight/Assets/texTLNWaterfallDiffuse.tga"; public static string texLakesNightPreview = "RoR2/DLC2/lakesnight/texLakesNightPreview.png"; public static string LTFallenLeafAtlas = "RoR2/DLC2/lemuriantemple/Assets/LTFallenLeaf_Atlas.tga"; public static string spmLTGrassAtlas = "RoR2/DLC2/lemuriantemple/Assets/spmLTGrass_Atlas.tga"; public static string spmLTTallGrassAtlas = "RoR2/DLC2/lemuriantemple/Assets/spmLTTallGrass_Atlas.tga"; public static string texLTCactusDiffuse = "RoR2/DLC2/lemuriantemple/Assets/texLTCactusDiffuse.tga"; public static string texLTCCactusNeedleMask = "RoR2/DLC2/lemuriantemple/Assets/texLTCCactusNeedleMask.png"; public static string texLTCoralNormal = "RoR2/DLC2/lemuriantemple/Assets/texLTCoralNormal.png"; public static string texLTCrystalDiffuse = "RoR2/DLC2/lemuriantemple/Assets/texLTCrystalDiffuse.png"; public static string texLTCrystalMask = "RoR2/DLC2/lemuriantemple/Assets/texLTCrystalMask.png"; public static string texLTCrystalNormal = "RoR2/DLC2/lemuriantemple/Assets/texLTCrystalNormal.png"; public static string texLTCTYellow = "RoR2/DLC2/lemuriantemple/Assets/texLTCTYellow.tga"; public static string texLTGoldribbonMask = "RoR2/DLC2/lemuriantemple/Assets/texLTGoldribbonMask.png"; public static string texLTLicen = "RoR2/DLC2/lemuriantemple/Assets/texLTLicen.tga"; public static string texLTRocksDiffuse = "RoR2/DLC2/lemuriantemple/Assets/texLTRocksDiffuse.png"; public static string texLTRocksNormal = "RoR2/DLC2/lemuriantemple/Assets/texLTRocksNormal.png"; public static string texLTTempleDiffuse = "RoR2/DLC2/lemuriantemple/Assets/texLTTempleDiffuse.tga"; public static string texLTTempleDiffuseSand = "RoR2/DLC2/lemuriantemple/Assets/texLTTempleDiffuseSand.tga"; public static string texLTTempleNormal = "RoR2/DLC2/lemuriantemple/Assets/texLTTempleNormal.png"; public static string texLTTerrainDiffuseBlue = "RoR2/DLC2/lemuriantemple/Assets/texLTTerrainDiffuseBlue.tga"; public static string texLTTerrainDiffuseBlueopt = "RoR2/DLC2/lemuriantemple/Assets/texLTTerrainDiffuseBlue_opt.tga"; public static string texLTTerrainDiffuseCaveMoss = "RoR2/DLC2/lemuriantemple/Assets/texLTTerrainDiffuseCaveMoss.tga"; public static string texLTTerrainDiffuseMain = "RoR2/DLC2/lemuriantemple/Assets/texLTTerrainDiffuseMain.tga"; public static string texLTTerrainDiffuseMainopt = "RoR2/DLC2/lemuriantemple/Assets/texLTTerrainDiffuseMain_opt.tga"; public static string texLTTerrainDiffuseMainBopt = "RoR2/DLC2/lemuriantemple/Assets/texLTTerrainDiffuseMainB_opt.tga"; public static string texLTTerrainDiffuseRed = "RoR2/DLC2/lemuriantemple/Assets/texLTTerrainDiffuseRed.tga"; public static string texLTTerrainDiffuseRedopt = "RoR2/DLC2/lemuriantemple/Assets/texLTTerrainDiffuseRed_opt.tga"; public static string texLTTerrainNormal = "RoR2/DLC2/lemuriantemple/Assets/texLTTerrainNormal.png"; public static string texLTWallDiffuse = "RoR2/DLC2/lemuriantemple/Assets/texLTWallDiffuse.tga"; public static string texLemurianTemplePreview = "RoR2/DLC2/lemuriantemple/texLemurianTemplePreview.png"; public static string GoldenTree2Atlas = "RoR2/DLC2/meridian/Assets/GoldenTree2_Atlas.tga"; public static string GoldenTree2AtlasBillboards = "RoR2/DLC2/meridian/Assets/GoldenTree2_Atlas_Billboards.tga"; public static string GoldenTree2AtlasBillboardsNormal = "RoR2/DLC2/meridian/Assets/GoldenTree2_Atlas_Billboards_Normal.tga"; public static string texPMWillowDiffuse = "RoR2/DLC2/meridian/Assets/texPMWillowDiffuse.png"; public static string texPMWillowEmissive = "RoR2/DLC2/meridian/Assets/texPMWillowEmissive.png"; public static string BroadleafBarkPainted6 = "RoR2/DLC2/meridian/Assets/BroadleafBarkPainted.tga"; public static string ItalianCypressBarkNormal = "RoR2/DLC2/meridian/Assets/ItalianCypressBark_Normal.tga"; public static string PMCypressBushAtlas = "RoR2/DLC2/meridian/Assets/PMCypressBush_Atlas.tga"; public static string PMCypressBushAtlasBillboards = "RoR2/DLC2/meridian/Assets/PMCypressBush_Atlas_Billboards.tga"; public static string PMCypressBushAtlasBillboardsNormal = "RoR2/DLC2/meridian/Assets/PMCypressBush_Atlas_Billboards_Normal.tga"; public static string PMCypressDistantAtlas = "RoR2/DLC2/meridian/Assets/PMCypressDistant_Atlas.tga"; public static string PMCypressDistantAtlasBillboards = "RoR2/DLC2/meridian/Assets/PMCypressDistant_Atlas_Billboards.tga"; public static string PMCypressDistantAtlasBillboardsNormal = "RoR2/DLC2/meridian/Assets/PMCypressDistant_Atlas_Billboards_Normal.tga"; public static string PMCypressLGAtlas = "RoR2/DLC2/meridian/Assets/PMCypressLG_Atlas.tga"; public static string PMCypressLGAtlasBillboards = "RoR2/DLC2/meridian/Assets/PMCypressLG_Atlas_Billboards.tga"; public static string PMCypressLGAtlasBillboardsNormal = "RoR2/DLC2/meridian/Assets/PMCypressLG_Atlas_Billboards_Normal.tga"; public static string PMCypressMDAtlas = "RoR2/DLC2/meridian/Assets/PMCypressMD_Atlas.tga"; public static string PMCypressMDAtlasBillboards = "RoR2/DLC2/meridian/Assets/PMCypressMD_Atlas_Billboards.tga"; public static string PMCypressMDAtlasBillboardsNormal = "RoR2/DLC2/meridian/Assets/PMCypressMD_Atlas_Billboards_Normal.tga"; public static string PMGoldenLeaf12 = "RoR2/DLC2/meridian/Assets/PMGoldenLeaf.tga"; public static string texArchDoorDiffuse = "RoR2/DLC2/meridian/Assets/texArchDoorDiffuse.tga"; public static string texPMCirclePatternNormal = "RoR2/DLC2/meridian/Assets/texPMCirclePatternNormal.png"; public static string texPMCirclePatternNormalNew = "RoR2/DLC2/meridian/Assets/texPMCirclePatternNormalNew.png"; public static string texPMHangingCrystalDiffuseNew = "RoR2/DLC2/meridian/Assets/texPMHangingCrystalDiffuseNew.png"; public static string texPMHangingCrystalNormalNew = "RoR2/DLC2/meridian/Assets/texPMHangingCrystalNormalNew.png"; public static string texPMLightningMask = "RoR2/DLC2/meridian/Assets/texPMLightningMask.png"; public static string texPMMarbleBlue = "RoR2/DLC2/meridian/Assets/texPMMarbleBlue.tga"; public static string texPMMarbleYellow = "RoR2/DLC2/meridian/Assets/texPMMarbleYellow.tga"; public static string texPMMossDiffuse = "RoR2/DLC2/meridian/Assets/texPMMossDiffuse.tga"; public static string texPMShrinePillarGlowMask = "RoR2/DLC2/meridian/Assets/texPMShrinePillarGlowMask.png"; public static string texPMSplat = "RoR2/DLC2/meridian/Assets/texPMSplat.png"; public static string texPMStormCloud = "RoR2/DLC2/meridian/Assets/texPMStormCloud.png"; public static string texPMTerrainDiffuseLightBlue = "RoR2/DLC2/meridian/Assets/texPMTerrainDiffuseLightBlue.tga"; public static string texLightningStrikeImpactEffect1 = "RoR2/DLC2/meridian/DisableSkillsLightning/texLightningStrikeImpactEffect1.png"; public static string texEventClearedVFX1 = "RoR2/DLC2/meridian/texEventClearedVFX1.png"; public static string texEventClearedVFX2 = "RoR2/DLC2/meridian/texEventClearedVFX2.png"; public static string texEventClearedVFX3 = "RoR2/DLC2/meridian/texEventClearedVFX3.png"; public static string texMeridianArenaFormDestructVFX1 = "RoR2/DLC2/meridian/texMeridianArenaFormDestructVFX1.png"; public static string texPrimeMeridianPreview = "RoR2/DLC2/meridian/texPrimeMeridianPreview.png"; public static string spmLVGrassAtlas = "RoR2/DLC2/village/Assets/spmLVGrassAtlas.tga"; public static string spmLVGrassAtlas2 = "RoR2/DLC2/village/Assets/spmLVGrassAtlas2.png"; public static string texLVFernADiffuse = "RoR2/DLC2/village/Assets/texLVFernADiffuse.tga"; public static string texLVFernADiffuseopt = "RoR2/DLC2/village/Assets/texLVFernADiffuse_opt.tga"; public static string texLVFernBNormal = "RoR2/DLC2/village/Assets/texLVFernB_Normal.tga"; public static string texLVFernBNormalopt = "RoR2/DLC2/village/Assets/texLVFernB_Normal_opt.tga"; public static string texLVFernBDiffuse = "RoR2/DLC2/village/Assets/texLVFernBDiffuse.tga"; public static string texLVFernCDiffuse = "RoR2/DLC2/village/Assets/texLVFernCDiffuse.tga"; public static string texLVFernCDiffuseopt = "RoR2/DLC2/village/Assets/texLVFernCDiffuse_opt.tga"; public static string texLVFernCNormal = "RoR2/DLC2/village/Assets/texLVFernCNormal.tga"; public static string texLVFernCNormalopt = "RoR2/DLC2/village/Assets/texLVFernCNormal_opt.tga"; public static string texLVArcGreenDiffuse = "RoR2/DLC2/village/Assets/texLVArcGreenDiffuse.png"; public static string texLVArcGreenFarDiffuse = "RoR2/DLC2/village/Assets/texLVArcGreenFarDiffuse.png"; public static string texLVArcSplatmap = "RoR2/DLC2/village/Assets/texLVArcSplatmap.png"; public static string texLVArcWhiteSideDiffuse = "RoR2/DLC2/village/Assets/texLVArcWhiteSideDiffuse.png"; public static string texLVArcWhiteSideDiffuseopt = "RoR2/DLC2/village/Assets/texLVArcWhiteSideDiffuse_opt.png"; public static string texLVArcWhiteTopDiffuse = "RoR2/DLC2/village/Assets/texLVArcWhiteTopDiffuse.png"; public static string texLVChimeDiffuse = "RoR2/DLC2/village/Assets/texLVChimeDiffuse.png"; public static string texLVChimeNormal = "RoR2/DLC2/village/Assets/texLVChimeNormal.png"; public static string texLVCrystalDirtDiffuse = "RoR2/DLC2/village/Assets/texLVCrystalDirtDiffuse.png"; public static string texLVFloorGreenDiffuse = "RoR2/DLC2/village/Assets/texLVFloorGreenDiffuse.png"; public static string texLVFloorGreenDiffuseopt = "RoR2/DLC2/village/Assets/texLVFloorGreenDiffuse_opt.png"; public static string texLVGrassopt = "RoR2/DLC2/village/Assets/texLVGrass_opt.tga"; public static string texLVGrassDiffuseopt = "RoR2/DLC2/village/Assets/texLVGrassDiffuse_opt.tga"; public static string texLVGrassParticle = "RoR2/DLC2/village/Assets/texLVGrassParticle.png"; public static string texLVRockDarkDiffuse = "RoR2/DLC2/village/Assets/texLVRockDarkDiffuse.png"; public static string texLVRockLightDiffuse = "RoR2/DLC2/village/Assets/texLVRockLightDiffuse.png"; public static string texLVRopeDiffuse = "RoR2/DLC2/village/Assets/texLVRopeDiffuse.png"; public static string texLVRopeNormal = "RoR2/DLC2/village/Assets/texLVRopeNormal.png"; public static string texLVYellowDiffuse = "RoR2/DLC2/village/Assets/texLVYellowDiffuse.png"; public static string textLVGlassEggBasecolor = "RoR2/DLC2/village/Assets/textLVGlassEggBasecolor.png"; public static string textLVGlassEggNormal = "RoR2/DLC2/village/Assets/textLVGlassEggNormal.png"; public static string TexVillagePreview = "RoR2/DLC2/village/TexVillagePreview.png"; public static string texLVNightHangingVines = "RoR2/DLC2/villagenight/Assets/texLVNight_HangingVines.tga"; public static string texLVNightHangingVinesopt = "RoR2/DLC2/villagenight/Assets/texLVNight_HangingVines_opt.tga"; public static string texLVNightGrass = "RoR2/DLC2/villagenight/Assets/texLVNightGrass.png"; public static string texLVNightGrassopt = "RoR2/DLC2/villagenight/Assets/texLVNightGrass_opt.png"; public static string texLVNightValleyLilyDiffuse = "RoR2/DLC2/villagenight/Assets/texLVNightValleyLilyDiffuse.png"; public static string texLVNightValleyLilyDiffuseopt = "RoR2/DLC2/villagenight/Assets/texLVNightValleyLilyDiffuse_opt.png"; public static string texLVNightValleyNormal = "RoR2/DLC2/villagenight/Assets/texLVNightValleyNormal.tga"; public static string texLVNightValleyNormalopt = "RoR2/DLC2/villagenight/Assets/texLVNightValleyNormal_opt.tga"; public static string texVillageFlowerVinesDiffuse = "RoR2/DLC2/villagenight/Assets/texVillageFlowerVinesDiffuse.png"; public static string texLVNBrazierChainDiffuse = "RoR2/DLC2/villagenight/Assets/texLVNBrazierChainDiffuse.tga"; public static string texLVNightArcGreenopt = "RoR2/DLC2/villagenight/Assets/texLVNightArcGreen_opt.tga"; public static string texLVNightGrassopt33 = "RoR2/DLC2/villagenight/Assets/texLVNightGrass_opt.tga"; public static string texLVNightGrassopt2 = "RoR2/DLC2/villagenight/Assets/texLVNightGrass_opt2.tga"; public static string texLVNightGrassDarkopt = "RoR2/DLC2/villagenight/Assets/texLVNightGrassDark_opt.tga"; public static string texLVNightGrassYellowDiffuseopt = "RoR2/DLC2/villagenight/Assets/texLVNightGrassYellowDiffuse_opt.tga"; public static string texLVNightRockDarkDiffuseopt = "RoR2/DLC2/villagenight/Assets/texLVNightRockDarkDiffuse_opt.png"; public static string texLVNightTerrainDarkBlendopt = "RoR2/DLC2/villagenight/Assets/texLVNightTerrainDarkBlend_opt.tga"; public static string texLVNightTerrainGrassMaroonopt = "RoR2/DLC2/villagenight/Assets/texLVNightTerrainGrassMaroon_opt.tga"; public static string texLVNightTerrainSideopt = "RoR2/DLC2/villagenight/Assets/texLVNightTerrainSide_opt.tga"; public static string texLVNightTerrainTopopt = "RoR2/DLC2/villagenight/Assets/texLVNightTerrainTop_opt.tga"; public static string texLVNightTerrainYellowopt = "RoR2/DLC2/villagenight/Assets/texLVNightTerrainYellow_opt.tga"; public static string texLVNightWhiteStoneopt = "RoR2/DLC2/villagenight/Assets/texLVNightWhiteStone_opt.tga"; public static string texLVNightYellowGrass = "RoR2/DLC2/villagenight/Assets/texLVNightYellowGrass.png"; public static string texLVNightYellowGrassopt = "RoR2/DLC2/villagenight/Assets/texLVNightYellowGrass_opt.tga"; public static string textLVGlassEggEmmissive = "RoR2/DLC2/villagenight/Assets/textLVGlassEggEmmissive.png"; public static string TexVillagenightPreview = "RoR2/DLC2/villagenight/TexVillagenightPreview.png"; public static string texColossusExpansionIcon = "RoR2/DLC2/texColossusExpansionIcon.png"; public static string texDLC2AltSkinSwatches = "RoR2/DLC2/texDLC2AltSkinSwatches.png"; public static string texAcridSkinIcon = "RoR2/DLC3/texAcridSkinIcon.png"; public static string texBanditSkinIcon = "RoR2/DLC3/texBanditSkinIcon.png"; public static string texCaptainSkinIcon = "RoR2/DLC3/texCaptainSkinIcon.png"; public static string texCommandoSkinIcon = "RoR2/DLC3/texCommandoSkinIcon.png"; public static string texDrifterAlt1SkinIcon = "RoR2/DLC3/texDrifterAlt1SkinIcon.png"; public static string texDrifterJunkCubeIcon = "RoR2/DLC3/texDrifterJunkCubeIcon.png"; public static string texDrifterTinkerIcon = "RoR2/DLC3/texDrifterTinkerIcon.png"; public static string texDrifterUnlockIcon = "RoR2/DLC3/texDrifterUnlockIcon.png"; public static string texDroneTechAltSkinIcon = "RoR2/DLC3/texDroneTechAltSkinIcon.png"; public static string texDroneTechDefeatVultureBossWhileAirborneIcon = "RoR2/DLC3/texDroneTechDefeatVultureBossWhileAirborneIcon.png"; public static string texDroneTechJuggleLemurianIcon = "RoR2/DLC3/texDroneTechJuggleLemurianIcon.png"; public static string texDroneTechTrickshotIcon = "RoR2/DLC3/texDroneTechTrickshotIcon.png"; public static string texDroneTechUniqueDronesIcon = "RoR2/DLC3/texDroneTechUniqueDronesIcon.png"; public static string texEngineerSkinIcon = "RoR2/DLC3/texEngineerSkinIcon.png"; public static string texFlowerbotSkinIcon = "RoR2/DLC3/texFlowerbotSkinIcon.png"; public static string texHuntressSkinIcon = "RoR2/DLC3/texHuntressSkinIcon.png"; public static string texLoaderSkinIcon = "RoR2/DLC3/texLoaderSkinIcon.png"; public static string texMageSkinIcon = "RoR2/DLC3/texMageSkinIcon.png"; public static string texMecenarySkinIcon = "RoR2/DLC3/texMecenarySkinIcon.png"; public static string texObtainArtifactPrestigeIcon = "RoR2/DLC3/texObtainArtifactPrestigeIcon.png"; public static string texToolbotSkinIcon = "RoR2/DLC3/texToolbotSkinIcon.png"; public static string texArtifactOfPrestigeDisabledIcon = "RoR2/DLC3/texArtifactOfPrestigeDisabledIcon.png"; public static string texArtifactOfPrestigeEnabledIcon = "RoR2/DLC3/texArtifactOfPrestigeEnabledIcon.png"; public static string texDefectiveUnitIcon = "RoR2/DLC3/DefectiveUnit/texDefectiveUnitIcon.png"; public static string texTrimSheetDronesBrownDiffuse = "RoR2/DLC3/DefectiveUnit/texTrimSheetDronesBrownDiffuse.tga"; public static string texTrimSheetDronesBrownEmissivee = "RoR2/DLC3/DefectiveUnit/texTrimSheetDronesBrownEmissivee.png"; public static string texTrimSheetDronesBrownNormal = "RoR2/DLC3/DefectiveUnit/texTrimSheetDronesBrownNormal.png"; public static string texDefectiveOil = "RoR2/DLC3/DefectiveUnit/texDefectiveOil.tga"; public static string texTrimSheetDronesBrownDiffuse1 = "RoR2/DLC3/DefectiveUnit/texTrimSheetDronesBrownDiffuse 1.tga"; public static string texTrimSheetDronesBrownEmissivee1 = "RoR2/DLC3/DefectiveUnit/texTrimSheetDronesBrownEmissivee 1.png"; public static string texTrimSheetDronesBrownNormal1 = "RoR2/DLC3/DefectiveUnit/texTrimSheetDronesBrownNormal 1.png"; public static string texDrifterAlt1SkinIcon21 = "RoR2/DLC3/Drifter/texDrifterAlt1SkinIcon.png"; public static string texDrifterBagDiff = "RoR2/DLC3/Drifter/texDrifterBagDiff.tga"; public static string texDrifterBagNormal = "RoR2/DLC3/Drifter/texDrifterBagNormal.png"; public static string texDrifterBodyDiff = "RoR2/DLC3/Drifter/texDrifterBodyDiff.tga"; public static string texDrifterBodyNormal = "RoR2/DLC3/Drifter/texDrifterBodyNormal.png"; public static string texDrifterDefaultSkinIcon = "RoR2/DLC3/Drifter/texDrifterDefaultSkinIcon.png"; public static string texDrifterDiffuse = "RoR2/DLC3/Drifter/texDrifterDiffuse.tga"; public static string texDrifterfresnelMask = "RoR2/DLC3/Drifter/texDrifterfresnelMask.png"; public static string texDrifterNormal = "RoR2/DLC3/Drifter/texDrifterNormal.png"; public static string texDrifterRamp = "RoR2/DLC3/Drifter/texDrifterRamp.png"; public static string texDrifterJunkMeterWhiteDash = "RoR2/DLC3/Drifter/texDrifterJunkMeter_White-Dash.png"; public static string texDrifterJunkMeterFill = "RoR2/DLC3/Drifter/texDrifterJunkMeterFill.png"; public static string texDrifterJunkMeterOutline = "RoR2/DLC3/Drifter/texDrifterJunkMeterOutline.png"; public static string texDrifterJunkMeterSeparator = "RoR2/DLC3/Drifter/texDrifterJunkMeterSeparator.png"; public static string texJunkPlaneLD = "RoR2/DLC3/Drifter/texJunkPlaneL_D.tga"; public static string texJunkPlaneLN = "RoR2/DLC3/Drifter/texJunkPlaneL_N.png"; public static string texDrifterStickyBombDiffuse1 = "RoR2/DLC3/Drifter/texDrifterStickyBombDiffuse 1.png"; public static string texHandDiffuse19 = "RoR2/DLC3/Drifter/texHandDiffuse.png"; public static string texDiffJumpCube = "RoR2/DLC3/Drifter/texDiffJumpCube.tga"; public static string texJumpCubeNorm = "RoR2/DLC3/Drifter/texJumpCubeNorm.png"; public static string texJunkCubeBody = "RoR2/DLC3/Drifter/texJunkCubeBody.png"; public static string texDrifterSkillIconOverrides = "RoR2/DLC3/Drifter/texDrifterSkillIconOverrides.png"; public static string texDrifterSkillIcons = "RoR2/DLC3/Drifter/texDrifterSkillIcons.png"; public static string texDrifterCrosshair = "RoR2/DLC3/Drifter/texDrifterCrosshair.png"; public static string texDrifterIcon = "RoR2/DLC3/Drifter/texDrifterIcon.png"; public static string texDrifterUnlockIcon16 = "RoR2/DLC3/Drifter/texDrifterUnlockIcon.png"; public static string texBluntMask = "RoR2/DLC3/Drifter/texBluntMask.png"; public static string texDrifterTrailMask01 = "RoR2/DLC3/Drifter/texDrifterTrailMask01.png"; public static string texDrifterTrailMask01b = "RoR2/DLC3/Drifter/texDrifterTrailMask01b.png"; public static string texDrifterTrailMask03 = "RoR2/DLC3/Drifter/texDrifterTrailMask03.png"; public static string texImpactBurst01 = "RoR2/DLC3/Drifter/texImpactBurst_01.png"; public static string texRampDrifter01 = "RoR2/DLC3/Drifter/texRampDrifter01.png"; public static string texRampDrifter01b = "RoR2/DLC3/Drifter/texRampDrifter01b.png"; public static string texRampDrifter02 = "RoR2/DLC3/Drifter/texRampDrifter02.png"; public static string texRampDrifter02b = "RoR2/DLC3/Drifter/texRampDrifter02b.png"; public static string texRampDrifter03 = "RoR2/DLC3/Drifter/texRampDrifter03.png"; public static string texRampDrifter03b = "RoR2/DLC3/Drifter/texRampDrifter03b.png"; public static string texRampDrifter04 = "RoR2/DLC3/Drifter/texRampDrifter04.png"; public static string texRampDrifter05 = "RoR2/DLC3/Drifter/texRampDrifter05.png"; public static string texRampDrifter06 = "RoR2/DLC3/Drifter/texRampDrifter06.png"; public static string texRampDrifter06b = "RoR2/DLC3/Drifter/texRampDrifter06b.png"; public static string texDroneTechAltSkin = "RoR2/DLC3/Drone Tech/texDroneTechAltSkin.png"; public static string texDroneTechAccesoriesDifuse = "RoR2/DLC3/Drone Tech/texDroneTechAccesoriesDifuse.tga"; public static string texDroneTechAccesoriesEmission = "RoR2/DLC3/Drone Tech/texDroneTechAccesoriesEmission.png"; public static string texDroneTechAccesoriesNormal = "RoR2/DLC3/Drone Tech/texDroneTechAccesoriesNormal.png"; public static string texDroneTechBraceScreen = "RoR2/DLC3/Drone Tech/texDroneTechBraceScreen.png"; public static string texDroneTechDifuse = "RoR2/DLC3/Drone Tech/texDroneTechDifuse.tga"; public static string texDroneTechEmission = "RoR2/DLC3/Drone Tech/texDroneTechEmission.png"; public static string texDroneTechForarmScreenMask = "RoR2/DLC3/Drone Tech/texDroneTechForarmScreenMask.png"; public static string texDroneTechFresnelMask = "RoR2/DLC3/Drone Tech/texDroneTechFresnelMask.png"; public static string texDroneTechNormal = "RoR2/DLC3/Drone Tech/texDroneTechNormal.png"; public static string texDroneTechRamp = "RoR2/DLC3/Drone Tech/texDroneTechRamp.png"; public static string texDroneTechScreenLinesGray = "RoR2/DLC3/Drone Tech/texDroneTechScreenLinesGray.png"; public static string texDroneTechSkinIcon = "RoR2/DLC3/Drone Tech/texDroneTechSkinIcon.png"; public static string texDTAltBraceScreenFB2 = "RoR2/DLC3/Drone Tech/texDT_AltBraceScreenFB2.png"; public static string texDTVisorRamp = "RoR2/DLC3/Drone Tech/texDTVisorRamp.png"; public static string TDroneTechC = "RoR2/DLC3/Drone Tech/T_DroneTech_C.png"; public static string TDroneTechGlow01C = "RoR2/DLC3/Drone Tech/T_DroneTech_Glow01_C.png"; public static string TDroneTechGlow02C = "RoR2/DLC3/Drone Tech/T_DroneTech_Glow02_C.png"; public static string TDroneTechGlow03C = "RoR2/DLC3/Drone Tech/T_DroneTech_Glow03_C.png"; public static string TDroneTechGlow04C = "RoR2/DLC3/Drone Tech/T_DroneTech_Glow04_C.png"; public static string texDroneballCenterDiffuse = "RoR2/DLC3/Drone Tech/texDroneballCenterDiffuse.png"; public static string texDroneballDiffuse = "RoR2/DLC3/Drone Tech/texDroneballDiffuse.png"; public static string texDroneballEmissive = "RoR2/DLC3/Drone Tech/texDroneballEmissive.png"; public static string texCombatIcon = "RoR2/DLC3/Drone Tech/texCombatIcon.png"; public static string texDroneCompanionCombat = "RoR2/DLC3/Drone Tech/texDroneCompanionCombat.png"; public static string texDroneCompanionHealing = "RoR2/DLC3/Drone Tech/texDroneCompanionHealing.png"; public static string texDroneCompanionUtility = "RoR2/DLC3/Drone Tech/texDroneCompanionUtility.png"; public static string texDroneTechDroneFrame = "RoR2/DLC3/Drone Tech/texDroneTechDroneFrame.png"; public static string texDTGunnerDroneIcon = "RoR2/DLC3/Drone Tech/texDTGunnerDroneIcon.png"; public static string texHealingIcon = "RoR2/DLC3/Drone Tech/texHealingIcon.png"; public static string texUtilityIcon = "RoR2/DLC3/Drone Tech/texUtilityIcon.png"; public static string texNanoBombStarburst = "RoR2/DLC3/Drone Tech/texNanoBombStarburst.png"; public static string texNanoShockwave = "RoR2/DLC3/Drone Tech/texNanoShockwave.png"; public static string texNanoPistolAOE1b = "RoR2/DLC3/Drone Tech/texNanoPistolAOE_1b.png"; public static string texNanoPistolAOE1c = "RoR2/DLC3/Drone Tech/texNanoPistolAOE_1c.png"; public static string texNanoPistolAOE1d = "RoR2/DLC3/Drone Tech/texNanoPistolAOE_1d.png"; public static string texNanoPistolBeamTrail = "RoR2/DLC3/Drone Tech/texNanoPistolBeamTrail.png"; public static string texNanoPistolPixel = "RoR2/DLC3/Drone Tech/texNanoPistolPixel.png"; public static string texNanoPistolRingburst = "RoR2/DLC3/Drone Tech/texNanoPistolRingburst.png"; public static string texNanoPistolStarburst = "RoR2/DLC3/Drone Tech/texNanoPistolStarburst.png"; public static string texNanoPistolTracerHead = "RoR2/DLC3/Drone Tech/texNanoPistolTracerHead.png"; public static string texNanoScanLines = "RoR2/DLC3/Drone Tech/texNanoScanLines.png"; public static string texNanoScanLines03 = "RoR2/DLC3/Drone Tech/texNanoScanLines03.png"; public static string texStimShotIcon = "RoR2/DLC3/Drone Tech/texStimShotIcon.png"; public static string texDroneIndicator = "RoR2/DLC3/Drone Tech/texDroneIndicator.png"; public static string texDroneTargetIndicator = "RoR2/DLC3/Drone Tech/texDroneTargetIndicator.png"; public static string texDTAOEGrid = "RoR2/DLC3/Drone Tech/texDT_AOE_Grid.png"; public static string texDTAOEGrid02 = "RoR2/DLC3/Drone Tech/texDT_AOE_Grid02.png"; public static string texDroneTechSkillIcons = "RoR2/DLC3/Drone Tech/texDroneTechSkillIcons.png"; public static string texConvertToScrapArrow1 = "RoR2/DLC3/Drone Tech/texConvertToScrapArrow 1.png"; public static string texDroneTechCarryIndicator = "RoR2/DLC3/Drone Tech/texDroneTechCarryIndicator.png"; public static string texVertPixel = "RoR2/DLC3/Drone Tech/texVertPixel.png"; public static string texSheildTrail = "RoR2/DLC3/Drone Tech/texSheildTrail.png"; public static string texSheildTrail02 = "RoR2/DLC3/Drone Tech/texSheildTrail02.png"; public static string texDroneTechChallengeIcon = "RoR2/DLC3/Drone Tech/texDroneTechChallengeIcon.png"; public static string texDroneTechIcon = "RoR2/DLC3/Drone Tech/texDroneTechIcon.png"; public static string texDroneTechTrackingIndicator = "RoR2/DLC3/Drone Tech/texDroneTechTrackingIndicator.png"; public static string texOldDroneTechChallengeIcon = "RoR2/DLC3/Drone Tech/texOldDroneTechChallengeIcon.png"; public static string texOldDroneTechIcon = "RoR2/DLC3/Drone Tech/texOldDroneTechIcon.png"; public static string texInnerFrame = "RoR2/DLC3/Drone Tech/texInnerFrame.png"; public static string texOuterFrame = "RoR2/DLC3/Drone Tech/texOuterFrame.png"; public static string textframe = "RoR2/DLC3/Drone Tech/text_frame.png"; public static string texTargetFrame = "RoR2/DLC3/Drone Tech/texTargetFrame.png"; public static string texCommandActivateBoxFrame = "RoR2/DLC3/Drone Tech/texCommandActivateBoxFrame.png"; public static string texCommandActivateCodeBox = "RoR2/DLC3/Drone Tech/texCommandActivateCodeBox.png"; public static string texCommandActivateCodeText = "RoR2/DLC3/Drone Tech/texCommandActivateCodeText.png"; public static string texCommandActivateHealSelect = "RoR2/DLC3/Drone Tech/texCommandActivateHealSelect.png"; public static string texCommandActivateLoadBox = "RoR2/DLC3/Drone Tech/texCommandActivateLoadBox.png"; public static string texCommandActivatePointer = "RoR2/DLC3/Drone Tech/texCommandActivatePointer.png"; public static string texCommandActivateTarget = "RoR2/DLC3/Drone Tech/texCommandActivateTarget.png"; public static string texCommandActivateTargetSelect = "RoR2/DLC3/Drone Tech/texCommandActivateTargetSelect.png"; public static string texCommandActivateTargetSelectWhite = "RoR2/DLC3/Drone Tech/texCommandActivateTargetSelectWhite.png"; public static string texCommandActivateText = "RoR2/DLC3/Drone Tech/texCommandActivateText.png"; public static string texGroundCracksMask01 = "RoR2/DLC3/Drones/texGroundCracksMask_01.png"; public static string texGroundCracksNrm01 = "RoR2/DLC3/Drones/texGroundCracksNrm_01.png"; public static string texTrimSheetDronesBrownDiffuse35 = "RoR2/DLC3/Drones/texTrimSheetDronesBrownDiffuse.tga"; public static string texTrimSheetDronesBrownEmissive = "RoR2/DLC3/Drones/texTrimSheetDronesBrownEmissive.png"; public static string texTrimSheetDronesBrownNormal19 = "RoR2/DLC3/Drones/texTrimSheetDronesBrownNormal.png"; public static string texBombardmentDroneIcon = "RoR2/DLC3/Drones/texBombardmentDroneIcon.png"; public static string texTrimSheetDronesBrownEmissive2 = "RoR2/DLC3/Drones/texTrimSheetDronesBrownEmissive2.png"; public static string texTrimSheetDronesBrownNormal2 = "RoR2/DLC3/Drones/texTrimSheetDronesBrownNormal2.png"; public static string texSkillCleanupDroneIcon = "RoR2/DLC3/Drones/texSkillCleanupDroneIcon.png"; public static string texCleanUpDroneIcon = "RoR2/DLC3/Drones/texCleanUpDroneIcon.png"; public static string texPixelGrid01 = "RoR2/DLC3/Drones/texPixelGrid_01.png"; public static string texRampCopycatBeam = "RoR2/DLC3/Drones/texRampCopycatBeam.png"; public static string texScanBeamDIFF = "RoR2/DLC3/Drones/texScanBeam_DIFF.png"; public static string texLaserDiscIcon = "RoR2/DLC3/Drones/texLaserDiscIcon.png"; public static string texSkillCopycatDroneIcon = "RoR2/DLC3/Drones/texSkillCopycatDroneIcon.png"; public static string texCopycatDrone = "RoR2/DLC3/Drones/texCopycatDrone.png"; public static string texDroneBomberIcon = "RoR2/DLC3/Drones/texDroneBomberIcon.png"; public static string texDiffdrone1A = "RoR2/DLC3/Drones/texDiffdrone1_A.tga"; public static string texDiffdrone1B = "RoR2/DLC3/Drones/texDiffdrone1_B.tga"; public static string texDTGunnerIcon = "RoR2/DLC3/Drones/texDTGunnerIcon.png"; public static string texDTHaulerDroneIcon = "RoR2/DLC3/Drones/texDTHaulerDroneIcon.png"; public static string texTrimSheetDronesBlue33 = "RoR2/DLC3/Drones/texTrimSheetDronesBlue.png"; public static string texDrone2A = "RoR2/DLC3/Drones/texDrone2_A.tga"; public static string texDrone2B = "RoR2/DLC3/Drones/texDrone2_B.tga"; public static string texDTHealingDroneIcon = "RoR2/DLC3/Drones/texDTHealingDroneIcon.png"; public static string texHealingDroneEmissMask = "RoR2/DLC3/Drones/texHealingDroneEmissMask.png"; public static string texHaulerDroneIcon = "RoR2/DLC3/Drones/texHaulerDroneIcon.png"; public static string texVerticalGradient = "RoR2/DLC3/Drones/texVerticalGradient.png"; public static string texVerticalGradientBlkWht = "RoR2/DLC3/Drones/texVerticalGradientBlkWht.png"; public static string texJailerDroneIcon = "RoR2/DLC3/Drones/texJailerDroneIcon.png"; public static string texTrimSheetDronesBrownDiffuse8 = "RoR2/DLC3/Drones/texTrimSheetDronesBrownDiffuse.png"; public static string texJunkDroneIcon = "RoR2/DLC3/Drones/texJunkDroneIcon.png"; public static string texRechargeDroneMask = "RoR2/DLC3/Drones/texRechargeDroneMask.png"; public static string texRechargeDroneMask02 = "RoR2/DLC3/Drones/texRechargeDroneMask02.png"; public static string texRechargeDroneMask03 = "RoR2/DLC3/Drones/texRechargeDroneMask03.png"; public static string texSkillRechargeDroneIcon = "RoR2/DLC3/Drones/texSkillRechargeDroneIcon.png"; public static string texRechargeDroneIcon = "RoR2/DLC3/Drones/texRechargeDroneIcon.png"; public static string texDroneSkillIcons = "RoR2/DLC3/Drones/texDroneSkillIcons.png"; public static string texTrimSheetDronesBrownDiffuse2 = "RoR2/DLC3/Drones/texTrimSheetDronesBrownDiffuse2.tga"; public static string texTrimSheetDronesBrownDiffuse21 = "RoR2/DLC3/ExplosiveJunkBombDestructible/texTrimSheetDronesBrownDiffuse2.tga"; public static string texTrimSheetDronesBrownEmissive35 = "RoR2/DLC3/ExplosiveJunkBombDestructible/texTrimSheetDronesBrownEmissive.png"; public static string texTrimSheetDronesBrownNormal10 = "RoR2/DLC3/ExplosiveJunkBombDestructible/texTrimSheetDronesBrownNormal.png"; public static string texExtractorLegs = "RoR2/DLC3/ExtractorUnit/texExtractorLegs.tga"; public static string texExtractorUnitIcon = "RoR2/DLC3/ExtractorUnit/texExtractorUnitIcon.png"; public static string texTrimSheetDronesBrownDiffuse21_Alt = "RoR2/DLC3/ExtractorUnit/texTrimSheetDronesBrownDiffuse.tga"; public static string texTrimSheetDronesBrownEmissive18 = "RoR2/DLC3/ExtractorUnit/texTrimSheetDronesBrownEmissive.png"; public static string texTrimSheetDronesBrownNormal4 = "RoR2/DLC3/ExtractorUnit/texTrimSheetDronesBrownNormal.png"; public static string texRampExtractorUnitHit = "RoR2/DLC3/ExtractorUnit/texRampExtractorUnitHit.png"; public static string texTriangleScanMask = "RoR2/DLC3/ExtractorUnit/texTriangleScanMask.png"; public static string deadHeart = "RoR2/DLC3/FriendUnit/deadHeart.png"; public static string texDeadHeartPetting = "RoR2/DLC3/FriendUnit/texDeadHeartPetting.png"; public static string texEmissiveMask = "RoR2/DLC3/FriendUnit/texEmissiveMask.png"; public static string texFriendUnitBodyIcon = "RoR2/DLC3/FriendUnit/texFriendUnitBodyIcon.png"; public static string texTrimSheetGreen = "RoR2/DLC3/FriendUnit/texTrimSheetGreen.png"; public static string texIronHaulerIcon = "RoR2/DLC3/IronHauler/texIronHaulerIcon.png"; public static string texIronHaulerRockChunksFresnelRamp = "RoR2/DLC3/IronHauler/texIronHaulerRockChunksFresnelRamp.png"; public static string texTrimSheetDronesBrownDiffuse11 = "RoR2/DLC3/IronHauler/texTrimSheetDronesBrownDiffuse.tga"; public static string texTrimSheetDronesBrownEmissive5 = "RoR2/DLC3/IronHauler/texTrimSheetDronesBrownEmissive.png"; public static string texTrimSheetDronesBrownNormal24 = "RoR2/DLC3/IronHauler/texTrimSheetDronesBrownNormal.png"; public static string texTrimSheetDronesYellowDiffuse = "RoR2/DLC3/IronHauler/texTrimSheetDronesYellowDiffuse.tga"; public static string texTrimSheetDronesYellowEmissive = "RoR2/DLC3/IronHauler/texTrimSheetDronesYellowEmissive.png"; public static string texMinePodIcon = "RoR2/DLC3/MinePod/texMinePodIcon.png"; public static string texFlamethrowerIcon = "RoR2/DLC3/SolusAmalgamator/texFlamethrowerIcon.png"; public static string texMisslePodIcon = "RoR2/DLC3/SolusAmalgamator/texMisslePodIcon.png"; public static string texSolusAmalgamatorIcon = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorIcon.png"; public static string texSolusAmalgamatorBodyDiff = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorBodyDiff.tga"; public static string texSolusAmalgamatorBodyNorm = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorBodyNorm.png"; public static string texSolusAmalgamatorEmission = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorEmission.png"; public static string texSolusAmalgamatorEyeDiff = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorEyeDiff.png"; public static string texSolusAmalgamatorEyeRamp = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorEyeRamp.png"; public static string texSolusAmalgamatorHatchesNorm = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorHatchesNorm.png"; public static string texSolusAmalgamatorPedalsDiff = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorPedalsDiff.png"; public static string texSolusAmalgamatorPedalsSplat = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorPedalsSplat.png"; public static string textSolusAmalgamatorBrokenNorm = "RoR2/DLC3/SolusAmalgamator/textSolusAmalgamatorBrokenNorm.png"; public static string textSolusAmalgamatorEyeDiff = "RoR2/DLC3/SolusAmalgamator/textSolusAmalgamatorEyeDiff.tga"; public static string textureSolusWingRGBSplat = "RoR2/DLC3/SolusAmalgamator/textureSolusWingRGBSplat.png"; public static string texThrusterIcon = "RoR2/DLC3/SolusAmalgamator/texThrusterIcon.png"; public static string texRampSolusAmalgamator = "RoR2/DLC3/SolusAmalgamator/texRampSolusAmalgamator.png"; public static string texRampSolusBlueFlame = "RoR2/DLC3/SolusAmalgamator/texRampSolusBlueFlame.png"; public static string texRampSolusSmoothed = "RoR2/DLC3/SolusAmalgamator/texRampSolusSmoothed.png"; public static string texRampSolusSquares = "RoR2/DLC3/SolusAmalgamator/texRampSolusSquares.png"; public static string texRampTeslaCoil2 = "RoR2/DLC3/SolusAmalgamator/texRampTeslaCoil2.png"; public static string texRampTeslaCoil3 = "RoR2/DLC3/SolusAmalgamator/texRampTeslaCoil3.png"; public static string texRampThermitePurple = "RoR2/DLC3/SolusAmalgamator/texRampThermitePurple.png"; public static string texSolusAmalgamatorAOERing01 = "RoR2/DLC3/SolusAmalgamator/texSolusAmalgamatorAOERing_01.png"; public static string texSolusDeathRing = "RoR2/DLC3/SolusAmalgamator/texSolusDeathRing.png"; public static string texSolusEnergyParticle = "RoR2/DLC3/SolusAmalgamator/texSolusEnergyParticle.png"; public static string texSolusHeartIcon = "RoR2/DLC3/SolusHeart/texSolusHeartIcon.png"; public static string texSolusMineIcon = "RoR2/DLC3/SolusMine/texSolusMineIcon.png"; public static string texCrescentShape = "RoR2/DLC3/SolusMine/texCrescentShape.png"; public static string texCrescentShape02 = "RoR2/DLC3/SolusMine/texCrescentShape02.png"; public static string HaloEmissUpdate = "RoR2/DLC3/SolusWing/HaloEmissUpdate.png"; public static string HaloEmissUpdate2 = "RoR2/DLC3/SolusWing/HaloEmissUpdate2.png"; public static string PanelsRGBSplat = "RoR2/DLC3/SolusWing/PanelsRGBSplat.png"; public static string PanelsRGBSplat2 = "RoR2/DLC3/SolusWing/PanelsRGBSplat2.png"; public static string texSolusWingCablesNorm = "RoR2/DLC3/SolusWing/texSolusWingCables_Norm.png"; public static string texSolusWingEyeEmiss = "RoR2/DLC3/SolusWing/texSolusWingEyeEmiss.png"; public static string texSolusWingHalosEmis2 = "RoR2/DLC3/SolusWing/texSolusWingHalos_Emis2.png"; public static string texSolusWingHalosNorm = "RoR2/DLC3/SolusWing/texSolusWingHalos_Norm.png"; public static string texSolusWingHalosNorm2 = "RoR2/DLC3/SolusWing/texSolusWingHalos_Norm2.png"; public static string texSolusWingNorm = "RoR2/DLC3/SolusWing/texSolusWingNorm.png"; public static string texSolusWingPanelsEmiss = "RoR2/DLC3/SolusWing/texSolusWingPanelsEmiss.png"; public static string texSolusWingRamp = "RoR2/DLC3/SolusWing/texSolusWingRamp.png"; public static string texSolusWingRGBSplat = "RoR2/DLC3/SolusWing/texSolusWingRGBSplat.png"; public static string texSolusWingTileRustyMetal = "RoR2/DLC3/SolusWing/texSolusWingTileRustyMetal.png"; public static string texSolusWingVentsMask = "RoR2/DLC3/SolusWing/texSolusWingVentsMask.png"; public static string texTileRustySAMetalDark = "RoR2/DLC3/SolusWing/texTileRusty_SA_MetalDark.png"; public static string texTileRustySW = "RoR2/DLC3/SolusWing/texTileRusty_SW.png"; public static string texTileRustySW2 = "RoR2/DLC3/SolusWing/texTileRusty_SW2.png"; public static string textureSolusWingCablesDiff1 = "RoR2/DLC3/SolusWing/textureSolusWingCables_Diff 1.tga"; public static string textureSolusWingDiff1 = "RoR2/DLC3/SolusWing/textureSolusWingDiff 1.tga"; public static string textureSolusWingDiff2 = "RoR2/DLC3/SolusWing/textureSolusWingDiff 2.png"; public static string textureSolusWingEmissFullBand = "RoR2/DLC3/SolusWing/textureSolusWingEmiss_FullBand.png"; public static string textureSolusWingEmissFullBand2 = "RoR2/DLC3/SolusWing/textureSolusWingEmiss_FullBand2.png"; public static string textureSolusWingEyeEmiss = "RoR2/DLC3/SolusWing/textureSolusWingEyeEmiss.png"; public static string textureSolusWingEyeEmiss2 = "RoR2/DLC3/SolusWing/textureSolusWingEyeEmiss2.png"; public static string textureSolusWingHalosDiffUpdate = "RoR2/DLC3/SolusWing/textureSolusWingHalos_Diff_Update.tga"; public static string textureSolusWingHalosDiffUpdate2 = "RoR2/DLC3/SolusWing/textureSolusWingHalos_Diff_Update2.tga"; public static string textureSolusWingPanelsDiff = "RoR2/DLC3/SolusWing/textureSolusWingPanels_Diff.tga"; public static string textureSolusWingPanelsDiff2 = "RoR2/DLC3/SolusWing/textureSolusWingPanels_Diff2.tga"; public static string textureSolusWingPanelsNormUpdate = "RoR2/DLC3/SolusWing/textureSolusWingPanels_NormUpdate.png"; public static string textureSolusWingPanelsNormUpdate2 = "RoR2/DLC3/SolusWing/textureSolusWingPanels_NormUpdate2.png"; public static string texSolusWingIcon = "RoR2/DLC3/SolusWing/texSolusWingIcon.png"; public static string texRampSWSuppressionAoERim = "RoR2/DLC3/SolusWing/texRampSW_SuppressionAoERim.png"; public static string texSWShockwave = "RoR2/DLC3/SolusWing/texSW_Shockwave.png"; public static string texHeatSinkIcon = "RoR2/DLC3/SolusWingForm1/texHeatSinkIcon.png"; public static string texPodExtinguisherIcon = "RoR2/DLC3/SolusWingForm1/texPodExtinguisherIcon.png"; public static string texRampHeatsinkFresnel = "RoR2/DLC3/SolusWingForm1/texRampHeatsinkFresnel.png"; public static string texTankerAccelerantPuddleBodyIcon = "RoR2/DLC3/Tanker/texTankerAccelerantPuddleBodyIcon.png"; public static string texTankerIcon = "RoR2/DLC3/Tanker/texTankerIcon.png"; public static string texTankerLiquidNormal = "RoR2/DLC3/Tanker/texTankerLiquidNormal.png"; public static string texTrimSheetDronesBrownDiffuse14 = "RoR2/DLC3/Tanker/texTrimSheetDronesBrownDiffuse.tga"; public static string texTrimSheetDronesBrownEmissive14 = "RoR2/DLC3/Tanker/texTrimSheetDronesBrownEmissive.png"; public static string texTrimSheetDronesBrownNormal5 = "RoR2/DLC3/Tanker/texTrimSheetDronesBrownNormal.png"; public static string texOilRamp01a = "RoR2/DLC3/Tanker/texOilRamp_01a.png"; public static string texOilRamp02 = "RoR2/DLC3/Tanker/texOilRamp_02.png"; public static string texOilRamp02a = "RoR2/DLC3/Tanker/texOilRamp_02a.png"; public static string texOilRamp02b = "RoR2/DLC3/Tanker/texOilRamp_02b.png"; public static string texTankerIgniteFireMask = "RoR2/DLC3/Tanker/texTankerIgniteFireMask.png"; public static string texCompExchangeEyeNorm = "RoR2/DLC3/texCompExchangeEyeNorm.png"; public static string texCompExchangeGrid = "RoR2/DLC3/texCompExchangeGrid.png"; public static string texHalographic = "RoR2/DLC3/texHalographic.tga"; public static string texVendorCoreDiff = "RoR2/DLC3/texVendorCoreDiff.tga"; public static string texVendorEyeDiff = "RoR2/DLC3/texVendorEyeDiff.tga"; public static string texVendorHex = "RoR2/DLC3/texVendorHex.png"; public static string texVendorHexNorm = "RoR2/DLC3/texVendorHexNorm.png"; public static string texVendorLiqMask = "RoR2/DLC3/texVendorLiqMask.png"; public static string texVendorLiqNorm = "RoR2/DLC3/texVendorLiqNorm.png"; public static string texVendorShellDiff = "RoR2/DLC3/texVendorShellDiff.tga"; public static string texVendorShellEmiss = "RoR2/DLC3/texVendorShellEmiss.png"; public static string texVendorShellNorm = "RoR2/DLC3/texVendorShellNorm.png"; public static string texGroundCracksMaskFaded01 = "RoR2/DLC3/VultureHunter/texGroundCracksMaskFaded_01.png"; public static string texVultureHunterIcon = "RoR2/DLC3/VultureHunter/texVultureHunterIcon.png"; public static string TankSplatUpdate = "RoR2/DLC3/WorkerUnit/Tank_Splat_Update.png"; public static string texRampCrocoDiseaseDark20 = "RoR2/DLC3/WorkerUnit/texRampCrocoDiseaseDark.png"; public static string textWorkerUnitNorm = "RoR2/DLC3/WorkerUnit/textWorkerUnitNorm.png"; public static string texWorkerUnitDiff = "RoR2/DLC3/WorkerUnit/texWorkerUnitDiff.tga"; public static string texWorkerUnitEyeMask = "RoR2/DLC3/WorkerUnit/texWorkerUnitEyeMask.png"; public static string texWorkerUnitIcon = "RoR2/DLC3/WorkerUnit/texWorkerUnitIcon.png"; public static string texWorkerUnitRamp = "RoR2/DLC3/WorkerUnit/texWorkerUnitRamp.png"; public static string texBuffAccelerantIcon = "RoR2/DLC3/Buffs/texBuffAccelerantIcon.png"; public static string texBrittleIcon = "RoR2/DLC3/Buffs/texBrittleIcon.png"; public static string texElectrocutedDebuffIcon = "RoR2/DLC3/Buffs/texElectrocutedDebuffIcon.png"; public static string texElectrocutionerBuffIcon = "RoR2/DLC3/Buffs/texElectrocutionerBuffIcon.png"; public static string texInventoryDisableDebuffFrame = "RoR2/DLC3/Buffs/texInventoryDisableDebuffFrame.png"; public static string texInventoryDisableDebuffIcon = "RoR2/DLC3/Buffs/texInventoryDisableDebuffIcon.png"; public static string texInventoryDisableDebuffIcon2 = "RoR2/DLC3/Buffs/texInventoryDisableDebuffIcon2.png"; public static string texJumpDamageStrikeChargedIcon = "RoR2/DLC3/Buffs/texJumpDamageStrikeChargedIcon.png"; public static string texJumpDamageStrikeChargingIcon = "RoR2/DLC3/Buffs/texJumpDamageStrikeChargingIcon.png"; public static string texNanoBugIcon = "RoR2/DLC3/Buffs/texNanoBugIcon.png"; public static string texShieldTankDamageIcon = "RoR2/DLC3/Buffs/texShieldTankDamageIcon.png"; public static string texWeakpointDestroyedIcon = "RoR2/DLC3/Buffs/texWeakpointDestroyedIcon.png"; public static string texSureProcIcon = "RoR2/DLC3/Buffs/texSureProcIcon.png"; public static string texArmorBuffIcon = "RoR2/DLC3/Buffs/texArmorBuffIcon.png"; public static string texAttackSpeedBuffIcon = "RoR2/DLC3/Buffs/texAttackSpeedBuffIcon.png"; public static string texBuffScrapAttackSpeed = "RoR2/DLC3/Buffs/texBuffScrapAttackSpeed.png"; public static string texBuffScrapMoveSpeed = "RoR2/DLC3/Buffs/texBuffScrapMoveSpeed.png"; public static string texBuffScrapRegen = "RoR2/DLC3/Buffs/texBuffScrapRegen.png"; public static string texBuffScrapSkillCooldown = "RoR2/DLC3/Buffs/texBuffScrapSkillCooldown.png"; public static string texDamageBuffIcon = "RoR2/DLC3/Buffs/texDamageBuffIcon.png"; public static string texHealthRegenBuffIcon = "RoR2/DLC3/Buffs/texHealthRegenBuffIcon.png"; public static string texRampChipCorrupted = "RoR2/DLC3/texRampChipCorrupted.png"; public static string texRampLightningRed = "RoR2/DLC3/texRampLightningRed.png"; public static string texRampMineralCube = "RoR2/DLC3/texRampMineralCube.tga"; public static string texRampRoboBallDim = "RoR2/DLC3/texRampRoboBallDim.png"; public static string texRampSkyboxWebLightning = "RoR2/DLC3/texRampSkyboxWebLightning.png"; public static string ScrapperIconSmall = "RoR2/DLC3/ScrapperIconSmall.png"; public static string texBossWire = "RoR2/DLC3/texBossWire.png"; public static string texSkinWire = "RoR2/DLC3/texSkinWire.png"; public static string texSolusWireGridE = "RoR2/DLC3/texSolusWireGrid_E.tga"; public static string texSolusWireGridBoss = "RoR2/DLC3/texSolusWireGridBoss.tga"; public static string texWireTrail = "RoR2/DLC3/texWireTrail.png"; public static string texTrimSheetDronesBrown = "RoR2/DLC3/texTrimSheetDronesBrown.png"; public static string texTrimSheetDronesEmissive = "RoR2/DLC3/texTrimSheetDronesEmissive.png"; public static string texTrimSheetDronesNormal = "RoR2/DLC3/texTrimSheetDronesNormal.png"; public static string texTrimSheetMetalScifiBlueDiffuse = "RoR2/DLC3/texTrimSheetMetalScifiBlueDiffuse.tga"; public static string texTrimSheetMetalScifiBlueSplat = "RoR2/DLC3/texTrimSheetMetalScifiBlueSplat.tga"; public static string texTrimSheetMetalScifiEmissive = "RoR2/DLC3/texTrimSheetMetalScifiEmissive.tga"; public static string texTrimSheetMetalScifiNormal = "RoR2/DLC3/texTrimSheetMetalScifiNormal.tga"; public static string texFlashCutout01 = "RoR2/DLC3/texFlashCutout01.png"; public static string texFlashCutout01b = "RoR2/DLC3/texFlashCutout01b.png"; public static string Manifold12512x512 = "RoR2/DLC3/Manifold 12 - 512x512.png"; public static string Manifold4512x512 = "RoR2/DLC3/Manifold 4 - 512x512.png"; public static string texCenterMask01 = "RoR2/DLC3/texCenterMask_01.png"; public static string texCenterMask02 = "RoR2/DLC3/texCenterMask_02.png"; public static string texFireBeam = "RoR2/DLC3/texFireBeam.png"; public static string texRampCyberRed = "RoR2/DLC3/texRampCyberRed.png"; public static string texRampFire01 = "RoR2/DLC3/texRampFire01.png"; public static string texRampFire02 = "RoR2/DLC3/texRampFire02.png"; public static string texRampGrayGradient01 = "RoR2/DLC3/texRampGrayGradient_01.png"; public static string texRampGrayGradient01b = "RoR2/DLC3/texRampGrayGradient_01b.png"; public static string texRampHardwarePortalBack = "RoR2/DLC3/texRampHardwarePortalBack.png"; public static string texRampRoboBallReverse = "RoR2/DLC3/texRampRoboBallReverse.png"; public static string texRampSolusWebDeathGradient = "RoR2/DLC3/texRampSolusWebDeathGradient.png"; public static string texRampTechFloorpng = "RoR2/DLC3/texRampTechFloorpng.png"; public static string texRampTechpng = "RoR2/DLC3/texRampTechpng.png"; public static string Techno11512x512 = "RoR2/DLC3/Techno 11 - 512x512.png"; public static string Techno13512x512 = "RoR2/DLC3/Techno 13 - 512x512.png"; public static string Techno14512x512 = "RoR2/DLC3/Techno 14 - 512x512.png"; public static string Techno6512x512 = "RoR2/DLC3/Techno 6 - 512x512.png"; public static string texAlphaGradient6VerticalMask = "RoR2/DLC3/texAlphaGradient6VerticalMask.png"; public static string texCylinderGradientHorz = "RoR2/DLC3/texCylinderGradient_Horz.png"; public static string texCylinderGradientVert1 = "RoR2/DLC3/texCylinderGradient_Vert 1.png"; public static string texCylinderGradientVert = "RoR2/DLC3/texCylinderGradient_Vert.png"; public static string texCylinderGradient2Horz = "RoR2/DLC3/texCylinderGradient2_Horz.png"; public static string texGradientRL = "RoR2/DLC3/texGradient_RL.png"; public static string texGradientRL2 = "RoR2/DLC3/texGradient_RL2.png"; public static string Voronoi11512x512 = "RoR2/DLC3/Voronoi 11 - 512x512.png"; public static string Voronoi8512x512 = "RoR2/DLC3/Voronoi 8 - 512x512.png"; public static string texAffixCollectIcon = "RoR2/DLC3/Collective/texAffixCollectIcon.png"; public static string texEliteCollectiveDiffuse = "RoR2/DLC3/Collective/texEliteCollectiveDiffuse.png"; public static string texEliteCollectiveIcon = "RoR2/DLC3/Collective/texEliteCollectiveIcon.png"; public static string texEliteCollectiveNormal = "RoR2/DLC3/Collective/texEliteCollectiveNormal.png"; public static string texEliteCollectiveSharedIcon = "RoR2/DLC3/Collective/texEliteCollectiveSharedIcon.png"; public static string texEliteDiff = "RoR2/DLC3/Collective/texEliteDiff.tga"; public static string texEliteEmiss = "RoR2/DLC3/Collective/texEliteEmiss.png"; public static string texEliteIndicatorBorder01 = "RoR2/DLC3/Collective/texEliteIndicatorBorder01.png"; public static string texEliteIndicatorBorder02 = "RoR2/DLC3/Collective/texEliteIndicatorBorder02.png"; public static string texEliteIndicatorBorder03 = "RoR2/DLC3/Collective/texEliteIndicatorBorder03.png"; public static string texEliteIndicatorBorder04 = "RoR2/DLC3/Collective/texEliteIndicatorBorder04.png"; public static string texEliteIndicatorSoftSphere01 = "RoR2/DLC3/Collective/texEliteIndicatorSoftSphere01.png"; public static string texEliteIndicatorSphere01 = "RoR2/DLC3/Collective/texEliteIndicatorSphere01.png"; public static string texEliteTether02 = "RoR2/DLC3/Collective/texEliteTether02.png"; public static string texRampElite = "RoR2/DLC3/Collective/texRampElite.png"; public static string texRampElitePawn = "RoR2/DLC3/Collective/texRampElitePawn.png"; public static string texRampEliteSphere01 = "RoR2/DLC3/Collective/texRampEliteSphere01.png"; public static string texGroundEnemiesIcon = "RoR2/DLC3/GroundEnemies/texGroundEnemiesIcon.png"; public static string texRampGroundEnemies = "RoR2/DLC3/GroundEnemies/texRampGroundEnemies.png"; public static string texTrimSheetAlien2Diffuse = "RoR2/DLC3/GroundEnemies/texTrimSheetAlien2Diffuse.png"; public static string MDeusExMachinaBasecolor = "RoR2/DLC3/Parry/M_DeusExMachina_Base_color.png"; public static string MDeusExMachinaEmissive = "RoR2/DLC3/Parry/M_DeusExMachina_Emissive.png"; public static string MDeusExMachinaHeight = "RoR2/DLC3/Parry/M_DeusExMachina_Height.png"; public static string MDeusExMachinaMixedAO = "RoR2/DLC3/Parry/M_DeusExMachina_Mixed_AO.png"; public static string MDeusExMachinaNormalOpenGL = "RoR2/DLC3/Parry/M_DeusExMachina_Normal_OpenGL.png"; public static string MDeusExMachinaRoughness = "RoR2/DLC3/Parry/M_DeusExMachina_Roughness.png"; public static string texParryDiffuse = "RoR2/DLC3/Parry/texParryDiffuse.png"; public static string texParryIcon = "RoR2/DLC3/Parry/texParryIcon.png"; public static string texParryingIcon = "RoR2/DLC3/Parry/texParryingIcon.png"; public static string texAccessCodesFailIcon = "RoR2/DLC3/AccessCodesNode/texAccessCodesFailIcon.png"; public static string texAccessCodesNodeC = "RoR2/DLC3/AccessCodesNode/texAccessCodesNode_C.tga"; public static string texAccessCodesNodeE = "RoR2/DLC3/AccessCodesNode/texAccessCodesNode_E.tga"; public static string texAccessCodesNodeN = "RoR2/DLC3/AccessCodesNode/texAccessCodesNode_N.png"; public static string texAccessCodesNodeAlphaC = "RoR2/DLC3/AccessCodesNode/texAccessCodesNodeAlpha_C.tga"; public static string texAccessCodesNodeRingC = "RoR2/DLC3/AccessCodesNode/texAccessCodesNodeRing_C.tga"; public static string texAccessCodesPattern01 = "RoR2/DLC3/AccessCodesNode/texAccessCodesPattern01.png"; public static string texAccessCodesPattern02 = "RoR2/DLC3/AccessCodesNode/texAccessCodesPattern02.png"; public static string texAccessCodesPattern02N = "RoR2/DLC3/AccessCodesNode/texAccessCodesPattern02_N.png"; public static string texAccessCodesPatternBlur = "RoR2/DLC3/AccessCodesNode/texAccessCodesPatternBlur.png"; public static string texAccessCodesPatternMask01 = "RoR2/DLC3/AccessCodesNode/texAccessCodesPatternMask01.png"; public static string texRampAccessCodeFail = "RoR2/DLC3/AccessCodesNode/texRampAccessCodeFail.png"; public static string texCiruitMask = "RoR2/DLC3/CoinSlot/texCiruitMask.png"; public static string texCoinSlotDA = "RoR2/DLC3/CoinSlot/texCoinSlot_DA.tga"; public static string texCoinSlotE = "RoR2/DLC3/CoinSlot/texCoinSlot_E.png"; public static string texCoinSlotN = "RoR2/DLC3/CoinSlot/texCoinSlot_N.png"; public static string texCompExchangeGridE = "RoR2/DLC3/CoinSlot/texCompExchangeGrid_E.tga"; public static string texCompExchangeGridFlow = "RoR2/DLC3/CoinSlot/texCompExchangeGrid_Flow.png"; public static string texCompExchangeLinesE = "RoR2/DLC3/CoinSlot/texCompExchangeLines_E.png"; public static string texRampCompExchangeCubes = "RoR2/DLC3/CoinSlot/texRampCompExchangeCubes.png"; public static string texRippleRings = "RoR2/DLC3/CoinSlot/texRippleRings.png"; public static string texDroneAssemblyStationDiff = "RoR2/DLC3/DroneAssemblyStation/texDroneAssemblyStationDiff.tga"; public static string texDroneAssemblyStationEmissive = "RoR2/DLC3/DroneAssemblyStation/texDroneAssemblyStationEmissive.png"; public static string texDroneAssemblyStationNormal = "RoR2/DLC3/DroneAssemblyStation/texDroneAssemblyStationNormal.png"; public static string texDroneUpgradeIcon = "RoR2/DLC3/DroneAssemblyStation/texDroneUpgradeIcon.png"; public static string texDroneAssemblyLightFlare = "RoR2/DLC3/DroneAssemblyStation/texDroneAssemblyLightFlare.png"; public static string texDroneScrapperDA = "RoR2/DLC3/DroneScrapper/texDroneScrapper_DA.png"; public static string texDroneScrapperE = "RoR2/DLC3/DroneScrapper/texDroneScrapper_E.png"; public static string texDroneScrapperN = "RoR2/DLC3/DroneScrapper/texDroneScrapper_N.png"; public static string texDrone1HoloNormal = "RoR2/DLC3/texDrone1HoloNormal.png"; public static string texHoloEmission = "RoR2/DLC3/texHoloEmission.png"; public static string texRampHolo = "RoR2/DLC3/texRampHolo.png"; public static string texDroneVendorDA = "RoR2/DLC3/texDroneVendor_DA.tga"; public static string texDroneVendorE = "RoR2/DLC3/texDroneVendor_E.tga"; public static string texDroneVendorN = "RoR2/DLC3/texDroneVendor_N.tga"; public static string texDroneVendorRayGradient = "RoR2/DLC3/texDroneVendorRayGradient.png"; public static string texTileDVMetal = "RoR2/DLC3/texTile_DVMetal.tif"; public static string texMealPrepDiffuse = "RoR2/DLC3/MealPrep/texMealPrepDiffuse.tga"; public static string texMealPrepEmiss = "RoR2/DLC3/MealPrep/texMealPrepEmiss.tga"; public static string texMealPrepIcon = "RoR2/DLC3/MealPrep/texMealPrepIcon.png"; public static string texCELinesC2 = "RoR2/DLC3/texCELines_C2.png"; public static string texHexPattern1 = "RoR2/DLC3/PowerOrbPedestal/texHexPattern1.png"; public static string texHexPattern2 = "RoR2/DLC3/PowerOrbPedestal/texHexPattern2.png"; public static string texMetalVault01DA = "RoR2/DLC3/PowerOrbPedestal/texMetalVault01_DA.png"; public static string texMetalVault05DA = "RoR2/DLC3/PowerOrbPedestal/texMetalVault05_DA.png"; public static string texMetalVault05N = "RoR2/DLC3/PowerOrbPedestal/texMetalVault05_N.png"; public static string texOrbsDiff1 = "RoR2/DLC3/PowerOrbPedestal/texOrbsDiff 1.tga"; public static string texOrbsDiff = "RoR2/DLC3/PowerOrbPedestal/texOrbsDiff.tga"; public static string texOrbsMaskEmiss = "RoR2/DLC3/PowerOrbPedestal/texOrbsMaskEmiss.png"; public static string texRampPowerOrb = "RoR2/DLC3/PowerOrbPedestal/texRampPowerOrb.png"; public static string texVendorShellNrm = "RoR2/DLC3/PowerOrbPedestal/texVendorShellNrm.png"; public static string texPowerCubeIcon = "RoR2/DLC3/PowerOrbPedestal/texPowerCubeIcon.png"; public static string texPowerOrbIcon = "RoR2/DLC3/PowerOrbPedestal/texPowerOrbIcon.png"; public static string texPowerPyramidIcon = "RoR2/DLC3/PowerOrbPedestal/texPowerPyramidIcon.png"; public static string texLensFlareMask3 = "RoR2/DLC3/PowerOrbShieldTank/texLensFlareMask3.png"; public static string texRampVendorShrineCore = "RoR2/DLC3/SolusVendorShrine/texRampVendorShrineCore.png"; public static string textempitemdistDA = "RoR2/DLC3/TemporaryItemsDistributor/textempitemdist_DA.png"; public static string textempitemdistE = "RoR2/DLC3/TemporaryItemsDistributor/textempitemdist_E.png"; public static string textempitemdistF = "RoR2/DLC3/TemporaryItemsDistributor/textempitemdist_F.png"; public static string textempitemdistN = "RoR2/DLC3/TemporaryItemsDistributor/textempitemdist_N.png"; public static string texBarrierOnCooldownDiffuse = "RoR2/DLC3/Items/BarrierOnCooldown/texBarrierOnCooldownDiffuse.png"; public static string texBarrierOnCooldownIcon = "RoR2/DLC3/Items/BarrierOnCooldown/texBarrierOnCooldownIcon.png"; public static string texQuickFixDiffuse = "RoR2/DLC3/Items/BonusHealthBoost/texQuickFixDiffuse.png"; public static string texQuickFixIcon = "RoR2/DLC3/Items/BonusHealthBoost/texQuickFixIcon.png"; public static string DefaultMaterialBasecolor = "RoR2/DLC3/Items/CookedSteak/DefaultMaterial_Base_color.png"; public static string DefaultMaterialHeight = "RoR2/DLC3/Items/CookedSteak/DefaultMaterial_Height.png"; public static string DefaultMaterialMetallic = "RoR2/DLC3/Items/CookedSteak/DefaultMaterial_Metallic.png"; public static string DefaultMaterialMetallic2 = "RoR2/DLC3/Items/CookedSteak/DefaultMaterial_Metallic2.png"; public static string DefaultMaterialMixedAO = "RoR2/DLC3/Items/CookedSteak/DefaultMaterial_Mixed_AO.png"; public static string DefaultMaterialNormal = "RoR2/DLC3/Items/CookedSteak/DefaultMaterial_Normal.png"; public static string DefaultMaterialNormalOpenGL = "RoR2/DLC3/Items/CookedSteak/DefaultMaterial_Normal_OpenGL.png"; public static string DefaultMaterialRoughness = "RoR2/DLC3/Items/CookedSteak/DefaultMaterial_Roughness.png"; public static string texSearedSteakDiffuse = "RoR2/DLC3/Items/CookedSteak/texSearedSteakDiffuse.png"; public static string texSearedSteakIcon = "RoR2/DLC3/Items/CookedSteak/texSearedSteakIcon.png"; public static string texCookedSteakIcon = "RoR2/DLC3/Items/CookedSteak/texCookedSteakIcon.png"; public static string Bootsnormal = "RoR2/DLC3/Items/CritAtLowerElevation/Boots_normal.png"; public static string MHikersBootsBasecolor = "RoR2/DLC3/Items/CritAtLowerElevation/M_HikersBoots_Base_color.png"; public static string MHikersBootsHeight = "RoR2/DLC3/Items/CritAtLowerElevation/M_HikersBoots_Height.png"; public static string MHikersBootsMixedAO = "RoR2/DLC3/Items/CritAtLowerElevation/M_HikersBoots_Mixed_AO.png"; public static string MHikersBootsNormal = "RoR2/DLC3/Items/CritAtLowerElevation/M_HikersBoots_Normal.png"; public static string MHikersBootsNormalOpenGL = "RoR2/DLC3/Items/CritAtLowerElevation/M_HikersBoots_Normal_OpenGL.png"; public static string texCritAtLowerElevationDiffuse = "RoR2/DLC3/Items/CritAtLowerElevation/texCritAtLowerElevationDiffuse.png"; public static string texCritAtLowerElevationIcon = "RoR2/DLC3/Items/CritAtLowerElevation/texCritAtLowerElevationIcon.png"; public static string texCritChanceAndDamageIcon = "RoR2/DLC3/Items/CritAtLowerElevation/texCritChanceAndDamageIcon.png"; public static string texDestructibleSpawnerIcon = "RoR2/DLC3/Items/DestructibleSpawnerItem/texDestructibleSpawnerIcon.png"; public static string texDestructibleSpawnerDA = "RoR2/DLC3/Items/DronesDropDynamite/texDestructibleSpawner_DA.png"; public static string texDestructibleSpawnerN = "RoR2/DLC3/Items/DronesDropDynamite/texDestructibleSpawner_N.png"; public static string texDuplicatorDiffuse = "RoR2/DLC3/Items/Duplicator/texDuplicatorDiffuse.png"; public static string texDuplicatorIcon = "RoR2/DLC3/Items/Duplicator/texDuplicatorIcon.png"; public static string texExtraEquipmentDiffuse = "RoR2/DLC3/Items/ExtraEquipment/texExtraEquipmentDiffuse.png"; public static string texExtraEquipmentEmessive = "RoR2/DLC3/Items/ExtraEquipment/texExtraEquipmentEmessive.png"; public static string texExtraEquipmentIcon = "RoR2/DLC3/Items/ExtraEquipment/texExtraEquipmentIcon.png"; public static string texExtraEquipmentNormal = "RoR2/DLC3/Items/ExtraEquipment/texExtraEquipmentNormal.png"; public static string texFaradaySpursDiffuse = "RoR2/DLC3/Items/JumpDamageStrike/texFaradaySpursDiffuse.png"; public static string texJumpDamageStrikeDA = "RoR2/DLC3/Items/JumpDamageStrike/texJumpDamageStrike_DA.tga"; public static string texJumpDamageStrikeN = "RoR2/DLC3/Items/JumpDamageStrike/texJumpDamageStrike_N.tga"; public static string texJumpDamageStrikeIcon = "RoR2/DLC3/Items/JumpDamageStrike/texJumpDamageStrikeIcon.png"; public static string texJunkIcon = "RoR2/DLC3/Items/texJunkIcon.png"; public static string texPowerOrbIcon15 = "RoR2/DLC3/Items/MasterBattery/texPowerOrbIcon.png"; public static string texPowerShapeDiffuse = "RoR2/DLC3/Items/MasterBattery/texPowerShapeDiffuse.tga"; public static string texPowerShapeMetalSpecular = "RoR2/DLC3/Items/MasterBattery/texPowerShapeMetalSpecular.tif"; public static string texPowerShapeNormal = "RoR2/DLC3/Items/MasterBattery/texPowerShapeNormal.png"; public static string texPowerShapeRustyRGB = "RoR2/DLC3/Items/MasterBattery/texPowerShapeRustyRGB.tif"; public static string texMasterCoreIcon = "RoR2/DLC3/Items/MasterCore/texMasterCoreIcon.png"; public static string texPowerOrbIcon4 = "RoR2/DLC3/Items/MasterCore/texPowerOrbIcon.png"; public static string texPowerShapeDiffuse10 = "RoR2/DLC3/Items/MasterCore/texPowerShapeDiffuse.tga"; public static string texPowerShapeMetalSpecular15 = "RoR2/DLC3/Items/MasterCore/texPowerShapeMetalSpecular.tif"; public static string texPowerShapeNormal34 = "RoR2/DLC3/Items/MasterCore/texPowerShapeNormal.png"; public static string texPowerShapeRustyRGB11 = "RoR2/DLC3/Items/MasterCore/texPowerShapeRustyRGB.tif"; public static string texRampMoneyLoan = "RoR2/DLC3/Items/MoneyLoan/texRampMoneyLoan.png"; public static string texPhysicsProjectileDiffuse = "RoR2/DLC3/Items/PhysicsProjectile/texPhysicsProjectileDiffuse.png"; public static string texPhysicsProjectileIcon = "RoR2/DLC3/Items/PhysicsProjectile/texPhysicsProjectileIcon.png"; public static string texPowerCoreBeaconRamp = "RoR2/DLC3/Items/PowerCube/texPowerCoreBeaconRamp.png"; public static string texPowerCubeIcon22 = "RoR2/DLC3/Items/PowerCube/texPowerCubeIcon.png"; public static string texPowerPyramidIcon1 = "RoR2/DLC3/Items/PowerPyramid/texPowerPyramidIcon.png"; public static string texSharedSufferingDiffuse = "RoR2/DLC3/Items/SharedSuffering/texSharedSufferingDiffuse.png"; public static string texSharedSufferingEmission = "RoR2/DLC3/Items/SharedSuffering/texSharedSufferingEmission.png"; public static string texSharedSufferingNormal = "RoR2/DLC3/Items/SharedSuffering/texSharedSufferingNormal.png"; public static string rampSharedSuffering = "RoR2/DLC3/Items/SharedSuffering/rampSharedSuffering.png"; public static string rampSharedSufferingOffset = "RoR2/DLC3/Items/SharedSuffering/rampSharedSufferingOffset.png"; public static string texSharedSufferingAchievementIcon = "RoR2/DLC3/Items/SharedSuffering/texSharedSufferingAchievementIcon.png"; public static string texSharedSufferingDebuffIcon = "RoR2/DLC3/Items/SharedSuffering/texSharedSufferingDebuffIcon.png"; public static string texSharedSufferingIcon = "RoR2/DLC3/Items/SharedSuffering/texSharedSufferingIcon.png"; public static string texSharedSufferingStockEmptyIcon = "RoR2/DLC3/Items/SharedSuffering/texSharedSufferingStockEmptyIcon.png"; public static string texSharedSufferingStockIcon = "RoR2/DLC3/Items/SharedSuffering/texSharedSufferingStockIcon.png"; public static string matShieldBoosterOpacity = "RoR2/DLC3/Items/ShieldBooster/matShieldBoosterOpacity.png"; public static string texShieldBoosterDiffuse = "RoR2/DLC3/Items/ShieldBooster/texShieldBoosterDiffuse.png"; public static string texShieldBoosterIcon = "RoR2/DLC3/Items/ShieldBooster/texShieldBoosterIcon.png"; public static string texDroneShockDamageDiffuse = "RoR2/DLC3/Items/ShockDamageAura/texDroneShockDamageDiffuse.tga"; public static string texDroneShockDamageIcon = "RoR2/DLC3/Items/ShockDamageAura/texDroneShockDamageIcon.png"; public static string texShockDamageAuraIcon = "RoR2/DLC3/Items/ShockDamageAura/texShockDamageAuraIcon.png"; public static string matDroneShockDamageBasecolor = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamage_Base_color.png"; public static string matDroneShockDamageEmissive = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamage_Emissive.png"; public static string matDroneShockDamageScattering = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamage_Scattering.png"; public static string texSpeedOnPickup = "RoR2/DLC3/Items/SpeedOnPickup/texSpeedOnPickup.png"; public static string texSpeedOnPickupBuffIcon = "RoR2/DLC3/Items/SpeedOnPickup/texSpeedOnPickupBuffIcon.png"; public static string texSpeedOnPickupIcon = "RoR2/DLC3/Items/SpeedOnPickup/texSpeedOnPickupIcon.png"; public static string MHeartyStewBasecolor = "RoR2/DLC3/Items/Stew/M_HeartyStew_Base_color.png"; public static string MHeartyStewHeight = "RoR2/DLC3/Items/Stew/M_HeartyStew_Height.png"; public static string MHeartyStewMixedAO = "RoR2/DLC3/Items/Stew/M_HeartyStew_Mixed_AO.png"; public static string MHeartyStewNormal = "RoR2/DLC3/Items/Stew/M_HeartyStew_Normal.png"; public static string MHeartyStewNormalOpenGL = "RoR2/DLC3/Items/Stew/M_HeartyStew_Normal_OpenGL.png"; public static string MHeartyStewRoughness = "RoR2/DLC3/Items/Stew/M_HeartyStew_Roughness.png"; public static string texStewDiffuse = "RoR2/DLC3/Items/Stew/texStewDiffuse.png"; public static string texStewIcon = "RoR2/DLC3/Items/Stew/texStewIcon.png"; public static string texTransferDebuffOnHitDiffuse = "RoR2/DLC3/Items/TransferDebuffOnHit/texTransferDebuffOnHitDiffuse.png"; public static string texTransferDebuffOnHitDiffuseRamp = "RoR2/DLC3/Items/TransferDebuffOnHit/texTransferDebuffOnHitDiffuseRamp.png"; public static string texTransferDebuffOnHitIcon = "RoR2/DLC3/Items/TransferDebuffOnHit/texTransferDebuffOnHitIcon.png"; public static string texTransferDebuffOnHitDebuffIcon = "RoR2/DLC3/Items/TransferDebuffOnHit/texTransferDebuffOnHitDebuffIcon.png"; public static string texUltimateMealDiffuse = "RoR2/DLC3/Items/UltimateMeal/texUltimateMealDiffuse.png"; public static string texUltimateMealIcon = "RoR2/DLC3/Items/UltimateMeal/texUltimateMealIcon.png"; public static string texUltimateMealBoostIcon = "RoR2/DLC3/Items/UltimateMeal/texUltimateMealBoostIcon.png"; public static string texWyrmOnHitDisplayDiffuse = "RoR2/DLC3/Items/WyrmOnHit/texWyrmOnHitDisplayDiffuse.png"; public static string texWyrmOnHitDisplayEmissive = "RoR2/DLC3/Items/WyrmOnHit/texWyrmOnHitDisplayEmissive.png"; public static string texWyrmOnHitDisplayIcon = "RoR2/DLC3/Items/WyrmOnHit/texWyrmOnHitDisplayIcon.png"; public static string texWyrmOnHitPickupDiffuse = "RoR2/DLC3/Items/WyrmOnHit/texWyrmOnHitPickupDiffuse.png"; public static string texWyrmOnHitIcon = "RoR2/DLC3/Items/WyrmOnHit/texWyrmOnHitIcon.png"; public static string texCECloudMaskC = "RoR2/DLC3/computationalexchange/texCECloudMask_C.tga"; public static string texCECloudMaskLargeC = "RoR2/DLC3/computationalexchange/texCECloudMaskLarge_C.tga"; public static string texCEFlowerC = "RoR2/DLC3/computationalexchange/texCEFlower_C.tga"; public static string texCELineCloudC = "RoR2/DLC3/computationalexchange/texCELineCloud_C.tga"; public static string texCELineCloudCBW = "RoR2/DLC3/computationalexchange/texCELineCloud_C_BW.tga"; public static string texCELineCloudE = "RoR2/DLC3/computationalexchange/texCELineCloud_E.tga"; public static string texCELinesC = "RoR2/DLC3/computationalexchange/texCELines_C.tga"; public static string texCELinesN = "RoR2/DLC3/computationalexchange/texCELines_N.png"; public static string texCELinesCleanC = "RoR2/DLC3/computationalexchange/texCELinesClean_C.tga"; public static string texCELinesGlowC = "RoR2/DLC3/computationalexchange/texCELinesGlow_C.tga"; public static string texCELinesSimpleC = "RoR2/DLC3/computationalexchange/texCELinesSimple_C.tga"; public static string texCERampBlue = "RoR2/DLC3/computationalexchange/texCERampBlue.png"; public static string texCERampGreen = "RoR2/DLC3/computationalexchange/texCERampGreen.png"; public static string texCERampMagenta = "RoR2/DLC3/computationalexchange/texCERampMagenta.png"; public static string texCESquareC = "RoR2/DLC3/computationalexchange/texCESquare_C.tga"; public static string texCESquareSmallC = "RoR2/DLC3/computationalexchange/texCESquareSmall_C.tga"; public static string texCEWalkwayC = "RoR2/DLC3/computationalexchange/texCEWalkway_C.tga"; public static string texCEWalkwayE = "RoR2/DLC3/computationalexchange/texCEWalkway_E.tga"; public static string texCEWhiteBoxC = "RoR2/DLC3/computationalexchange/texCEWhiteBox_C.tga"; public static string texComputationalExchangePreview = "RoR2/DLC3/computationalexchange/texComputationalExchangePreview.png"; public static string texConduitLightningMask = "RoR2/DLC3/conduitcanyon/texConduitLightningMask.png"; public static string texCCCablesD = "RoR2/DLC3/conduitcanyon/texCCCables_D.tga"; public static string texCCCablesE = "RoR2/DLC3/conduitcanyon/texCCCables_E.png"; public static string texCCCablesN = "RoR2/DLC3/conduitcanyon/texCCCables_N.png"; public static string texCCcanyon = "RoR2/DLC3/conduitcanyon/texCCcanyon.png"; public static string texCCcanyonNormal2 = "RoR2/DLC3/conduitcanyon/texCCcanyonNormal2.png"; public static string texCCConduitMoss = "RoR2/DLC3/conduitcanyon/texCCConduitMoss.tga"; public static string texCCConduitMossswitch = "RoR2/DLC3/conduitcanyon/texCCConduitMoss_switch.tga"; public static string texCCConduitRamp = "RoR2/DLC3/conduitcanyon/texCCConduitRamp.png"; public static string texCCFoliageA = "RoR2/DLC3/conduitcanyon/texCCFoliageA.tga"; public static string texCCFoliageAn = "RoR2/DLC3/conduitcanyon/texCCFoliageA_n.tga"; public static string texCCground = "RoR2/DLC3/conduitcanyon/texCCground.png"; public static string texCCGround = "RoR2/DLC3/conduitcanyon/texCCGround.tga"; public static string texCCgroundAlpha = "RoR2/DLC3/conduitcanyon/texCCground_Alpha.tga"; public static string texCCground2 = "RoR2/DLC3/conduitcanyon/texCCground2.png"; public static string texCCImpostorA = "RoR2/DLC3/conduitcanyon/texCCImpostorA.tga"; public static string texCCmetalDA = "RoR2/DLC3/conduitcanyon/texCCmetal_DA.png"; public static string texCCmetalN = "RoR2/DLC3/conduitcanyon/texCCmetal_N.tga"; public static string texCCmetalEmissive2 = "RoR2/DLC3/conduitcanyon/texCCmetalEmissive2.tga"; public static string texCCRustyMetal = "RoR2/DLC3/conduitcanyon/texCCRustyMetal.tga"; public static string texCCTerrainWallC = "RoR2/DLC3/conduitcanyon/texCCTerrainWall_C.tga"; public static string texCCTerrainWallCV2 = "RoR2/DLC3/conduitcanyon/texCCTerrainWall_C_V2.tga"; public static string texCCTreeFoliageD = "RoR2/DLC3/conduitcanyon/texCCTreeFoliage_D.tga"; public static string texCCTreeRamp = "RoR2/DLC3/conduitcanyon/texCCTreeRamp.png"; public static string texCCTreeRamp2 = "RoR2/DLC3/conduitcanyon/texCCTreeRamp2.png"; public static string texCCTreeRamp3 = "RoR2/DLC3/conduitcanyon/texCCTreeRamp3.png"; public static string texCCTreeRamp4 = "RoR2/DLC3/conduitcanyon/texCCTreeRamp4.png"; public static string texRampClouds = "RoR2/DLC3/conduitcanyon/texRampClouds.png"; public static string txCCFoliageAE = "RoR2/DLC3/conduitcanyon/txCCFoliageA_E.png"; public static string texConduitCanyonPreview = "RoR2/DLC3/conduitcanyon/texConduitCanyonPreview.png"; public static string texcactiDA = "RoR2/DLC3/ironalluvium/texcacti_DA.tga"; public static string texcactiEmissive = "RoR2/DLC3/ironalluvium/texcacti_Emissive.png"; public static string texcactiN = "RoR2/DLC3/ironalluvium/texcacti_N.png"; public static string texDrillMachineDA = "RoR2/DLC3/ironalluvium/texDrillMachine_DA.tga"; public static string texDrillMachineE = "RoR2/DLC3/ironalluvium/texDrillMachine_E.png"; public static string texDrillMachineN = "RoR2/DLC3/ironalluvium/texDrillMachine_N.png"; public static string texDrillMachineDioramaDA = "RoR2/DLC3/ironalluvium/texDrillMachineDiorama_DA.tga"; public static string texIAConcreteTopDiffuse = "RoR2/DLC3/ironalluvium/texIAConcreteTopDiffuse.tga"; public static string texIADustTopDA = "RoR2/DLC3/ironalluvium/texIADustTop_DA.tga"; public static string texIAGeoCloud = "RoR2/DLC3/ironalluvium/texIAGeoCloud.png"; public static string texIAGroundRed = "RoR2/DLC3/ironalluvium/texIAGroundRed.png"; public static string texIAIRON = "RoR2/DLC3/ironalluvium/texIAIRON.tga"; public static string texIALandscapeWallDiffuse = "RoR2/DLC3/ironalluvium/texIALandscapeWallDiffuse.png"; public static string texIALandscapeWallDiffuse2 = "RoR2/DLC3/ironalluvium/texIALandscapeWallDiffuse2.png"; public static string texIAOreMask = "RoR2/DLC3/ironalluvium/texIAOreMask.png"; public static string texIAOreRamp = "RoR2/DLC3/ironalluvium/texIAOreRamp.png"; public static string texIAPipesDiffuse = "RoR2/DLC3/ironalluvium/texIAPipesDiffuse.tga"; public static string texIAPipesNormal = "RoR2/DLC3/ironalluvium/texIAPipesNormal.tga"; public static string texIASandDiffuse = "RoR2/DLC3/ironalluvium/texIASandDiffuse.tga"; public static string texTrimSheetIAFloraDiffuse = "RoR2/DLC3/ironalluvium/texTrimSheetIAFloraDiffuse.tga"; public static string texIronAlluviumPreview = "RoR2/DLC3/ironalluvium/texIronAlluviumPreview.png"; public static string texDrillMachineE2 = "RoR2/DLC3/ironalluvium2/texDrillMachine_E2.png"; public static string texIA2AurelioniteGeodeDiffuse = "RoR2/DLC3/ironalluvium2/texIA2AurelioniteGeodeDiffuse.tga"; public static string texIA2AurelioniteGeodeMask = "RoR2/DLC3/ironalluvium2/texIA2AurelioniteGeodeMask.png"; public static string texIA2PlantsDA = "RoR2/DLC3/ironalluvium2/texIA2Plants_DA.png"; public static string texIA2PlantsE = "RoR2/DLC3/ironalluvium2/texIA2Plants_E.png"; public static string texIA2PlantsN = "RoR2/DLC3/ironalluvium2/texIA2Plants_N.png"; public static string texTrimSheetIAFloraDiffuse2 = "RoR2/DLC3/ironalluvium2/texTrimSheetIAFloraDiffuse2.tga"; public static string texIronAlluvium2Preview = "RoR2/DLC3/ironalluvium2/texIronAlluvium2Preview.png"; public static string NestFoliage01Color = "RoR2/DLC3/nest/Nest_Foliage01_Color.tga"; public static string NestFoliage02Color = "RoR2/DLC3/nest/Nest_Foliage02_Color.tga"; public static string NestFoliage03Color = "RoR2/DLC3/nest/Nest_Foliage03_Color.tga"; public static string NestFoliage04Color = "RoR2/DLC3/nest/Nest_Foliage04_Color.tga"; public static string NestFoliage04Emissive = "RoR2/DLC3/nest/Nest_Foliage04_Emissive.tga"; public static string NestFoliage05Color = "RoR2/DLC3/nest/Nest_Foliage05_Color.tga"; public static string NestFoliage06Color = "RoR2/DLC3/nest/Nest_Foliage06_Color.tga"; public static string Nestvine01Color = "RoR2/DLC3/nest/Nest_vine01_Color.tga"; public static string Nestvine01Emissive = "RoR2/DLC3/nest/Nest_vine01_Emissive.tga"; public static string texCloudOrganic4 = "RoR2/DLC3/nest/texCloudOrganic4.png"; public static string texIALandscapeWallDiffuse1 = "RoR2/DLC3/nest/texIALandscapeWallDiffuse 1.png"; public static string texNestCloud = "RoR2/DLC3/nest/texNestCloud.png"; public static string texNestDarkRockAC = "RoR2/DLC3/nest/texNestDarkRockA_C.tga"; public static string texNestfoliageColor = "RoR2/DLC3/nest/texNestfoliageColor.png"; public static string texNestfoliageEmissive = "RoR2/DLC3/nest/texNestfoliageEmissive.png"; public static string texNestRock02 = "RoR2/DLC3/nest/texNestRock02.png"; public static string texNestTreeBark01 = "RoR2/DLC3/nest/texNestTreeBark01.tga"; public static string texNestTreeBarknormal = "RoR2/DLC3/nest/texNestTreeBarknormal.tga"; public static string texPPFrost = "RoR2/DLC3/nest/texPPFrost.tga"; public static string texPPGround = "RoR2/DLC3/nest/texPPGround.png"; public static string texPPGround8 = "RoR2/DLC3/nest/texPPGround.tga"; public static string texPPIceCracks = "RoR2/DLC3/nest/texPPIceCracks.tga"; public static string texPPPipesDiffuse = "RoR2/DLC3/nest/texPPPipesDiffuse.tga"; public static string texPPPipesEmissive = "RoR2/DLC3/nest/texPPPipesEmissive.tga"; public static string texPPRockSide = "RoR2/DLC3/nest/texPPRockSide.png"; public static string texPPRust = "RoR2/DLC3/nest/texPPRust.tga"; public static string texPPSnow = "RoR2/DLC3/nest/texPPSnow.tga"; public static string texPPSnowDirty = "RoR2/DLC3/nest/texPPSnowDirty.tga"; public static string texPPSolusCoreDA = "RoR2/DLC3/nest/texPPSolusCore_DA.tga"; public static string texPPSolusCoreE = "RoR2/DLC3/nest/texPPSolusCore_E.png"; public static string texPPSolusCoreN = "RoR2/DLC3/nest/texPPSolusCore_N.png"; public static string texPPSolusMoss = "RoR2/DLC3/nest/texPPSolusMoss.tga"; public static string texPPTrimBasecolor = "RoR2/DLC3/nest/texPPTrimBasecolor.tga"; public static string texPPTrimNormal = "RoR2/DLC3/nest/texPPTrimNormal.tga"; public static string texPPTrimSheetAlien1Diffuse = "RoR2/DLC3/nest/texPPTrimSheetAlien1Diffuse.png"; public static string texPPTrimSheetAlien1Height = "RoR2/DLC3/nest/texPPTrimSheetAlien1Height.png"; public static string texRampAntler34 = "RoR2/DLC3/nest/texRampAntler.png"; public static string texSolusPanelsDA = "RoR2/DLC3/nest/texSolusPanels_DA.tga"; public static string texSolusPanelsN = "RoR2/DLC3/nest/texSolusPanels_N.png"; public static string texNestPreview = "RoR2/DLC3/nest/texNestPreview.png"; public static string RCRampRCSunGlare = "RoR2/DLC3/repurposedcrater/RCRampRCSunGlare.png"; public static string RCRampRCwaterfall = "RoR2/DLC3/repurposedcrater/RCRampRCwaterfall.png"; public static string RCRampTerrarium03 = "RoR2/DLC3/repurposedcrater/RCRampTerrarium03.png"; public static string RCRampTerrariumGlass = "RoR2/DLC3/repurposedcrater/RCRampTerrariumGlass.png"; public static string RCRampTerrariumGlass02 = "RoR2/DLC3/repurposedcrater/RCRampTerrariumGlass02.png"; public static string Trcconcretesplat01 = "RoR2/DLC3/repurposedcrater/T_rc_concrete_splat_01.png"; public static string Trcconcretesplat03 = "RoR2/DLC3/repurposedcrater/T_rc_concrete_splat_03.png"; public static string texRampRCPipe1 = "RoR2/DLC3/repurposedcrater/texRampRCPipe1.png"; public static string texRampRCPipe2 = "RoR2/DLC3/repurposedcrater/texRampRCPipe2.png"; public static string texRampRCPipe3 = "RoR2/DLC3/repurposedcrater/texRampRCPipe3.png"; public static string texRCAloeDIffuse = "RoR2/DLC3/repurposedcrater/texRCAloeDIffuse.png"; public static string TexRCAloeEmissive = "RoR2/DLC3/repurposedcrater/TexRCAloeEmissive.png"; public static string texRCAloeNormal = "RoR2/DLC3/repurposedcrater/texRCAloeNormal.png"; public static string texRCConcrete01Diffuse = "RoR2/DLC3/repurposedcrater/texRCConcrete01Diffuse.png"; public static string texRCConcrete01Norm = "RoR2/DLC3/repurposedcrater/texRCConcrete01Norm.png"; public static string texRCConcrete01Normal = "RoR2/DLC3/repurposedcrater/texRCConcrete01Normal.png"; public static string texRCConcrete02Diffuse = "RoR2/DLC3/repurposedcrater/texRCConcrete02Diffuse.png"; public static string texRCConcreteDiffuse = "RoR2/DLC3/repurposedcrater/texRCConcreteDiffuse.tga"; public static string texRCConcreteDiffuse02 = "RoR2/DLC3/repurposedcrater/texRCConcreteDiffuse02.tga"; public static string texRCConcreteDiffuse03 = "RoR2/DLC3/repurposedcrater/texRCConcreteDiffuse03.tga"; public static string texRCConcreteDirtDiffuse = "RoR2/DLC3/repurposedcrater/texRCConcreteDirtDiffuse.tga"; public static string texRCConcreteNorm02 = "RoR2/DLC3/repurposedcrater/texRCConcreteNorm02.png"; public static string texRCConcreteNormal = "RoR2/DLC3/repurposedcrater/texRCConcreteNormal.tga"; public static string texRCConcreteSandDiffuse = "RoR2/DLC3/repurposedcrater/texRCConcreteSandDiffuse.tga"; public static string texRCConcreteSideDiffuse = "RoR2/DLC3/repurposedcrater/texRCConcreteSideDiffuse.tga"; public static string texRCConcreteSplat = "RoR2/DLC3/repurposedcrater/texRCConcreteSplat.tga"; public static string texRCConcreteTopDiffuse = "RoR2/DLC3/repurposedcrater/texRCConcreteTopDiffuse.tga"; public static string texRCDustDiffuse = "RoR2/DLC3/repurposedcrater/texRCDustDiffuse.tga"; public static string texRCFoliagediff03 = "RoR2/DLC3/repurposedcrater/texRCFoliage_diff03.png"; public static string texRCFoliageemissive = "RoR2/DLC3/repurposedcrater/texRCFoliage_emissive.png"; public static string texRCFoliagenormal = "RoR2/DLC3/repurposedcrater/texRCFoliage_normal.png"; public static string texRCGrateDiffuse = "RoR2/DLC3/repurposedcrater/texRCGrateDiffuse.tga"; public static string texRCLandscapeNorm = "RoR2/DLC3/repurposedcrater/texRCLandscapeNorm.png"; public static string texRCLandscapeSandDiffuse = "RoR2/DLC3/repurposedcrater/texRCLandscapeSandDiffuse.png"; public static string texRCLandscapeWallDiffuse = "RoR2/DLC3/repurposedcrater/texRCLandscapeWallDiffuse.png"; public static string texRCLandscapeWallDiffuse02 = "RoR2/DLC3/repurposedcrater/texRCLandscapeWallDiffuse02.png"; public static string texRCLandscapeWallDiffuse03 = "RoR2/DLC3/repurposedcrater/texRCLandscapeWallDiffuse03.png"; public static string texRCLandscapeWallDiffuse04 = "RoR2/DLC3/repurposedcrater/texRCLandscapeWallDiffuse04.png"; public static string texRCLandscapeWallNorm = "RoR2/DLC3/repurposedcrater/texRCLandscapeWallNorm.png"; public static string texRCMetalDiffuse = "RoR2/DLC3/repurposedcrater/texRCMetalDiffuse.tga"; public static string texRCMetalTrimDiffuse = "RoR2/DLC3/repurposedcrater/texRCMetalTrimDiffuse.tga"; public static string texRCMetalTrimEmissive = "RoR2/DLC3/repurposedcrater/texRCMetalTrimEmissive.tga"; public static string texRCMetalTrimNormal = "RoR2/DLC3/repurposedcrater/texRCMetalTrimNormal.tga"; public static string texRCPalmLeafNormal02 = "RoR2/DLC3/repurposedcrater/texRCPalmLeafNormal02.png"; public static string texRCPalmTreeNormal = "RoR2/DLC3/repurposedcrater/texRCPalmTree_Normal.png"; public static string texRCPalmTree01Diffuse = "RoR2/DLC3/repurposedcrater/texRCPalmTree01Diffuse.png"; public static string texRCPalmTree02Diffuse = "RoR2/DLC3/repurposedcrater/texRCPalmTree02Diffuse.png"; public static string texRCPalmTreeDiffuse = "RoR2/DLC3/repurposedcrater/texRCPalmTreeDiffuse.png"; public static string texRCPalmTreeDiffuse02 = "RoR2/DLC3/repurposedcrater/texRCPalmTreeDiffuse02.png"; public static string texRCPalmTreeGold01Diffuse = "RoR2/DLC3/repurposedcrater/texRCPalmTreeGold01Diffuse.png"; public static string texRCPipesDiffuse = "RoR2/DLC3/repurposedcrater/texRCPipesDiffuse.tga"; public static string texRCPipesMask = "RoR2/DLC3/repurposedcrater/texRCPipesMask.png"; public static string texRCPipesNormal = "RoR2/DLC3/repurposedcrater/texRCPipesNormal.tga"; public static string texRCPlanter02Diffuse = "RoR2/DLC3/repurposedcrater/texRCPlanter02Diffuse.png"; public static string texRCPlanter02Emissive = "RoR2/DLC3/repurposedcrater/texRCPlanter02Emissive.png"; public static string texRCPressureGauge = "RoR2/DLC3/repurposedcrater/texRCPressureGauge.tga"; public static string texRCRockWallNormal = "RoR2/DLC3/repurposedcrater/texRCRockWallNormal.png"; public static string texRCSandDiffuse = "RoR2/DLC3/repurposedcrater/texRCSandDiffuse.tga"; public static string texRCSandDiffuse01 = "RoR2/DLC3/repurposedcrater/texRCSandDiffuse01.tga"; public static string texRCSolarPanelsDiffuse = "RoR2/DLC3/repurposedcrater/texRCSolarPanelsDiffuse.tga"; public static string texRCSolarPanelsDiffuse02 = "RoR2/DLC3/repurposedcrater/texRCSolarPanelsDiffuse02.png"; public static string texRCSolarPanelsEmission = "RoR2/DLC3/repurposedcrater/texRCSolarPanelsEmission.png"; public static string texRCSolarPanelsFlow = "RoR2/DLC3/repurposedcrater/texRCSolarPanelsFlow.png"; public static string texRCSolarPanelsFlow02 = "RoR2/DLC3/repurposedcrater/texRCSolarPanelsFlow02.png"; public static string texRCSolarPanelsHeight = "RoR2/DLC3/repurposedcrater/texRCSolarPanelsHeight.png"; public static string texRCSolarPanelsHeight02 = "RoR2/DLC3/repurposedcrater/texRCSolarPanelsHeight02.png"; public static string texRCSolarPanelsNormal = "RoR2/DLC3/repurposedcrater/texRCSolarPanelsNormal.png"; public static string texRCTerraceGrass1 = "RoR2/DLC3/repurposedcrater/texRCTerraceGrass 1.tga"; public static string texRCTerraceGrass = "RoR2/DLC3/repurposedcrater/texRCTerraceGrass.psd"; public static string texRCTerraceGrass28 = "RoR2/DLC3/repurposedcrater/texRCTerraceGrass.tga"; public static string texRCTerraceGrassGrey = "RoR2/DLC3/repurposedcrater/texRCTerraceGrassGrey.tga"; public static string texRCTerraceWater = "RoR2/DLC3/repurposedcrater/texRCTerraceWater.tga"; public static string texRCTerrainDiffuse = "RoR2/DLC3/repurposedcrater/texRCTerrainDiffuse.tga"; public static string texRCTerrainSand = "RoR2/DLC3/repurposedcrater/texRCTerrainSand.png"; public static string texRCTerrainSand20 = "RoR2/DLC3/repurposedcrater/texRCTerrainSand.tga"; public static string texRCTSand = "RoR2/DLC3/repurposedcrater/texRCTSand.tga"; public static string texRCTSandRed = "RoR2/DLC3/repurposedcrater/texRCTSandRed.tga"; public static string texRCTSandSplat = "RoR2/DLC3/repurposedcrater/texRCTSandSplat.png"; public static string texRCTTileableHex = "RoR2/DLC3/repurposedcrater/texRCTTileableHex.png"; public static string texRCWaterfallBase = "RoR2/DLC3/repurposedcrater/texRCWaterfallBase.tga"; public static string texRepurposedCraterPreview = "RoR2/DLC3/repurposedcrater/texRepurposedCraterPreview.png"; public static string IconCheckbox = "RoR2/DLC3/solusweb/Icon_Checkbox.png"; public static string IconGAP = "RoR2/DLC3/solusweb/Icon_GAP.png"; public static string texSolusWebPreview = "RoR2/DLC3/solusweb/texSolusWebPreview.png"; public static string texSHConcreteDarkDiffuse = "RoR2/DLC3/solutionalhaunt/texSHConcreteDarkDiffuse.tga"; public static string texSHConcreteGreenDiffuse = "RoR2/DLC3/solutionalhaunt/texSHConcreteGreenDiffuse.tga"; public static string texSHConcreteNormal = "RoR2/DLC3/solutionalhaunt/texSHConcreteNormal.tga"; public static string texSHGrassAlpha = "RoR2/DLC3/solutionalhaunt/texSHGrassAlpha.tga"; public static string texSHMetal = "RoR2/DLC3/solutionalhaunt/texSHMetal.tga"; public static string texSHMetalDark = "RoR2/DLC3/solutionalhaunt/texSHMetalDark.tga"; public static string texSHTerrainGreenDiffuse = "RoR2/DLC3/solutionalhaunt/texSHTerrainGreenDiffuse.tga"; public static string texSHTerrainPinkDiffuse = "RoR2/DLC3/solutionalhaunt/texSHTerrainPinkDiffuse.tga"; public static string texSHVineBillboardDiffuse = "RoR2/DLC3/solutionalhaunt/texSHVineBillboardDiffuse.tga"; public static string texSHVineDiffuse = "RoR2/DLC3/solutionalhaunt/texSHVineDiffuse.tga"; public static string texSHWalkwayDiffuse = "RoR2/DLC3/solutionalhaunt/texSHWalkwayDiffuse.png"; public static string mdlSHcatwalklargematSHcatwalkBaseColor = "RoR2/DLC3/solutionalhaunt/Textures/mdlSHcatwalklarge_matSHcatwalk_BaseColor.png"; public static string mdlSHcatwalklargematSHcatwalkNormal = "RoR2/DLC3/solutionalhaunt/Textures/mdlSHcatwalklarge_matSHcatwalk_Normal.png"; public static string mdlSHcatwalktrimsheetlowlambert1Normal = "RoR2/DLC3/solutionalhaunt/Textures/mdlSHcatwalktrimsheet_low_lambert1_Normal.png"; public static string mdlSHglowflower01glowerflowerBaseColor = "RoR2/DLC3/solutionalhaunt/Textures/mdlSHglowflower01_glowerflower_BaseColor.png"; public static string mdlSHglowflower01glowerflowerEmissive = "RoR2/DLC3/solutionalhaunt/Textures/mdlSHglowflower01_glowerflower_Emissive.png"; public static string mdlSHglowflower01glowerflowerNormal = "RoR2/DLC3/solutionalhaunt/Textures/mdlSHglowflower01_glowerflower_Normal.png"; public static string SHGrassAtlas = "RoR2/DLC3/solutionalhaunt/Textures/SHGrass_Atlas.tga"; public static string Tslimen01 = "RoR2/DLC3/solutionalhaunt/Textures/T_slime_n_01.png"; public static string Ttesteye01 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_eye_01.png"; public static string ttesthex01 = "RoR2/DLC3/solutionalhaunt/Textures/t_test_hex_01.tga"; public static string ttesthex01Normal = "RoR2/DLC3/solutionalhaunt/Textures/t_test_hex_01_Normal.tga"; public static string ttesthex02 = "RoR2/DLC3/solutionalhaunt/Textures/t_test_hex_02.png"; public static string Ttestironground01 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_iron_ground_01.png"; public static string Ttestironground02 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_iron_ground_02.png"; public static string Ttestmetal0102 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_01_02.png"; public static string Ttestmetal0302 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_03_02.png"; public static string Ttestmetal04 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_04.png"; public static string Ttestmetal04B = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_04B.png"; public static string Ttestmetalinner01 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_inner_01.png"; public static string Ttestmetalinnere01 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_inner_e_01.png"; public static string Ttestmetaln0102 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_n_01_02.png"; public static string Ttestmetaln03 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_n_03.png"; public static string Ttestmetaln0302 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_n_03_02.png"; public static string Ttestmetaln04 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_n_04.png"; public static string Ttestmetaln04B = "RoR2/DLC3/solutionalhaunt/Textures/T_test_metal_n_04B.png"; public static string Ttestsolus01 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_solus_01.png"; public static string ttestSolusPattern01 = "RoR2/DLC3/solutionalhaunt/Textures/t_test_Solus_Pattern_01.png"; public static string ttestSolusPatternn01 = "RoR2/DLC3/solutionalhaunt/Textures/t_test_Solus_Pattern_n_01.png"; public static string ttesttruss01 = "RoR2/DLC3/solutionalhaunt/Textures/t_test_truss_01.png"; public static string ttesttrussalpha0116 = "RoR2/DLC3/solutionalhaunt/Textures/t_test_truss_alpha_01.png"; public static string ttesttrussn01 = "RoR2/DLC3/solutionalhaunt/Textures/t_test_truss_n_01.png"; public static string ttestventvfx01 = "RoR2/DLC3/solutionalhaunt/Textures/t_test_vent_vfx_01.png"; public static string ttestventvfxalpha01 = "RoR2/DLC3/solutionalhaunt/Textures/t_test_vent_vfx_alpha_01.png"; public static string Ttestwaterfall01 = "RoR2/DLC3/solutionalhaunt/Textures/T_test_waterfall_01.png"; public static string texSHCableDiffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHCableDiffuse.tga"; public static string texSHCableNormal = "RoR2/DLC3/solutionalhaunt/Textures/texSHCableNormal.tga"; public static string texSHcatwalkdiffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHcatwalkdiffuse.png"; public static string texSHCaveGrass01 = "RoR2/DLC3/solutionalhaunt/Textures/texSHCaveGrass01.tga"; public static string texSHCaveGrass01acopy = "RoR2/DLC3/solutionalhaunt/Textures/texSHCaveGrass01a copy.tga"; public static string texSHCaveGrass01a = "RoR2/DLC3/solutionalhaunt/Textures/texSHCaveGrass01a.tga"; public static string texSHCaveGrass2copy = "RoR2/DLC3/solutionalhaunt/Textures/texSHCaveGrass2 copy.tga"; public static string texSHCaveGrass2 = "RoR2/DLC3/solutionalhaunt/Textures/texSHCaveGrass2.tga"; public static string texSHCaveWallside = "RoR2/DLC3/solutionalhaunt/Textures/texSHCaveWall_side.tga"; public static string texSHConcreteC = "RoR2/DLC3/solutionalhaunt/Textures/texSHConcrete_C.tga"; public static string texSHGlassEye = "RoR2/DLC3/solutionalhaunt/Textures/texSHGlassEye.png"; public static string texSHGoo = "RoR2/DLC3/solutionalhaunt/Textures/texSHGoo.png"; public static string texSHGrass = "RoR2/DLC3/solutionalhaunt/Textures/texSHGrass.png"; public static string texSHGrass11 = "RoR2/DLC3/solutionalhaunt/Textures/texSHGrass.tga"; public static string texSHIronGround01Diffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHIronGround01Diffuse.png"; public static string texSHMetal01aDiffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal01aDiffuse.tga"; public static string texSHMetal01bDiffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal01bDiffuse.png"; public static string texSHMetal01Emissive = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal01Emissive.tga"; public static string texSHMetal01Normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal01Normal.tga"; public static string texSHMetal02aDiffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal02aDiffuse.tga"; public static string texSHMetal02Diffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal02Diffuse.tga"; public static string texSHMetal02Normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal02Normal.png"; public static string texSHMetal03Diffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal03Diffuse.tga"; public static string texSHMetal03Normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal03Normal.tga"; public static string texSHMetal04Diffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal04Diffuse.png"; public static string texSHMetal04Normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal04Normal.png"; public static string texSHMetal05Diffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal05Diffuse.tga"; public static string texSHMetal05Normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal05Normal.png"; public static string texSHMetal05Normal28 = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal05Normal.tga"; public static string texSHMetal06Diffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHMetal06Diffuse.tga"; public static string texSHMush01normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHMush01_normal.png"; public static string texSHMush02normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHMush02_normal.png"; public static string texSHMushSup1normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHMushSup1_normal.png"; public static string texSHPlatform01normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHPlatform01_normal.png"; public static string texSHPlatform02normal = "RoR2/DLC3/solutionalhaunt/Textures/texSHPlatform02_normal.png"; public static string texSHTerrainCaveDiffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHTerrainCaveDiffuse.tga"; public static string texSHTerrainSide = "RoR2/DLC3/solutionalhaunt/Textures/texSHTerrainSide.tga"; public static string texSHTerrainTop = "RoR2/DLC3/solutionalhaunt/Textures/texSHTerrainTop.tga"; public static string texSHTerrainTopDarker = "RoR2/DLC3/solutionalhaunt/Textures/texSHTerrainTopDarker.tga"; public static string texSHTrussDiffuse = "RoR2/DLC3/solutionalhaunt/Textures/texSHTrussDiffuse.tga"; public static string texSHTrussNormal = "RoR2/DLC3/solutionalhaunt/Textures/texSHTrussNormal.png"; public static string texSHVineCluster = "RoR2/DLC3/solutionalhaunt/Textures/texSHVineCluster.png"; public static string texSHVineClusterNormal = "RoR2/DLC3/solutionalhaunt/Textures/texSHVineCluster_Normal.png"; public static string texSHWater = "RoR2/DLC3/solutionalhaunt/Textures/texSHWater.png"; public static string texSolusDecorEmissive = "RoR2/DLC3/solutionalhaunt/Textures/texSolusDecorEmissive.tga"; public static string texSolusVentNormal = "RoR2/DLC3/solutionalhaunt/Textures/texSolusVentNormal.tga"; public static string texSplashDisplacement = "RoR2/DLC3/solutionalhaunt/Textures/texSplashDisplacement.png"; public static string textSHHex01Diffuse = "RoR2/DLC3/solutionalhaunt/Textures/textSHHex01Diffuse.tga"; public static string Vines01 = "RoR2/DLC3/solutionalhaunt/Textures/Vines01.png"; public static string texSolutionalHauntPreviewB = "RoR2/DLC3/solutionalhaunt/texSolutionalHauntPreviewB.jpg"; public static string texSolutionalHauntPreview = "RoR2/DLC3/solutionalhaunt/texSolutionalHauntPreview.png"; public static string texDroneRepairBackground = "RoR2/DLC3/UI/texDroneRepairBackground.png"; public static string texBase = "RoR2/DLC3/UI/base.png"; public static string dlc3bannerspritesheet = "RoR2/DLC3/UI/dlc3_banner_sprite_sheet.png"; public static string dlc3bannerspritesheetref = "RoR2/DLC3/UI/dlc3_banner_sprite_sheet_ref.png"; public static string logo = "RoR2/DLC3/UI/logo.png"; public static string texDLC3SkinSwatches = "RoR2/DLC3/UI/texDLC3SkinSwatches.png"; public static string texHardwareExpansionIcon = "RoR2/DLC3/UI/texHardwareExpansionIcon.png"; public static string texDroneScrapperSelectedFrame = "RoR2/DLC3/UI/texDroneScrapperSelectedFrame.png"; public static string texExtraEquipmentSwapIcon = "RoR2/DLC3/UI/texExtraEquipmentSwapIcon.png"; public static string texRemoteOPBackground = "RoR2/DLC3/UI/texRemoteOPBackground.png"; public static string texRemoteOPDetailsDroneFrame = "RoR2/DLC3/UI/texRemoteOPDetailsDroneFrame.png"; public static string texRemoteOPDetailsPanel = "RoR2/DLC3/UI/texRemoteOPDetailsPanel.png"; public static string texRemoteOPDroneFrame = "RoR2/DLC3/UI/texRemoteOPDroneFrame.png"; public static string texRemoteOPHighlightFrame = "RoR2/DLC3/UI/texRemoteOPHighlightFrame.png"; public static string texTempItemsTimer = "RoR2/DLC3/UI/texTempItemsTimer.png"; public static string texTempItemsTimer02 = "RoR2/DLC3/UI/texTempItemsTimer02.png"; public static string texUIdroneupgradeIcon = "RoR2/DLC3/UI/texUIdroneupgradeIcon.png"; public static string texUIselectframeDLC3 = "RoR2/DLC3/UI/texUIselectframeDLC3.png"; public static string texArenaSandDiffuse = "RoR2/GlobalContent/texArenaSandDiffuse.png"; public static string texBBMudNormal = "RoR2/GlobalContent/texBBMudNormal.png"; public static string texBlackbeachDirt = "RoR2/GlobalContent/texBlackbeachDirt.png"; public static string texBlackbeachGrass = "RoR2/GlobalContent/texBlackbeachGrass.png"; public static string texFWSnow = "RoR2/GlobalContent/texFWSnow.tga"; public static string texGooWaterfallFoam = "RoR2/GlobalContent/texGooWaterfallFoam.png"; public static string texGPGrassTerrain = "RoR2/GlobalContent/texGPGrassTerrain.png"; public static string texGPGrassTerrainNormal = "RoR2/GlobalContent/texGPGrassTerrainNormal.png"; public static string texGPLichenTerrain = "RoR2/GlobalContent/texGPLichenTerrain.png"; public static string texMoonLichen = "RoR2/GlobalContent/texMoonLichen.png"; public static string texSand1Simple = "RoR2/GlobalContent/texSand1Simple.png"; public static string texSGGrassTerrain2 = "RoR2/GlobalContent/texSGGrassTerrain2.psd"; public static string texSMGrassTerrain = "RoR2/GlobalContent/texSMGrassTerrain.png"; public static string texTrimSheetArtifactDiffuse120 = "RoR2/GlobalContent/texTrimSheetArtifactDiffuse 1.png"; public static string texWhiteSandSimple = "RoR2/GlobalContent/texWhiteSandSimple.png"; public static string texAncientWispAO = "RoR2/Junk/AncientWisp/texAncientWispAO.png"; public static string texBanditSkill1Icon = "RoR2/Junk/Bandit/texBanditSkill1Icon.png"; public static string texBanditSkill2Icon = "RoR2/Junk/Bandit/texBanditSkill2Icon.png"; public static string texBanditSkill3Icon = "RoR2/Junk/Bandit/texBanditSkill3Icon.png"; public static string texBanditSkill4Icon = "RoR2/Junk/Bandit/texBanditSkill4Icon.png"; public static string texBanditPistolDiffuse = "RoR2/Junk/Bandit/texBanditPistolDiffuse.png"; public static string texBanditPistolNormal = "RoR2/Junk/Bandit/texBanditPistolNormal.png"; public static string texBeetleGrubDiffuse = "RoR2/Junk/BeetleQueen/texBeetleGrubDiffuse.png"; public static string texBeetleGrubEmission = "RoR2/Junk/BeetleQueen/texBeetleGrubEmission.png"; public static string texClaymanPalette = "RoR2/Junk/Clay/texClaymanPalette.png"; public static string ClayBody = "RoR2/Junk/ClayMan/ClayBody.png"; public static string texClaymanDiffuse = "RoR2/Junk/ClayMan/texClaymanDiffuse.png"; public static string texClaymanNormal = "RoR2/Junk/ClayMan/texClaymanNormal.png"; public static string texEngiShieldSpriteCrosshair = "RoR2/Junk/Engi/texEngiShieldSpriteCrosshair.png"; public static string texHandSkill1Icon = "RoR2/Junk/HAND/texHandSkill1Icon.png"; public static string texHandSkill2Icon = "RoR2/Junk/HAND/texHandSkill2Icon.png"; public static string texHandSkill3Icon = "RoR2/Junk/HAND/texHandSkill3Icon.png"; public static string texHandSkill4Icon = "RoR2/Junk/HAND/texHandSkill4Icon.png"; public static string texHandAO = "RoR2/Junk/HAND/texHandAO.png"; public static string texHandHammerAO = "RoR2/Junk/HAND/texHandHammerAO.png"; public static string texPleaseWait = "RoR2/Junk/HAND/texPleaseWait.psd"; public static string texSpotlightCookieHuntress = "RoR2/Junk/Huntress/texSpotlightCookieHuntress.png"; public static string texMageLaserMask = "RoR2/Junk/Mage/texMageLaserMask.png"; public static string texSporeGrenadeFlare = "RoR2/Junk/MiniMushroom/texSporeGrenadeFlare.png"; public static string texPot1Diffuse = "RoR2/Junk/Pot2/texPot1Diffuse.png"; public static string texPotMobileDiffuse = "RoR2/Junk/PotMobile/texPotMobileDiffuse.png"; public static string texPotMobileEmission = "RoR2/Junk/PotMobile/texPotMobileEmission.png"; public static string texPotMobileNormal = "RoR2/Junk/PotMobile/texPotMobileNormal.png"; public static string texCrosshairBullets1 = "RoR2/Junk/Sniper/texCrosshairBullets1.tif"; public static string texCrosshairBullets1Empty = "RoR2/Junk/Sniper/texCrosshairBullets1Empty.tif"; public static string texScopeSniper = "RoR2/Junk/Sniper/texScopeSniper.png"; public static string texSniperSkill1Icon = "RoR2/Junk/Sniper/texSniperSkill1Icon.png"; public static string texSniperSkill2Icon = "RoR2/Junk/Sniper/texSniperSkill2Icon.png"; public static string texSniperSkill3Icon = "RoR2/Junk/Sniper/texSniperSkill3Icon.png"; public static string texSniperSkill4Icon = "RoR2/Junk/Sniper/texSniperSkill4Icon.png"; public static string texSquidTurretDiffuse2 = "RoR2/Junk/Squid/texSquidTurretDiffuse.png"; public static string texSquidTurretEmissive = "RoR2/Junk/Squid/texSquidTurretEmissive.png"; public static string texTankDiffuse = "RoR2/Junk/Tank/texTankDiffuse.png"; public static string texTankEmission = "RoR2/Junk/Tank/texTankEmission.png"; public static string texBuffBodyArmorIcon = "RoR2/Junk/Common/texBuffBodyArmorIcon.tif"; public static string texBuffSlow25Icon = "RoR2/Junk/Common/texBuffSlow25Icon.tif"; public static string texBuffSuperBleedIcon = "RoR2/Junk/Common/texBuffSuperBleedIcon.png"; public static string texBuffTempestSpeedIcon = "RoR2/Junk/Common/texBuffTempestSpeedIcon.png"; public static string texDifficulty0 = "RoR2/Junk/Common/texDifficulty0.png"; public static string texDifficulty0Disabled = "RoR2/Junk/Common/texDifficulty0Disabled.png"; public static string texDifficulty1 = "RoR2/Junk/Common/texDifficulty1.png"; public static string texDifficulty1Disabled = "RoR2/Junk/Common/texDifficulty1Disabled.png"; public static string texDifficulty2 = "RoR2/Junk/Common/texDifficulty2.png"; public static string texDifficulty2Disabled = "RoR2/Junk/Common/texDifficulty2Disabled.png"; public static string texDifficultyEasyIconDisabled = "RoR2/Junk/Common/texDifficultyEasyIconDisabled.png"; public static string texDifficultyHardIconDisabled = "RoR2/Junk/Common/texDifficultyHardIconDisabled.png"; public static string texDifficultyNormalIconDisabled = "RoR2/Junk/Common/texDifficultyNormalIconDisabled.png"; public static string spmFlower2Atlas = "RoR2/Junk/Common/Props/spmFlower2_Atlas.tga"; public static string spmFlower2AtlasSpecular = "RoR2/Junk/Common/Props/spmFlower2_Atlas_Specular.tga"; public static string spmFlower2BabyAtlas = "RoR2/Junk/Common/Props/spmFlower2Baby_Atlas.tga"; public static string spmFlower2BabyAtlasSpecular = "RoR2/Junk/Common/Props/spmFlower2Baby_Atlas_Specular.tga"; public static string texPlant2StalkDiffuse = "RoR2/Junk/Common/Props/texPlant2StalkDiffuse.tga"; public static string spmFlower3Atlas = "RoR2/Junk/Common/Props/spmFlower3_Atlas.tga"; public static string spmGrassFrond1Atlas = "RoR2/Junk/Common/Props/spmGrassFrond1_Atlas.tga"; public static string spmVine1Atlas = "RoR2/Junk/Common/Props/spmVine1_Atlas.tga"; public static string spmVine1PillarAtlas = "RoR2/Junk/Common/Props/spmVine1Pillar_Atlas.tga"; public static string texBGMountains1 = "RoR2/Junk/Common/Skyboxes/texBGMountains1.png"; public static string texAreaIndicatorRing = "RoR2/Junk/Common/VFX/texAreaIndicatorRing.png"; public static string texBootWaveRingGradient = "RoR2/Junk/Common/VFX/texBootWaveRingGradient.png"; public static string texDamageZoneWardMask = "RoR2/Junk/Common/VFX/texDamageZoneWardMask.png"; public static string texExplosion1Diffuse = "RoR2/Junk/Common/VFX/texExplosion1Diffuse.png"; public static string texGroundIndicator = "RoR2/Junk/Common/VFX/texGroundIndicator.png"; public static string texSparkCutout00 = "RoR2/Junk/Common/VFX/texSparkCutout00.png"; public static string texVFXExplosionHuntress = "RoR2/Junk/Common/VFX/texVFXExplosionHuntress.png"; public static string texVFXShieldMask = "RoR2/Junk/Common/VFX/texVFXShieldMask.png"; public static string texWhiteLightning3 = "RoR2/Junk/Common/VFX/texWhiteLightning3.png"; public static string texWispEmber = "RoR2/Junk/Common/VFX/texWispEmber.png"; public static string texWoundMask = "RoR2/Junk/Common/VFX/texWoundMask.png"; public static string texSpit1 = "RoR2/Junk/Common/VFX/texSpit1.tga"; public static string texSpit2 = "RoR2/Junk/Common/VFX/texSpit2.tga"; public static string texWaterfall1 = "RoR2/Junk/Common/VFX/texWaterfall1.tga"; public static string texAffixGreenIcon = "RoR2/Junk/EliteGreen/texAffixGreenIcon.png"; public static string texBarrel1Diffuse = "RoR2/Junk/Barrel 1/texBarrel1Diffuse.png"; public static string texBarrel1Splatmap = "RoR2/Junk/Barrel 1/texBarrel1Splatmap.png"; public static string texCategoryChestDamageDiffuse = "RoR2/Junk/CategoryChest/texCategoryChestDamageDiffuse.png"; public static string texCategoryChestHealingDiffuse = "RoR2/Junk/CategoryChest/texCategoryChestHealingDiffuse.png"; public static string texCategoryChestUtilityDiffuse = "RoR2/Junk/CategoryChest/texCategoryChestUtilityDiffuse.png"; public static string texChest1Diffuse = "RoR2/Junk/Chests/texChest1Diffuse.png"; public static string texChest1DiffuseUsed = "RoR2/Junk/Chests/texChest1DiffuseUsed.png"; public static string texChest1Emission = "RoR2/Junk/Chests/texChest1Emission.png"; public static string texChest2Diffuse = "RoR2/Junk/Chests/texChest2Diffuse.png"; public static string texChest2Emissive = "RoR2/Junk/Chests/texChest2Emissive.png"; public static string texDropshipDiffuse = "RoR2/Junk/Dropship/texDropshipDiffuse.png"; public static string texDropshipEmission = "RoR2/Junk/Dropship/texDropshipEmission.png"; public static string texEquipmentBarrelDiffuse = "RoR2/Junk/Equipment Barrel/texEquipmentBarrelDiffuse.png"; public static string texEquipmentBarrelEmission = "RoR2/Junk/Equipment Barrel/texEquipmentBarrelEmission.png"; public static string texMetalTrimDiffuse = "RoR2/Junk/EscapePod/texMetalTrimDiffuse.png"; public static string texMetalTrimNormal = "RoR2/Junk/EscapePod/texMetalTrimNormal.png"; public static string texOldChest1Diffuse = "RoR2/Junk/Old Chest 1/texOldChest1Diffuse.png"; public static string texShrine1AO = "RoR2/Junk/Shrine 1/texShrine1AO.png"; public static string texShrineWispAO = "RoR2/Junk/Shrine, Wisp/texShrineWispAO.png"; public static string texShrineWispTotemAO = "RoR2/Junk/Shrine, Wisp/texShrineWispTotemAO.png"; public static string texTeleporterAOFiltered = "RoR2/Junk/Teleporter/texTeleporterAOFiltered.png"; public static string texTeleporterBeaconDiffuse = "RoR2/Junk/Teleporter/texTeleporterBeaconDiffuse.png"; public static string texTeleporterBeaconNormal = "RoR2/Junk/Teleporter/texTeleporterBeaconNormal.png"; public static string texTeleporterDiffuse = "RoR2/Junk/Teleporter/texTeleporterDiffuse.png"; public static string texTeleporterNormal = "RoR2/Junk/Teleporter/texTeleporterNormal.png"; public static string texTeleporterSplat = "RoR2/Junk/Teleporter/texTeleporterSplat.png"; public static string texYoungTeleporterDiffuse = "RoR2/Junk/Teleporter/texYoungTeleporterDiffuse.png"; public static string texYoungTeleporterNormal = "RoR2/Junk/Teleporter/texYoungTeleporterNormal.png"; public static string texSkullDiffuse = "RoR2/Junk/CooldownOnCrit/texSkullDiffuse.png"; public static string texSkullEmissive = "RoR2/Junk/CooldownOnCrit/texSkullEmissive.png"; public static string texAncestralIncubatorDiffuse = "RoR2/Junk/Incubator/texAncestralIncubatorDiffuse.png"; public static string texAncestralIncubatorEmission = "RoR2/Junk/Incubator/texAncestralIncubatorEmission.png"; public static string texAncestralIncubatorIcon = "RoR2/Junk/Incubator/texAncestralIncubatorIcon.png"; public static string texAncestralIncubatorNormal = "RoR2/Junk/Incubator/texAncestralIncubatorNormal.png"; public static string texParentPodDiffuse = "RoR2/Junk/Incubator/texParentPodDiffuse.png"; public static string texParentPodNormal = "RoR2/Junk/Incubator/texParentPodNormal.png"; public static string texMedkitCharge = "RoR2/Junk/Medkit/texMedkitCharge.png"; public static string texBanditCoinDiffuse = "RoR2/Junk/SkullCounter/texBanditCoinDiffuse.png"; public static string texBanditCoinEmissiveMask = "RoR2/Junk/SkullCounter/texBanditCoinEmissiveMask.png"; public static string texBanditCoinIcon = "RoR2/Junk/SkullCounter/texBanditCoinIcon.png"; public static string texBanditCoinNormals1 = "RoR2/Junk/SkullCounter/texBanditCoinNormals 1.png"; public static string texBanditSelect = "RoR2/Junk/Misc/texBanditSelect.png"; public static string texBanditSelectDisabled = "RoR2/Junk/Misc/texBanditSelectDisabled.png"; public static string texCommandoSelect = "RoR2/Junk/Misc/texCommandoSelect.png"; public static string texCommandoSelectDisabled = "RoR2/Junk/Misc/texCommandoSelectDisabled.png"; public static string texEngiSelect = "RoR2/Junk/Misc/texEngiSelect.png"; public static string texEngiSelectDisabled = "RoR2/Junk/Misc/texEngiSelectDisabled.png"; public static string texHandSelect = "RoR2/Junk/Misc/texHandSelect.png"; public static string texHandSelectDisabled = "RoR2/Junk/Misc/texHandSelectDisabled.png"; public static string texHuntressSelect = "RoR2/Junk/Misc/texHuntressSelect.png"; public static string texHuntressSelectDisabled = "RoR2/Junk/Misc/texHuntressSelectDisabled.png"; public static string texSniperSelect = "RoR2/Junk/Misc/texSniperSelect.png"; public static string texSniperSelectDisabled = "RoR2/Junk/Misc/texSniperSelectDisabled.png"; public static string texBlueprintScreenDiffuse = "RoR2/Junk/Misc/texBlueprintScreenDiffuse.png"; public static string spmGPGrassAtlas13 = "RoR2/Junk/dampcave/spmGPGrass_Atlas.tga"; public static string spmDCFern1AtlasBillboards = "RoR2/Junk/dampcave/spmDCFern1_Atlas_Billboards.tga"; public static string spmDCFern1AtlasBillboardsNormal = "RoR2/Junk/dampcave/spmDCFern1_Atlas_Billboards_Normal.tga"; public static string texGravestoneDiffuse = "RoR2/Junk/Old Stage1/texGravestoneDiffuse.png"; public static string texGravestoneEmit = "RoR2/Junk/Old Stage1/texGravestoneEmit.png"; public static string texEggplant1Diffuse = "RoR2/Junk/Old Stage1/texEggplant1Diffuse.png"; public static string texEggplant1Emission = "RoR2/Junk/Old Stage1/texEggplant1Emission.png"; public static string texPolyp1Diffuse = "RoR2/Junk/Old Stage1/texPolyp1Diffuse.png"; public static string texPolyp1Emission = "RoR2/Junk/Old Stage1/texPolyp1Emission.png"; public static string texRock1 = "RoR2/Junk/Old Stage1/texRock1.png"; public static string texColumn1Texture = "RoR2/Junk/Old Stage1/texColumn1Texture.png"; public static string texTempleBridge1AO = "RoR2/Junk/Old Stage1/texTempleBridge1AO.png"; public static string texTempleCeiling1AO = "RoR2/Junk/Old Stage1/texTempleCeiling1AO.png"; public static string texTemplePillar1AO = "RoR2/Junk/Old Stage1/texTemplePillar1AO.png"; public static string texTempleWall1AO = "RoR2/Junk/Old Stage1/texTempleWall1AO.png"; public static string texTempleWallHuge1AO = "RoR2/Junk/Old Stage1/texTempleWallHuge1AO.png"; public static string texGravpadTemple2AO = "RoR2/Junk/Old Stage1/texGravpadTemple2AO.png"; public static string texGravpadTemple2Emission = "RoR2/Junk/Old Stage1/texGravpadTemple2Emission.png"; public static string texAlienGrass1 = "RoR2/Junk/Old Stage1/texAlienGrass1.png"; public static string texBrick1 = "RoR2/Junk/Old Stage1/texBrick1.png"; public static string texDepth1 = "RoR2/Junk/Old Stage1/texDepth1.png"; public static string texFlower1Diffuse = "RoR2/Junk/Old Stage1/texFlower1Diffuse.png"; public static string texFlower2Diffuse = "RoR2/Junk/Old Stage1/texFlower2Diffuse.png"; public static string texGrass1Diffuse = "RoR2/Junk/Old Stage1/texGrass1Diffuse.png"; public static string texGrass2Diffuse = "RoR2/Junk/Old Stage1/texGrass2Diffuse.png"; public static string texLeafDiffuse1 = "RoR2/Junk/Old Stage1/texLeafDiffuse1.png"; public static string texMold1 = "RoR2/Junk/Old Stage1/texMold1.png"; public static string texTerrainDirt = "RoR2/Junk/Old Stage1/texTerrainDirt.png"; public static string texTerrainGrassHeight = "RoR2/Junk/Old Stage1/texTerrainGrassHeight.png"; public static string texTerrainGrey2 = "RoR2/Junk/Old Stage1/texTerrainGrey2.png"; public static string texTerrainIce = "RoR2/Junk/Old Stage1/texTerrainIce.png"; public static string texTerrainMoss = "RoR2/Junk/Old Stage1/texTerrainMoss.png"; public static string texTerrainMoss32 = "RoR2/Junk/Old Stage1/texTerrainMoss.tga"; public static string texTerrainPinkGrass = "RoR2/Junk/Old Stage1/texTerrainPinkGrass.png"; public static string texTerrainRock1 = "RoR2/Junk/Old Stage1/texTerrainRock1.png"; public static string texTerrainRock226 = "RoR2/Junk/Old Stage1/texTerrainRock2.tga"; public static string texTerrainRock3 = "RoR2/Junk/Old Stage1/texTerrainRock3.png"; public static string texTerrainSnowDark = "RoR2/Junk/Old Stage1/texTerrainSnowDark.tga"; public static string texTerrainTemple2Diffuse = "RoR2/Junk/Old Stage1/texTerrainTemple2Diffuse.png"; public static string texTundraGrass1 = "RoR2/Junk/Old Stage1/texTundraGrass1.png"; public static string texTundraGrass2Diffuse = "RoR2/Junk/Old Stage1/texTundraGrass2Diffuse.png"; public static string texBeachDockColumn1 = "RoR2/Junk/slice2/texBeachDockColumn1.png"; public static string texColossusHead1Normal = "RoR2/Junk/slice2/texColossusHead1Normal.png"; public static string texSand2 = "RoR2/Junk/slice2/texSand2.png"; public static string texWhorlShellDiffuse = "RoR2/Junk/slice2/texWhorlShellDiffuse.png"; public static string d112 = "RoR2/Junk/UI/d11-2.png"; public static string d114 = "RoR2/Junk/UI/d11-4.png"; public static string d121 = "RoR2/Junk/UI/d12-1.png"; public static string d122 = "RoR2/Junk/UI/d12-2.png"; public static string d131 = "RoR2/Junk/UI/d13-1.png"; public static string d132 = "RoR2/Junk/UI/d13-2.png"; public static string d134 = "RoR2/Junk/UI/d13-4.png"; public static string d135 = "RoR2/Junk/UI/d13-5.png"; public static string d141 = "RoR2/Junk/UI/d14-1.png"; public static string d142 = "RoR2/Junk/UI/d14-2.png"; public static string d143 = "RoR2/Junk/UI/d14-3.png"; public static string d144 = "RoR2/Junk/UI/d14-4.png"; public static string d151 = "RoR2/Junk/UI/d15-1.png"; public static string d152 = "RoR2/Junk/UI/d15-2.png"; public static string d153 = "RoR2/Junk/UI/d15-3.png"; public static string d154 = "RoR2/Junk/UI/d15-4.png"; public static string d155 = "RoR2/Junk/UI/d15-5.png"; public static string d156 = "RoR2/Junk/UI/d15-6.png"; public static string d157 = "RoR2/Junk/UI/d15-7.png"; public static string d158 = "RoR2/Junk/UI/d15-8.png"; public static string artifactteleporter2 = "RoR2/Junk/UI/artifactteleporter2.psd"; public static string artifactteleporter3 = "RoR2/Junk/UI/artifactteleporter3.psd"; public static string magepod = "RoR2/Junk/UI/magepod.psd"; public static string noidea = "RoR2/Junk/UI/noidea.psd"; public static string noidea2 = "RoR2/Junk/UI/noidea2.psd"; public static string resolution = "RoR2/Junk/UI/resolution.psd"; public static string settingspanel = "RoR2/Junk/UI/settingspanel.psd"; public static string shipgraveyardpuzzle = "RoR2/Junk/UI/shipgraveyardpuzzle.psd"; public static string splitscreenui = "RoR2/Junk/UI/splitscreen_ui.psd"; public static string texCrosshair1 = "RoR2/Junk/UI/texCrosshair1.png"; public static string texCrosshairBasic1 = "RoR2/Junk/UI/texCrosshairBasic1.png"; public static string texCrosshairEngiGrenade = "RoR2/Junk/UI/texCrosshairEngiGrenade.png"; public static string texCrosshairGrenade = "RoR2/Junk/UI/texCrosshairGrenade.png"; public static string texCrosshairHAND = "RoR2/Junk/UI/texCrosshairHAND.png"; public static string texCrosshairHuntress = "RoR2/Junk/UI/texCrosshairHuntress.png"; public static string texCrosshairNibSawRight = "RoR2/Junk/UI/texCrosshairNibSawRight.png"; public static string texCrosshairSides = "RoR2/Junk/UI/texCrosshairSides.png"; public static string texRampCrosshair = "RoR2/Junk/UI/texRampCrosshair.png"; public static string texRampCrosshairWide = "RoR2/Junk/UI/texRampCrosshairWide.png"; public static string texTrackerHuntress = "RoR2/Junk/UI/texTrackerHuntress.png"; public static string texAOHPBar = "RoR2/Junk/UI/texAOHPBar.png"; public static string texAOMoneyBar = "RoR2/Junk/UI/texAOMoneyBar.png"; public static string texAOSkillBar = "RoR2/Junk/UI/texAOSkillBar.png"; public static string sSamuraiSkills0 = "RoR2/Junk/UI/sSamuraiSkills_0.png"; public static string sSamuraiSkills1 = "RoR2/Junk/UI/sSamuraiSkills_1.png"; public static string sSamuraiSkills2 = "RoR2/Junk/UI/sSamuraiSkills_2.png"; public static string sSamuraiSkills3 = "RoR2/Junk/UI/sSamuraiSkills_3.png"; public static string sSamuraiSkills4 = "RoR2/Junk/UI/sSamuraiSkills_4.png"; public static string texCommandoSkill1Icon = "RoR2/Junk/UI/texCommandoSkill1Icon.png"; public static string texCommandoSkill2Icon = "RoR2/Junk/UI/texCommandoSkill2Icon.png"; public static string texCommandoSkill3Icon = "RoR2/Junk/UI/texCommandoSkill3Icon.png"; public static string texCommandoSkill4Icon = "RoR2/Junk/UI/texCommandoSkill4Icon.png"; public static string texHuntressSkill1Icon = "RoR2/Junk/UI/texHuntressSkill1Icon.png"; public static string texHuntressSkill2Icon = "RoR2/Junk/UI/texHuntressSkill2Icon.png"; public static string texHuntressSkill3Icon = "RoR2/Junk/UI/texHuntressSkill3Icon.png"; public static string texHuntressSkill4Icon = "RoR2/Junk/UI/texHuntressSkill4Icon.png"; public static string texMageFireboltSplitIcon = "RoR2/Junk/UI/texMageFireboltSplitIcon.png"; public static string texWardSkillIcons = "RoR2/Junk/UI/texWardSkillIcons.png"; public static string texDisabledIcon = "RoR2/Junk/UI/texDisabledIcon.png"; public static string texHeartIcon = "RoR2/Junk/UI/texHeartIcon.png"; public static string texPlayerCardController = "RoR2/Junk/UI/texPlayerCardController.png"; public static string texPlayerCardKBM = "RoR2/Junk/UI/texPlayerCardKBM.png"; public static string texPlayerCardNone = "RoR2/Junk/UI/texPlayerCardNone.png"; public static string texUIAnimateHeader1 = "RoR2/Junk/UI/texUIAnimateHeader1.png"; public static string texUIAnimateRampGlow = "RoR2/Junk/UI/texUIAnimateRampGlow.png"; public static string texUIAnimateSlice1 = "RoR2/Junk/UI/texUIAnimateSlice1.png"; public static string texUIAnimateSlice1NestedOutlines = "RoR2/Junk/UI/texUIAnimateSlice1NestedOutlines.png"; public static string texUIAnimateSlice2 = "RoR2/Junk/UI/texUIAnimateSlice2.png"; public static string texUIHighlightCorners = "RoR2/Junk/UI/texUIHighlightCorners.png"; public static string texUIMainRounded = "RoR2/Junk/UI/texUIMainRounded.psd"; public static string texUISegmentedHealthbar = "RoR2/Junk/UI/texUISegmentedHealthbar.png"; public static string texUISSOverlay1 = "RoR2/Junk/UI/texUISSOverlay1.png"; public static string texUIWormGear = "RoR2/Junk/UI/texUIWormGear.png"; public static string texMinorConstructDiffuseOld = "RoR2/Junk_DLC1/MinorConstruct/texMinorConstructDiffuseOld.png"; public static string texMinorConstructEmissionOld = "RoR2/Junk_DLC1/MinorConstruct/texMinorConstructEmissionOld.png"; public static string texMinorConstructFresnelMaskOld = "RoR2/Junk_DLC1/MinorConstruct/texMinorConstructFresnelMaskOld.png"; public static string texMinorConstructNormalsOld = "RoR2/Junk_DLC1/MinorConstruct/texMinorConstructNormalsOld.png"; public static string texCrosshairRailgunnerPistol = "RoR2/Junk_DLC1/Railgunner/texCrosshairRailgunnerPistol.png"; public static string texNormalTilesDeeper = "RoR2/Junk_DLC1/Common/texNormalTilesDeeper.png"; public static string texTrimSheetMilitaryLightMetal = "RoR2/Junk_DLC1/Common/TrimSheets/texTrimSheetMilitaryLightMetal.png"; public static string texLunarPortalOnUseConsumedIcon = "RoR2/Junk_DLC1/LunarPortalOnUse/texLunarPortalOnUseConsumedIcon.png"; public static string texAttackSpeedAndMoveSpeed = "RoR2/Junk_DLC1/AttackSpeedAndMoveSpeed/texAttackSpeedAndMoveSpeed.png"; public static string texCloverVoidBackground = "RoR2/Junk_DLC1/CloverVoid/texCloverVoidBackground.png"; public static string texUIBackdropFadedEndCloverVoid = "RoR2/Junk_DLC1/CloverVoid/texUIBackdropFadedEndCloverVoid.png"; public static string texUIBackdropFadedEndsContagiousSplatter = "RoR2/Junk_DLC1/CloverVoid/texUIBackdropFadedEndsContagiousSplatter.png"; public static string texCritDamage = "RoR2/Junk_DLC1/CritDamage/texCritDamage.png"; public static string texElementalRingVoidIcon = "RoR2/Junk_DLC1/ElementalRingVoid/texElementalRingVoidIcon.png"; public static string texOrbBuffIcon = "RoR2/Junk_DLC1/EmpowerItems/EmpowerBuff/texOrbBuffIcon.png"; public static string texOrbMagazineIcon = "RoR2/Junk_DLC1/EmpowerItems/EmpowerMagazine/texOrbMagazineIcon.png"; public static string texOrbOnKillIcon = "RoR2/Junk_DLC1/EmpowerItems/EmpowerOnKill/texOrbOnKillIcon.png"; public static string texOrbRefreshIcon = "RoR2/Junk_DLC1/EmpowerItems/EmpowerRefresh/texOrbRefreshIcon.png"; public static string tesScrapTrimDiffuse = "RoR2/Junk_DLC1/EmpowerItems/tesScrapTrimDiffuse.png"; public static string tesScrapTrimFresnelMask = "RoR2/Junk_DLC1/EmpowerItems/tesScrapTrimFresnelMask.png"; public static string texScrapTrimNormals = "RoR2/Junk_DLC1/EmpowerItems/texScrapTrimNormals.png"; public static string texLunarShoulderStoneIconOLD = "RoR2/Junk_DLC1/FastAttacksLowDamage/texLunarShoulderStoneIconOLD.png"; public static string texMoveSpeedOnKill = "RoR2/Junk_DLC1/MoveSpeedOnKill/texMoveSpeedOnKill.png"; public static string texPermanentDebuffOnHitIcon = "RoR2/Junk_DLC1/PermanentDebuffOnHit/texPermanentDebuffOnHitIcon.png"; public static string texScrapGreenSuppressedIcon = "RoR2/Junk_DLC1/ScrapVoid/texScrapGreenSuppressedIcon.png"; public static string texScrapRedSuppressedIcon = "RoR2/Junk_DLC1/ScrapVoid/texScrapRedSuppressedIcon.png"; public static string texScrapWhiteSuppressedIcon = "RoR2/Junk_DLC1/ScrapVoid/texScrapWhiteSuppressedIcon.png"; public static string texVoidScrapIcon = "RoR2/Junk_DLC1/ScrapVoid/texVoidScrapIcon.png"; public static string texAchievementRewardTestDiffuse = "RoR2/AchievementRewardTest/texAchievementRewardTestDiffuse.tga"; public static string texAchievementRewardTestNormal = "RoR2/AchievementRewardTest/texAchievementRewardTestNormal.png"; public static string texAchievementRewartdTestIcon = "RoR2/AchievementRewardTest/texAchievementRewartdTestIcon.png"; public static string texColossusItemDiffuse = "RoR2/texColossusItemDiffuse.png"; public static string texColossusItemFresnelMask = "RoR2/texColossusItemFresnelMask.png"; public static string texColossusItemNormal = "RoR2/texColossusItemNormal.png"; } public static class ArtifactCompoundDef { public static string acdCircle = "RoR2/Base/ArtifactCompounds/acdCircle.asset"; public static string acdDiamond = "RoR2/Base/ArtifactCompounds/acdDiamond.asset"; public static string acdEmpty = "RoR2/Base/ArtifactCompounds/acdEmpty.asset"; public static string acdSquare = "RoR2/Base/ArtifactCompounds/acdSquare.asset"; public static string acdTriangle = "RoR2/Base/ArtifactCompounds/acdTriangle.asset"; } public static class GameObject { public static string ArtifactCompoundCircleDisplay = "RoR2/Base/ArtifactCompounds/ArtifactCompoundCircleDisplay.prefab"; public static string ArtifactCompoundDiamondDisplay = "RoR2/Base/ArtifactCompounds/ArtifactCompoundDiamondDisplay.prefab"; public static string ArtifactCompoundSquareDisplay = "RoR2/Base/ArtifactCompounds/ArtifactCompoundSquareDisplay.prefab"; public static string ArtifactCompoundTriangleDisplay = "RoR2/Base/ArtifactCompounds/ArtifactCompoundTriangleDisplay.prefab"; public static string PickupBomb = "RoR2/Base/Bomb/PickupBomb.prefab"; public static string SpiteBomb = "RoR2/Base/Bomb/SpiteBomb.prefab"; public static string CommandCube = "RoR2/Base/Command/CommandCube.prefab"; public static string CommandPickerPanel = "RoR2/Base/Command/CommandPickerPanel.prefab"; public static string PickupCommand = "RoR2/Base/Command/PickupCommand.prefab"; public static string PickupEliteOnly = "RoR2/Base/EliteOnly/PickupEliteOnly.prefab"; public static string PickupEnigma = "RoR2/Base/Enigma/PickupEnigma.prefab"; public static string PickupFriendlyFire = "RoR2/Base/FriendlyFire/PickupFriendlyFire.prefab"; public static string PickupGlass = "RoR2/Base/Glass/PickupGlass.prefab"; public static string PickupMixEnemy = "RoR2/Base/MixEnemy/PickupMixEnemy.prefab"; public static string MonsterTeamGainsItemsArtifactInventory = "RoR2/Base/MonsterTeamGainsItems/MonsterTeamGainsItemsArtifactInventory.prefab"; public static string PickupMonsterTeamGainsItems = "RoR2/Base/MonsterTeamGainsItems/PickupMonsterTeamGainsItems.prefab"; public static string PickupRandomSurvivorOnRespawn = "RoR2/Base/RandomSurvivorOnRespawn/PickupRandomSurvivorOnRespawn.prefab"; public static string PickupSacrifice = "RoR2/Base/Sacrifice/PickupSacrifice.prefab"; public static string PickupShadowClone = "RoR2/Base/ShadowClone/PickupShadowClone.prefab"; public static string ShadowCloneEncounter = "RoR2/Base/ShadowClone/ShadowCloneEncounter.prefab"; public static string PickupSingleMonsterType = "RoR2/Base/SingleMonsterType/PickupSingleMonsterType.prefab"; public static string PickupSwarms = "RoR2/Base/Swarms/PickupSwarms.prefab"; public static string PickupTeamDeath = "RoR2/Base/TeamDeath/PickupTeamDeath.prefab"; public static string PickupWAK = "RoR2/Base/WeakAssKnees/PickupWAK.prefab"; public static string PickupWispOnKill = "RoR2/Base/WispOnDeath/PickupWispOnKill.prefab"; public static string WispSoulBody = "RoR2/Base/WispOnDeath/WispSoulBody.prefab"; public static string WispSoulMaster = "RoR2/Base/WispOnDeath/WispSoulMaster.prefab"; public static string AltarSkeletonBody = "RoR2/Base/AltarSkeleton/AltarSkeletonBody.prefab"; public static string mdlAltarSkeleton = "RoR2/Base/AltarSkeleton/mdlAltarSkeleton.fbx"; public static string OmniExplosionVFXAltarSkeleton = "RoR2/Base/AltarSkeleton/OmniExplosionVFXAltarSkeleton.prefab"; public static string ArtifactShellBody = "RoR2/Base/ArtifactShell/ArtifactShellBody.prefab"; public static string ArtifactShellExplosion = "RoR2/Base/ArtifactShell/ArtifactShellExplosion.prefab"; public static string ArtifactShellMaster = "RoR2/Base/ArtifactShell/ArtifactShellMaster.prefab"; public static string ArtifactShellSeekingSolarFlare = "RoR2/Base/ArtifactShell/ArtifactShellSeekingSolarFlare.prefab"; public static string ExplosionSolarFlare = "RoR2/Base/ArtifactShell/ExplosionSolarFlare.prefab"; public static string SolarFlareGhost = "RoR2/Base/ArtifactShell/SolarFlareGhost.prefab"; public static string mdlBandit2BladeToMain = "RoR2/Base/Bandit2/mdlBandit2@BladeToMain.fbx"; public static string mdlBandit2Flinches = "RoR2/Base/Bandit2/mdlBandit2@Flinches.fbx"; public static string mdlBandit2IdleAdditive = "RoR2/Base/Bandit2/mdlBandit2@IdleAdditive.fbx"; public static string mdlBandit2MasterAnims = "RoR2/Base/Bandit2/mdlBandit2@MasterAnims.fbx"; public static string mdlBandit2ReloadMainWeapon = "RoR2/Base/Bandit2/mdlBandit2@ReloadMainWeapon.fbx"; public static string mdlBandit2RunBMainWeapon = "RoR2/Base/Bandit2/mdlBandit2@RunB_MainWeapon.fbx"; public static string mdlBandit2RunBRMainWeapon = "RoR2/Base/Bandit2/mdlBandit2@RunBR_MainWeapon.fbx"; public static string mdlBandit2RunFMainWeapon = "RoR2/Base/Bandit2/mdlBandit2@RunF_MainWeapon.fbx"; public static string mdlBandit2RunFRMainWeapon = "RoR2/Base/Bandit2/mdlBandit2@RunFR_MainWeapon.fbx"; public static string mdlBandit2RunLMainWeapon = "RoR2/Base/Bandit2/mdlBandit2@RunL_MainWeapon.fbx"; public static string mdlBandit2RunRMainWeapon = "RoR2/Base/Bandit2/mdlBandit2@RunR_MainWeapon.fbx"; public static string mdlBandit2SelectPose = "RoR2/Base/Bandit2/mdlBandit2@SelectPose.fbx"; public static string mdlBandit2SlashBlade = "RoR2/Base/Bandit2/mdlBandit2@SlashBlade.fbx"; public static string mdlBandit2SprintF = "RoR2/Base/Bandit2/mdlBandit2@SprintF.fbx"; public static string Bandit2Body = "RoR2/Base/Bandit2/Bandit2Body.prefab"; public static string Bandit2Crosshair = "RoR2/Base/Bandit2/Bandit2Crosshair.prefab"; public static string Bandit2Display = "RoR2/Base/Bandit2/Bandit2Display.prefab"; public static string Bandit2KillEffect = "RoR2/Base/Bandit2/Bandit2KillEffect.prefab"; public static string Bandit2MonsterMaster = "RoR2/Base/Bandit2/Bandit2MonsterMaster.prefab"; public static string Bandit2ResetEffect = "RoR2/Base/Bandit2/Bandit2ResetEffect.prefab"; public static string Bandit2ShivGhostAlt = "RoR2/Base/Bandit2/Bandit2ShivGhostAlt.prefab"; public static string Bandit2SlashBlade = "RoR2/Base/Bandit2/Bandit2SlashBlade.prefab"; public static string Bandit2SmokeBombMini = "RoR2/Base/Bandit2/Bandit2SmokeBombMini.prefab"; public static string mdlBanditKnife = "RoR2/Base/Bandit2/mdlBanditKnife.fbx"; public static string mdlBanditKnife24 = "RoR2/Base/Bandit2/mdlBanditKnife.prefab"; public static string mdlBanditKnifeAlt = "RoR2/Base/Bandit2/mdlBanditKnifeAlt.fbx"; public static string mdlBanditRevolver = "RoR2/Base/Bandit2/mdlBanditRevolver.fbx"; public static string BanditShotgun = "RoR2/Base/Bandit2/BanditShotgun.fbx"; public static string BanditShotgunAlt = "RoR2/Base/Bandit2/BanditShotgunAlt.fbx"; public static string mdlBanditThrownKnife = "RoR2/Base/Bandit2/mdlBanditThrownKnife.fbx"; public static string mdlBandit2 = "RoR2/Base/Bandit2/mdlBandit2.fbx"; public static string Bandit2CrosshairPrepRevolver = "RoR2/Base/Bandit2/Bandit2CrosshairPrepRevolver.prefab"; public static string Bandit2CrosshairPrepRevolverFire = "RoR2/Base/Bandit2/Bandit2CrosshairPrepRevolverFire.prefab"; public static string Bandit2ShivGhost = "RoR2/Base/Bandit2/Bandit2ShivGhost.prefab"; public static string Bandit2ShivProjectile = "RoR2/Base/Bandit2/Bandit2ShivProjectile.prefab"; public static string Bandit2SmokeBomb = "RoR2/Base/Bandit2/Bandit2SmokeBomb.prefab"; public static string mdlBandit2AltColossus = "RoR2/Base/Bandit2/mdlBandit2AltColossus.fbx"; public static string mdlBandit2AltPistolColossus = "RoR2/Base/Bandit2/mdlBandit2AltPistolColossus.fbx"; public static string mdlBandit2AltShotgunColossus = "RoR2/Base/Bandit2/mdlBandit2AltShotgunColossus.fbx"; public static string mdlBanditAltSolus = "RoR2/Base/Bandit2/mdlBanditAltSolus.fbx"; public static string vfxWireTrailBandit = "RoR2/Base/Bandit2/vfxWireTrailBandit.prefab"; public static string mdlBandit2Alt = "RoR2/Base/Bandit2/mdlBandit2Alt.fbx"; public static string BackstabIndicator = "RoR2/Base/Bandit2/BackstabIndicator.prefab"; public static string Bandit2Reload = "RoR2/Base/Bandit2/Bandit2Reload.prefab"; public static string Bandit2ThrowShiv = "RoR2/Base/Bandit2/Bandit2ThrowShiv.prefab"; public static string HitsparkBandit = "RoR2/Base/Bandit2/HitsparkBandit.prefab"; public static string HitsparkBandit2Pistol = "RoR2/Base/Bandit2/HitsparkBandit2Pistol.prefab"; public static string MuzzleflashBandit2 = "RoR2/Base/Bandit2/MuzzleflashBandit2.prefab"; public static string TracerBandit2Rifle = "RoR2/Base/Bandit2/TracerBandit2Rifle.prefab"; public static string TracerBandit2Shotgun = "RoR2/Base/Bandit2/TracerBandit2Shotgun.prefab"; public static string TracerBanditPistol = "RoR2/Base/Bandit2/TracerBanditPistol.prefab"; public static string BeetleBody = "RoR2/Base/Beetle/BeetleBody.prefab"; public static string BeetleMaster = "RoR2/Base/Beetle/BeetleMaster.prefab"; public static string mdlBeetle = "RoR2/Base/Beetle/mdlBeetle.fbx"; public static string BeetleGuardBody = "RoR2/Base/BeetleGuard/BeetleGuardBody.prefab"; public static string BeetleGuardDeathImpact = "RoR2/Base/BeetleGuard/BeetleGuardDeathImpact.prefab"; public static string BeetleGuardDeathImpactopt = "RoR2/Base/BeetleGuard/BeetleGuardDeathImpact_opt.prefab"; public static string BeetleGuardMaster = "RoR2/Base/BeetleGuard/BeetleGuardMaster.prefab"; public static string BeetleGuardStep = "RoR2/Base/BeetleGuard/BeetleGuardStep.prefab"; public static string BeetleGuardSunderPop = "RoR2/Base/BeetleGuard/BeetleGuardSunderPop.prefab"; public static string mdlBeetleGuard = "RoR2/Base/BeetleGuard/mdlBeetleGuard.fbx"; public static string BeetleGuardDefenseUp = "RoR2/Base/BeetleGuard/BeetleGuardDefenseUp.prefab"; public static string BeetleGuardDefenseUpopt = "RoR2/Base/BeetleGuard/BeetleGuardDefenseUp_opt.prefab"; public static string BeetleGuardGroundSlam = "RoR2/Base/BeetleGuard/BeetleGuardGroundSlam.prefab"; public static string BeetleGuardGroundSlamopt = "RoR2/Base/BeetleGuard/BeetleGuardGroundSlam_opt.prefab"; public static string BeetleImpact = "RoR2/Base/BeetleGuard/BeetleImpact.prefab"; public static string BeetleSlamCharge = "RoR2/Base/BeetleGuard/BeetleSlamCharge.prefab"; public static string Sunder = "RoR2/Base/BeetleGuard/Sunder.prefab"; public static string SunderGhost = "RoR2/Base/BeetleGuard/SunderGhost.prefab"; public static string BeetleQueen2Body = "RoR2/Base/BeetleQueen/BeetleQueen2Body.prefab"; public static string BeetleQueenBurrow = "RoR2/Base/BeetleQueen/BeetleQueenBurrow.prefab"; public static string BeetleQueenDeathImpact = "RoR2/Base/BeetleQueen/BeetleQueenDeathImpact.prefab"; public static string BeetleQueenMaster = "RoR2/Base/BeetleQueen/BeetleQueenMaster.prefab"; public static string BeetleQueenScreamDeath = "RoR2/Base/BeetleQueen/BeetleQueenScreamDeath.prefab"; public static string mdlBeetleQueen = "RoR2/Base/BeetleQueen/mdlBeetleQueen.fbx"; public static string BeetleAcidImpact = "RoR2/Base/BeetleQueen/BeetleAcidImpact.prefab"; public static string BeetleQueenAcid = "RoR2/Base/BeetleQueen/BeetleQueenAcid.prefab"; public static string BeetleQueenAcidGhost = "RoR2/Base/BeetleQueen/BeetleQueenAcidGhost.prefab"; public static string BeetleQueenScream = "RoR2/Base/BeetleQueen/BeetleQueenScream.prefab"; public static string BeetleQueenSpit = "RoR2/Base/BeetleQueen/BeetleQueenSpit.prefab"; public static string BeetleQueenSpitGhost = "RoR2/Base/BeetleQueen/BeetleQueenSpitGhost.prefab"; public static string BeetleSpitExplosion = "RoR2/Base/BeetleQueen/BeetleSpitExplosion.prefab"; public static string ChargeBeetleSpit = "RoR2/Base/BeetleQueen/ChargeBeetleSpit.prefab"; public static string MuzzleFlashBeetleSpit = "RoR2/Base/BeetleQueen/MuzzleFlashBeetleSpit.prefab"; public static string BeetleWard = "RoR2/Base/BeetleGroup/BeetleWard/BeetleWard.prefab"; public static string BeetleWardDeathEffect = "RoR2/Base/BeetleGroup/BeetleWard/BeetleWardDeathEffect.prefab"; public static string BeetleWardOrbEffect = "RoR2/Base/BeetleGroup/BeetleWard/BeetleWardOrbEffect.prefab"; public static string mdlBeetleWard = "RoR2/Base/BeetleGroup/BeetleWard/mdlBeetleWard.fbx"; public static string mdlBeetleGuardRock = "RoR2/Base/BeetleGroup/mdlBeetleGuardRock.fbx"; public static string belleffectmeshes = "RoR2/Base/Bell/bell effect meshes.fbx"; public static string BellBallSmall = "RoR2/Base/Bell/BellBallSmall.prefab"; public static string BellBallSmallGhost = "RoR2/Base/Bell/BellBallSmallGhost.prefab"; public static string BellBody = "RoR2/Base/Bell/BellBody.prefab"; public static string BellBodyPartsImpact = "RoR2/Base/Bell/BellBodyPartsImpact.prefab"; public static string BellBuffBeam = "RoR2/Base/Bell/BellBuffBeam.prefab"; public static string BellMaster = "RoR2/Base/Bell/BellMaster.prefab"; public static string mdlBell = "RoR2/Base/Bell/mdlBell.fbx"; public static string OmniExplosionVFXBellDeath = "RoR2/Base/Bell/OmniExplosionVFXBellDeath.prefab"; public static string PreppedBellBall = "RoR2/Base/Bell/PreppedBellBall.prefab"; public static string BellBall = "RoR2/Base/Bell/BellBall.prefab"; public static string BellBallGhost = "RoR2/Base/Bell/BellBallGhost.prefab"; public static string BirdsharkBody = "RoR2/Base/Birdshark/BirdsharkBody.prefab"; public static string BirdsharkDeathEffect = "RoR2/Base/Birdshark/BirdsharkDeathEffect.prefab"; public static string mdlBirdshark = "RoR2/Base/Birdshark/mdlBirdshark.fbx"; public static string BisonBody = "RoR2/Base/Bison/BisonBody.prefab"; public static string BisonChargeStep = "RoR2/Base/Bison/BisonChargeStep.prefab"; public static string BisonMaster = "RoR2/Base/Bison/BisonMaster.prefab"; public static string BisonSpawnEffect = "RoR2/Base/Bison/BisonSpawnEffect.prefab"; public static string BisonSpawnEffectopt = "RoR2/Base/Bison/BisonSpawnEffect_opt.prefab"; public static string mdlBison = "RoR2/Base/Bison/mdlBison.fbx"; public static string ChargeBisonCharge = "RoR2/Base/Bison/ChargeBisonCharge.prefab"; public static string brotherprops = "RoR2/Base/Brother/brother props.fbx"; public static string BrotherBody = "RoR2/Base/Brother/BrotherBody.prefab"; public static string BrotherDeathEffect = "RoR2/Base/Brother/BrotherDeathEffect.prefab"; public static string BrotherMaster = "RoR2/Base/Brother/BrotherMaster.prefab"; public static string ITBrotherBody = "RoR2/Base/Brother/ITBrotherBody.prefab"; public static string ITBrotherMaster = "RoR2/Base/Brother/ITBrotherMaster.prefab"; public static string BrotherFirePillar = "RoR2/Base/Brother/BrotherFirePillar.prefab"; public static string BrotherFirePillarGhost = "RoR2/Base/Brother/BrotherFirePillarGhost.prefab"; public static string BrotherSlamImpact = "RoR2/Base/Brother/BrotherSlamImpact.prefab"; public static string BrotherSunderWave = "RoR2/Base/Brother/BrotherSunderWave.prefab"; public static string BrotherSunderWaveGhost = "RoR2/Base/Brother/BrotherSunderWaveGhost.prefab"; public static string BrotherUltLineGhost = "RoR2/Base/Brother/BrotherUltLineGhost.prefab"; public static string BrotherUltLineProjectileRotateLeft = "RoR2/Base/Brother/BrotherUltLineProjectileRotateLeft.prefab"; public static string BrotherUltLineProjectileRotateRight = "RoR2/Base/Brother/BrotherUltLineProjectileRotateRight.prefab"; public static string ItemStealEndMuzzleflash = "RoR2/Base/Brother/ItemStealEndMuzzleflash.prefab"; public static string BrotherBigFootstep = "RoR2/Base/Brother/BrotherBigFootstep.prefab"; public static string BrotherDashEffect = "RoR2/Base/Brother/BrotherDashEffect.prefab"; public static string BrotherHurtBody = "RoR2/Base/Brother/BrotherHurtBody.prefab"; public static string BrotherHurtMaster = "RoR2/Base/Brother/BrotherHurtMaster.prefab"; public static string BrotherSunderWaveEnergizedGhost = "RoR2/Base/Brother/BrotherSunderWave, Energized Ghost.prefab"; public static string BrotherSunderWaveEnergized = "RoR2/Base/Brother/BrotherSunderWave, Energized.prefab"; public static string LunarShardGhost = "RoR2/Base/Brother/LunarShardGhost.prefab"; public static string LunarShardProjectile = "RoR2/Base/Brother/LunarShardProjectile.prefab"; public static string MuzzleflashLunarShard = "RoR2/Base/Brother/MuzzleflashLunarShard.prefab"; public static string OmniImpactVFXBrotherLunarShardExplosion = "RoR2/Base/Brother/OmniImpactVFXBrotherLunarShardExplosion.prefab"; public static string BrotherRing = "RoR2/Base/Brother/BrotherRing.prefab"; public static string BrotherFootstepDust = "RoR2/Base/Brother/BrotherFootstepDust.prefab"; public static string BrotherSwing1Kickup = "RoR2/Base/Brother/BrotherSwing1, Kickup.prefab"; public static string BrotherSwing1 = "RoR2/Base/Brother/BrotherSwing1.prefab"; public static string ChargeBrotherFist = "RoR2/Base/Brother/ChargeBrotherFist.prefab"; public static string ItemStealChargeFX = "RoR2/Base/Brother/ItemStealChargeFX.prefab"; public static string IdleForLogBookmdlBrother = "RoR2/Base/Brother/IdleForLogBook@mdlBrother.fbx"; public static string ItemInfectionBlue = "RoR2/Base/Brother/ItemInfection, Blue.prefab"; public static string ItemInfectionBoss = "RoR2/Base/Brother/ItemInfection, Boss.prefab"; public static string ItemInfectionFood = "RoR2/Base/Brother/ItemInfection, Food.prefab"; public static string ItemInfectionGreen = "RoR2/Base/Brother/ItemInfection, Green.prefab"; public static string ItemInfectionRed = "RoR2/Base/Brother/ItemInfection, Red.prefab"; public static string ItemInfectionVoid = "RoR2/Base/Brother/ItemInfection, Void.prefab"; public static string ItemInfectionVoidWhite = "RoR2/Base/Brother/ItemInfection, VoidWhite.prefab"; public static string ItemInfectionWhite = "RoR2/Base/Brother/ItemInfection, White.prefab"; public static string ItemStealController = "RoR2/Base/Brother/ItemStealController.prefab"; public static string mdlBrother = "RoR2/Base/Brother/mdlBrother.fbx"; public static string mdlBrotherThrone = "RoR2/Base/Brother/mdlBrotherThrone.fbx"; public static string BrotherHauntBody = "RoR2/Base/BrotherHaunt/BrotherHauntBody.prefab"; public static string BrotherHauntMaster = "RoR2/Base/BrotherHaunt/BrotherHauntMaster.prefab"; public static string BrotherUltLineGhostSimple = "RoR2/Base/BrotherHaunt/BrotherUltLineGhost, Simple.prefab"; public static string BrotherUltLineProjectileStatic = "RoR2/Base/BrotherHaunt/BrotherUltLineProjectileStatic.prefab"; public static string mdlCaptainAltColossus = "RoR2/Base/Captain/mdlCaptainAltColossus.fbx"; public static string mdlCaptainAltSolus = "RoR2/Base/Captain/mdlCaptainAltSolus.fbx"; public static string vfxWireTrailCaptain = "RoR2/Base/Captain/vfxWireTrailCaptain.prefab"; public static string captainsupplydrop = "RoR2/Base/Captain/captain supply drop.fbx"; public static string CaptainAirstrikeMuzzleEffect = "RoR2/Base/Captain/CaptainAirstrikeMuzzleEffect.prefab"; public static string CaptainBody = "RoR2/Base/Captain/CaptainBody.prefab"; public static string CaptainCrosshair = "RoR2/Base/Captain/CaptainCrosshair.prefab"; public static string CaptainDisplay = "RoR2/Base/Captain/CaptainDisplay.prefab"; public static string CaptainMonsterMaster = "RoR2/Base/Captain/CaptainMonsterMaster.prefab"; public static string CaptainHealingWard = "RoR2/Base/Captain/CaptainHealingWard.prefab"; public static string CaptainSuplyDropExplosion = "RoR2/Base/Captain/CaptainSuplyDropExplosion.prefab"; public static string CaptainSupplyDropBase = "RoR2/Base/Captain/CaptainSupplyDrop, Base.prefab"; public static string CaptainSupplyDropEquipmentRestock = "RoR2/Base/Captain/CaptainSupplyDrop, EquipmentRestock.prefab"; public static string CaptainSupplyDropHacking = "RoR2/Base/Captain/CaptainSupplyDrop, Hacking.prefab"; public static string CaptainSupplyDropHealing = "RoR2/Base/Captain/CaptainSupplyDrop, Healing.prefab"; public static string CaptainSupplyDropPlating = "RoR2/Base/Captain/CaptainSupplyDrop, Plating.prefab"; public static string CaptainSupplyDropShocking = "RoR2/Base/Captain/CaptainSupplyDrop, Shocking.prefab"; public static string CaptainTazerSupplyDropNova = "RoR2/Base/Captain/CaptainTazerSupplyDropNova.prefab"; public static string HackingCircleVFX = "RoR2/Base/Captain/HackingCircleVFX.prefab"; public static string captainfletchette = "RoR2/Base/Captain/captain fletchette.fbx"; public static string CaptainPrepSupplyDropEffect = "RoR2/Base/Captain/CaptainPrepSupplyDropEffect.prefab"; public static string CaptainRadioEffect = "RoR2/Base/Captain/CaptainRadioEffect.prefab"; public static string CaptainSupplyDropBlueprint = "RoR2/Base/Captain/CaptainSupplyDropBlueprint.prefab"; public static string mdlCaptain = "RoR2/Base/Captain/mdlCaptain.fbx"; public static string mdlCaptainMaster = "RoR2/Base/Captain/mdlCaptain@Master.fbx"; public static string CaptainAirstrikeAltGhost = "RoR2/Base/Captain/CaptainAirstrikeAltGhost.prefab"; public static string CaptainAirstrikeAltImpact = "RoR2/Base/Captain/CaptainAirstrikeAltImpact.prefab"; public static string CaptainAirstrikeAltProjectile = "RoR2/Base/Captain/CaptainAirstrikeAltProjectile.prefab"; public static string CaptainAirstrikeCrosshair = "RoR2/Base/Captain/CaptainAirstrikeCrosshair.prefab"; public static string CaptainAirstrikeGhost1 = "RoR2/Base/Captain/CaptainAirstrikeGhost1.prefab"; public static string CaptainAirstrikeImpact1 = "RoR2/Base/Captain/CaptainAirstrikeImpact1.prefab"; public static string CaptainAirstrikeProjectile1 = "RoR2/Base/Captain/CaptainAirstrikeProjectile1.prefab"; public static string CaptainChargeTazer = "RoR2/Base/Captain/CaptainChargeTazer.prefab"; public static string CaptainSupplyDropCrosshair = "RoR2/Base/Captain/CaptainSupplyDropCrosshair.prefab"; public static string CaptainTazer30 = "RoR2/Base/Captain/CaptainTazer.prefab"; public static string CaptainTazerGhost = "RoR2/Base/Captain/CaptainTazerGhost.prefab"; public static string CaptainTazerNova = "RoR2/Base/Captain/CaptainTazerNova.prefab"; public static string HitsparkCaptainShotgun = "RoR2/Base/Captain/HitsparkCaptainShotgun.prefab"; public static string MuzzleflashSupplyDropHealing = "RoR2/Base/Captain/MuzzleflashSupplyDrop, Healing.prefab"; public static string SpearChargedVFX = "RoR2/Base/Captain/SpearChargedVFX.prefab"; public static string TracerCaptainShotgun = "RoR2/Base/Captain/TracerCaptainShotgun.prefab"; public static string ClayBossBody = "RoR2/Base/ClayBoss/ClayBossBody.prefab"; public static string ClayBossDeath = "RoR2/Base/ClayBoss/ClayBossDeath.prefab"; public static string ClayBossMaster = "RoR2/Base/ClayBoss/ClayBossMaster.prefab"; public static string ClayBossPreDeath = "RoR2/Base/ClayBoss/ClayBossPreDeath.prefab"; public static string ClayBossSpawnEffect = "RoR2/Base/ClayBoss/ClayBossSpawnEffect.prefab"; public static string mdlClayBoss = "RoR2/Base/ClayBoss/mdlClayBoss.fbx"; public static string mdlClayBossGooSkirt = "RoR2/Base/ClayBoss/mdlClayBossGooSkirt.fbx"; public static string mdlClayBossShattered = "RoR2/Base/ClayBoss/mdlClayBossShattered.fbx"; public static string mdlClayProjectile = "RoR2/Base/ClayBoss/mdlClayProjectile.fbx"; public static string mdlClayProjectileShattered = "RoR2/Base/ClayBoss/mdlClayProjectileShattered.fbx"; public static string mdlTarball = "RoR2/Base/ClayBoss/mdlTarball.fbx"; public static string ChargeClayBossBombardment = "RoR2/Base/ClayBoss/ChargeClayBossBombardment.prefab"; public static string ClayBossMulcher = "RoR2/Base/ClayBoss/ClayBossMulcher.prefab"; public static string ClayPotProjectile = "RoR2/Base/ClayBoss/ClayPotProjectile.prefab"; public static string ClayPotProjectileExplosion = "RoR2/Base/ClayBoss/ClayPotProjectileExplosion.prefab"; public static string ClayPotProjectileGhost = "RoR2/Base/ClayBoss/ClayPotProjectileGhost.prefab"; public static string MuzzleflashClayBoss = "RoR2/Base/ClayBoss/MuzzleflashClayBoss.prefab"; public static string TarballExplosion = "RoR2/Base/ClayBoss/TarballExplosion.prefab"; public static string TarballGhost = "RoR2/Base/ClayBoss/TarballGhost.prefab"; public static string TarSeeker = "RoR2/Base/ClayBoss/TarSeeker.prefab"; public static string TarTether = "RoR2/Base/ClayBoss/TarTether.prefab"; public static string TarTrail = "RoR2/Base/ClayBoss/TarTrail.prefab"; public static string TarTrailSegment = "RoR2/Base/ClayBoss/TarTrailSegment.prefab"; public static string ChargeClayBruiserMinigun = "RoR2/Base/ClayBruiser/ChargeClayBruiserMinigun.prefab"; public static string ChargeVultureWindblade = "RoR2/Base/ClayBruiser/ChargeVultureWindblade.prefab"; public static string ChargeVultureWindbladeopt = "RoR2/Base/ClayBruiser/ChargeVultureWindblade_opt.prefab"; public static string ClayBruiserBody = "RoR2/Base/ClayBruiser/ClayBruiserBody.prefab"; public static string ClayBruiserDeathEffect = "RoR2/Base/ClayBruiser/ClayBruiserDeathEffect.prefab"; public static string ClayBruiserDeathHead = "RoR2/Base/ClayBruiser/ClayBruiserDeathHead.prefab"; public static string ClayBruiserMaster = "RoR2/Base/ClayBruiser/ClayBruiserMaster.prefab"; public static string ClayBruiserSpawnEffect = "RoR2/Base/ClayBruiser/ClayBruiserSpawnEffect.prefab"; public static string mdlClayBruiser = "RoR2/Base/ClayBruiser/mdlClayBruiser.fbx"; public static string ClayMinigunVFX = "RoR2/Base/ClayBruiser/ClayMinigunVFX.prefab"; public static string ClayShockwaveEffect = "RoR2/Base/ClayBruiser/ClayShockwaveEffect.prefab"; public static string TracerClayBruiserMinigun = "RoR2/Base/ClayBruiser/TracerClayBruiserMinigun.prefab"; public static string mdlCommandoAltColossus = "RoR2/Base/Commando/mdlCommandoAltColossus.fbx"; public static string mdlCommandlAltVulture = "RoR2/Base/Commando/mdlCommandlAltVulture.fbx"; public static string mdlCommandlAltVultureGrenade = "RoR2/Base/Commando/mdlCommandlAltVultureGrenade.fbx"; public static string commandogrenade = "RoR2/Base/Commando/commando grenade.fbx"; public static string commandoVFX = "RoR2/Base/Commando/commando VFX.fbx"; public static string CommandoBody = "RoR2/Base/Commando/CommandoBody.prefab"; public static string CommandoDisplay = "RoR2/Base/Commando/CommandoDisplay.prefab"; public static string CommandoMonsterMaster = "RoR2/Base/Commando/CommandoMonsterMaster.prefab"; public static string CommandoReloadFX = "RoR2/Base/Commando/CommandoReloadFX.prefab"; public static string CommandoSlideVFX = "RoR2/Base/Commando/CommandoSlideVFX.prefab"; public static string HitsparkCommando = "RoR2/Base/Commando/HitsparkCommando.prefab"; public static string mdlCommandoDualies = "RoR2/Base/Commando/mdlCommandoDualies.fbx"; public static string mdlCommandoDualiesDisplay = "RoR2/Base/Commando/mdlCommandoDualies@Display.fbx"; public static string mdlCommandoDualiesMasterAnims = "RoR2/Base/Commando/mdlCommandoDualies@MasterAnims.fbx"; public static string mdlCommandoSpecOps = "RoR2/Base/Commando/mdlCommandoSpecOps.fbx"; public static string CommandoDashJets = "RoR2/Base/Commando/CommandoDashJets.prefab"; public static string CommandoGrenadeGhost = "RoR2/Base/Commando/CommandoGrenadeGhost.prefab"; public static string CommandoGrenadeProjectile = "RoR2/Base/Commando/CommandoGrenadeProjectile.prefab"; public static string FMJRamping = "RoR2/Base/Commando/FMJRamping.prefab"; public static string FMJRampingGhost = "RoR2/Base/Commando/FMJRampingGhost.prefab"; public static string HitsparkCommandoShotgun = "RoR2/Base/Commando/HitsparkCommandoShotgun.prefab"; public static string MuzzleflashFMJ = "RoR2/Base/Commando/MuzzleflashFMJ.prefab"; public static string OmniExplosionVFXCommandoGrenade = "RoR2/Base/Commando/OmniExplosionVFXCommandoGrenade.prefab"; public static string OmniExplosionVFXFMJ = "RoR2/Base/Commando/OmniExplosionVFXFMJ.prefab"; public static string TracerCommandoShotgun = "RoR2/Base/Commando/TracerCommandoShotgun.prefab"; public static string TracerCommandoDefault = "RoR2/Base/Commando/TracerCommandoDefault.prefab"; public static string mdlCrocoColossus = "RoR2/Base/Croco/mdlCrocoColossus.fbx"; public static string mdlAcridVultureSkin = "RoR2/Base/Croco/mdlAcridVultureSkin.fbx"; public static string BlightEffect = "RoR2/Base/Croco/BlightEffect.prefab"; public static string crocoprops = "RoR2/Base/Croco/croco props.fbx"; public static string CrocoBiteEffect = "RoR2/Base/Croco/CrocoBiteEffect.prefab"; public static string CrocoBody = "RoR2/Base/Croco/CrocoBody.prefab"; public static string CrocoChainableFistEffect = "RoR2/Base/Croco/CrocoChainableFistEffect.prefab"; public static string CrocoComboFinisherSlash = "RoR2/Base/Croco/CrocoComboFinisherSlash.prefab"; public static string CrocoCrosshair = "RoR2/Base/Croco/CrocoCrosshair.prefab"; public static string CrocoDisplay = "RoR2/Base/Croco/CrocoDisplay.prefab"; public static string CrocoDisplaySpawnEffect = "RoR2/Base/Croco/CrocoDisplaySpawnEffect.prefab"; public static string CrocoFistEffect = "RoR2/Base/Croco/CrocoFistEffect.prefab"; public static string CrocoMonsterMaster = "RoR2/Base/Croco/CrocoMonsterMaster.prefab"; public static string CrocoRegenEffect = "RoR2/Base/Croco/CrocoRegenEffect.prefab"; public static string CrocoSlash = "RoR2/Base/Croco/CrocoSlash.prefab"; public static string CrocoSpawnEffect = "RoR2/Base/Croco/CrocoSpawnEffect.prefab"; public static string mdlCroco = "RoR2/Base/Croco/mdlCroco.fbx"; public static string mdlCrocoMaster = "RoR2/Base/Croco/mdlCroco@Master.fbx"; public static string PoisonEffect = "RoR2/Base/Croco/PoisonEffect.prefab"; public static string CrocoChainableLeapExplosion = "RoR2/Base/Croco/CrocoChainableLeapExplosion.prefab"; public static string CrocoDiseaseGhost = "RoR2/Base/Croco/CrocoDiseaseGhost.prefab"; public static string CrocoDiseaseImpactEffect = "RoR2/Base/Croco/CrocoDiseaseImpactEffect.prefab"; public static string CrocoDiseaseOrbEffect = "RoR2/Base/Croco/CrocoDiseaseOrbEffect.prefab"; public static string CrocoDiseaseProjectile = "RoR2/Base/Croco/CrocoDiseaseProjectile.prefab"; public static string CrocoLeapAcid = "RoR2/Base/Croco/CrocoLeapAcid.prefab"; public static string CrocoLeapAcidGhost = "RoR2/Base/Croco/CrocoLeapAcidGhost.prefab"; public static string CrocoLeapExplosion = "RoR2/Base/Croco/CrocoLeapExplosion.prefab"; public static string CrocoSpit5 = "RoR2/Base/Croco/CrocoSpit.prefab"; public static string CrocoSpitGhost = "RoR2/Base/Croco/CrocoSpitGhost.prefab"; public static string MuzzleflashCroco = "RoR2/Base/Croco/MuzzleflashCroco.prefab"; public static string BackupDroneBody = "RoR2/Base/Drones/BackupDroneBody.prefab"; public static string BackupDroneBodyRemoteOp = "RoR2/Base/Drones/BackupDroneBodyRemoteOp.prefab"; public static string DroneBackupMaster = "RoR2/Base/Drones/DroneBackupMaster.prefab"; public static string mdlBackupDrone = "RoR2/Base/Drones/mdlBackupDrone.fbx"; public static string mdlDroneBackupOLD = "RoR2/Base/Drones/mdlDroneBackupOLD.fbx"; public static string BrokenDroneVFX = "RoR2/Base/Drones/BrokenDroneVFX.prefab"; public static string Drone1Update = "RoR2/Base/Drones/Drone1_Update.fbx"; public static string Drone1Body = "RoR2/Base/Drones/Drone1Body.prefab"; public static string Drone1BodyRemoteOp = "RoR2/Base/Drones/Drone1BodyRemoteOp.prefab"; public static string Drone1Broken = "RoR2/Base/Drones/Drone1Broken.prefab"; public static string Drone1Master = "RoR2/Base/Drones/Drone1Master.prefab"; public static string mdlDrone1 = "RoR2/Base/Drones/mdlDrone1.fbx"; public static string PickupDrone1 = "RoR2/Base/Drones/PickupDrone1.prefab"; public static string Drone2Body = "RoR2/Base/Drones/Drone2Body.prefab"; public static string Drone2BodyRemoteOp = "RoR2/Base/Drones/Drone2BodyRemoteOp.prefab"; public static string Drone2Broken = "RoR2/Base/Drones/Drone2Broken.prefab"; public static string Drone2Master = "RoR2/Base/Drones/Drone2Master.prefab"; public static string HealBeam = "RoR2/Base/Drones/HealBeam.prefab"; public static string HealDroneHealBeam = "RoR2/Base/Drones/HealDroneHealBeam.prefab"; public static string mdlDrone2 = "RoR2/Base/Drones/mdlDrone2.fbx"; public static string PickupDrone2 = "RoR2/Base/Drones/PickupDrone2.prefab"; public static string EmergencyDroneBody = "RoR2/Base/Drones/EmergencyDroneBody.prefab"; public static string EmergencyDroneBodyRemoteOp = "RoR2/Base/Drones/EmergencyDroneBodyRemoteOp.prefab"; public static string EmergencyDroneBroken = "RoR2/Base/Drones/EmergencyDroneBroken.prefab"; public static string EmergencyDroneHealBeam = "RoR2/Base/Drones/EmergencyDroneHealBeam.prefab"; public static string EmergencyDroneMaster = "RoR2/Base/Drones/EmergencyDroneMaster.prefab"; public static string mdlEmergencyDrone = "RoR2/Base/Drones/mdlEmergencyDrone.fbx"; public static string EquipmentDroneBody = "RoR2/Base/Drones/EquipmentDroneBody.prefab"; public static string EquipmentDroneBodyRemoteOp = "RoR2/Base/Drones/EquipmentDroneBodyRemoteOp.prefab"; public static string EquipmentDroneBroken = "RoR2/Base/Drones/EquipmentDroneBroken.prefab"; public static string EquipmentDroneMaster = "RoR2/Base/Drones/EquipmentDroneMaster.prefab"; public static string mdlEquipmentDrone = "RoR2/Base/Drones/mdlEquipmentDrone.fbx"; public static string FlameDroneBody = "RoR2/Base/Drones/FlameDroneBody.prefab"; public static string FlameDroneBodyRemoteOp = "RoR2/Base/Drones/FlameDroneBodyRemoteOp.prefab"; public static string FlameDroneBroken = "RoR2/Base/Drones/FlameDroneBroken.prefab"; public static string FlameDroneMaster = "RoR2/Base/Drones/FlameDroneMaster.prefab"; public static string mdlFlameDrone = "RoR2/Base/Drones/mdlFlameDrone.fbx"; public static string DroneFlamethrowerEffect = "RoR2/Base/Drones/DroneFlamethrowerEffect.prefab"; public static string mdlMegaDrone = "RoR2/Base/Drones/mdlMegaDrone.fbx"; public static string MegaDroneBody = "RoR2/Base/Drones/MegaDroneBody.prefab"; public static string MegaDroneBodyRemoteOp = "RoR2/Base/Drones/MegaDroneBodyRemoteOp.prefab"; public static string MegaDroneBroken = "RoR2/Base/Drones/MegaDroneBroken.prefab"; public static string MegaDroneMaster = "RoR2/Base/Drones/MegaDroneMaster.prefab"; public static string PaladinRocket = "RoR2/Base/Drones/PaladinRocket.prefab"; public static string PaladinRocketGhost = "RoR2/Base/Drones/PaladinRocketGhost.prefab"; public static string TracerCommandoBoost = "RoR2/Base/Drones/TracerCommandoBoost.prefab"; public static string DroneMissileMaster = "RoR2/Base/Drones/DroneMissileMaster.prefab"; public static string mdlMissileDrone = "RoR2/Base/Drones/mdlMissileDrone.fbx"; public static string MissileDroneBody = "RoR2/Base/Drones/MissileDroneBody.prefab"; public static string MissileDroneBodyRemoteOp = "RoR2/Base/Drones/MissileDroneBodyRemoteOp.prefab"; public static string MissileDroneBroken = "RoR2/Base/Drones/MissileDroneBroken.prefab"; public static string MicroMissileGhost = "RoR2/Base/Drones/MicroMissileGhost.prefab"; public static string MicroMissileProjectile = "RoR2/Base/Drones/MicroMissileProjectile.prefab"; public static string mdlTurret1 = "RoR2/Base/Drones/mdlTurret1.fbx"; public static string Turret1Body = "RoR2/Base/Drones/Turret1Body.prefab"; public static string Turret1Broken = "RoR2/Base/Drones/Turret1Broken.prefab"; public static string Turret1Master = "RoR2/Base/Drones/Turret1Master.prefab"; public static string ElectricOrbGhost = "RoR2/Base/ElectricWorm/ElectricOrbGhost.prefab"; public static string ElectricOrbProjectile = "RoR2/Base/ElectricWorm/ElectricOrbProjectile.prefab"; public static string ElectricWormBody = "RoR2/Base/ElectricWorm/ElectricWormBody.prefab"; public static string ElectricWormMaster = "RoR2/Base/ElectricWorm/ElectricWormMaster.prefab"; public static string ElectricWormSeekerGhost = "RoR2/Base/ElectricWorm/ElectricWormSeekerGhost.prefab"; public static string ElectricWormSeekerProjectile = "RoR2/Base/ElectricWorm/ElectricWormSeekerProjectile.prefab"; public static string ElectricWurmBurrow = "RoR2/Base/ElectricWorm/ElectricWurmBurrow.prefab"; public static string engishieldmesh = "RoR2/Base/Engi/engi shield mesh.fbx"; public static string EngiBody = "RoR2/Base/Engi/EngiBody.prefab"; public static string EngiCrosshair = "RoR2/Base/Engi/EngiCrosshair.prefab"; public static string EngiMissileTrackingIndicator = "RoR2/Base/Engi/EngiMissileTrackingIndicator.prefab"; public static string EngiMonsterMaster = "RoR2/Base/Engi/EngiMonsterMaster.prefab"; public static string ChargeEngiGrenade = "RoR2/Base/Engi/ChargeEngiGrenade.prefab"; public static string EngiHarpoon = "RoR2/Base/Engi/EngiHarpoon.prefab"; public static string EngiHarpoonExplosion = "RoR2/Base/Engi/EngiHarpoonExplosion.prefab"; public static string EngiHarpoonGhost = "RoR2/Base/Engi/EngiHarpoonGhost.prefab"; public static string EngiPaintCrosshair = "RoR2/Base/Engi/EngiPaintCrosshair.prefab"; public static string EngiPaintingIndicator = "RoR2/Base/Engi/EngiPaintingIndicator.prefab"; public static string EngiTurretBlueprints = "RoR2/Base/Engi/EngiTurretBlueprints.prefab"; public static string EngiTurretWristDisplay = "RoR2/Base/Engi/EngiTurretWristDisplay.prefab"; public static string EngiWalkerTurretBlueprints = "RoR2/Base/Engi/EngiWalkerTurretBlueprints.prefab"; public static string EngiDisplay = "RoR2/Base/Engi/EngiDisplay.prefab"; public static string EngiTurretBody = "RoR2/Base/Engi/EngiTurretBody.prefab"; public static string EngiTurretMaster = "RoR2/Base/Engi/EngiTurretMaster.prefab"; public static string EngiWalkerTurretBody = "RoR2/Base/Engi/EngiWalkerTurretBody.prefab"; public static string EngiWalkerTurretMaster = "RoR2/Base/Engi/EngiWalkerTurretMaster.prefab"; public static string ExplosionEngiTurretInitial = "RoR2/Base/Engi/ExplosionEngiTurretInitial.prefab"; public static string mdlEngiTurret = "RoR2/Base/Engi/mdlEngiTurret.fbx"; public static string OmniExplosionVFXEngiTurretDeath = "RoR2/Base/Engi/OmniExplosionVFXEngiTurretDeath.prefab"; public static string ImpactEngiTurret = "RoR2/Base/Engi/ImpactEngiTurret.prefab"; public static string LaserEngiTurret = "RoR2/Base/Engi/LaserEngiTurret.prefab"; public static string MuzzleflashEngiTurret = "RoR2/Base/Engi/MuzzleflashEngiTurret.prefab"; public static string TracerEngiTurret = "RoR2/Base/Engi/TracerEngiTurret.prefab"; public static string mdlEngi = "RoR2/Base/Engi/mdlEngi.fbx"; public static string mdlEngiMaster = "RoR2/Base/Engi/mdlEngi@Master.fbx"; public static string mdlEngiGrenade = "RoR2/Base/Engi/mdlEngiGrenade.fbx"; public static string mdlEngiMilitary = "RoR2/Base/Engi/mdlEngiMilitary.fbx"; public static string mdlEngiMine = "RoR2/Base/Engi/mdlEngiMine.fbx"; public static string mdlEngiSpiderMine = "RoR2/Base/Engi/mdlEngiSpiderMine.fbx"; public static string BubbleShieldEndEffect = "RoR2/Base/Engi/BubbleShieldEndEffect.prefab"; public static string EngiBubbleShield = "RoR2/Base/Engi/EngiBubbleShield.prefab"; public static string EngiBubbleShieldGhost = "RoR2/Base/Engi/EngiBubbleShieldGhost.prefab"; public static string EngiGrenadeExplosion = "RoR2/Base/Engi/EngiGrenadeExplosion.prefab"; public static string EngiGrenadeGhost = "RoR2/Base/Engi/EngiGrenadeGhost.prefab"; public static string EngiGrenadeProjectile = "RoR2/Base/Engi/EngiGrenadeProjectile.prefab"; public static string EngiMine = "RoR2/Base/Engi/EngiMine.prefab"; public static string EngiMineExplosion = "RoR2/Base/Engi/EngiMineExplosion.prefab"; public static string EngiMineGhost = "RoR2/Base/Engi/EngiMineGhost.prefab"; public static string SpiderMine = "RoR2/Base/Engi/SpiderMine.prefab"; public static string SpiderMineGhost = "RoR2/Base/Engi/SpiderMineGhost.prefab"; public static string EngiBubbleShieldGhost3 = "RoR2/Base/Engi/EngiBubbleShieldGhost3.prefab"; public static string EngiGrenadeGhostSkin3 = "RoR2/Base/Engi/EngiGrenadeGhostSkin3.prefab"; public static string EngiMineGhost3 = "RoR2/Base/Engi/EngiMineGhost3.prefab"; public static string mdlEngiAltColossus = "RoR2/Base/Engi/mdlEngiAltColossus.fbx"; public static string SpiderMineGhost3 = "RoR2/Base/Engi/SpiderMineGhost3.prefab"; public static string EngiBubbleShieldGhost4 = "RoR2/Base/Engi/EngiBubbleShieldGhost4.prefab"; public static string EngiGrenadeGhostSkin4 = "RoR2/Base/Engi/EngiGrenadeGhostSkin4.prefab"; public static string EngiMineGhost4 = "RoR2/Base/Engi/EngiMineGhost4.prefab"; public static string mdlEngiAltVulture = "RoR2/Base/Engi/mdlEngiAltVulture.fbx"; public static string mdlEngiVultureGrenade = "RoR2/Base/Engi/mdlEngiVultureGrenade.fbx"; public static string mdlEngiVultureMine = "RoR2/Base/Engi/mdlEngiVultureMine.fbx"; public static string mdlEngiVultureSpiderMine = "RoR2/Base/Engi/mdlEngiVultureSpiderMine.fbx"; public static string mdlEngiVultureTurret = "RoR2/Base/Engi/mdlEngiVultureTurret.fbx"; public static string SpiderMineGhost4 = "RoR2/Base/Engi/SpiderMineGhost4.prefab"; public static string EngiBubbleShieldGhost2 = "RoR2/Base/Engi/EngiBubbleShieldGhost2.prefab"; public static string EngiGrenadeGhostSkin2 = "RoR2/Base/Engi/EngiGrenadeGhostSkin2.prefab"; public static string EngiMineGhost2 = "RoR2/Base/Engi/EngiMineGhost2.prefab"; public static string SpiderMineGhost2 = "RoR2/Base/Engi/SpiderMineGhost2.prefab"; public static string ExplosivePotCharge = "RoR2/Base/ExplosivePotDestructible/ExplosivePotCharge.prefab"; public static string ExplosivePotDestructibleBody = "RoR2/Base/ExplosivePotDestructible/ExplosivePotDestructibleBody.prefab"; public static string ExplosivePotExplosion = "RoR2/Base/ExplosivePotDestructible/ExplosivePotExplosion.prefab"; public static string FusionCellDestructibleBody = "RoR2/Base/FusionCellDestructible/FusionCellDestructibleBody.prefab"; public static string FusionCellExplosion = "RoR2/Base/FusionCellDestructible/FusionCellExplosion.prefab"; public static string ExplosionGolemDeath = "RoR2/Base/Golem/ExplosionGolemDeath.prefab"; public static string ExplosionGolemDeathInitial = "RoR2/Base/Golem/ExplosionGolemDeathInitial.prefab"; public static string GolemBody = "RoR2/Base/Golem/GolemBody.prefab"; public static string GolemClapCharge = "RoR2/Base/Golem/GolemClapCharge.prefab"; public static string GolemMaster = "RoR2/Base/Golem/GolemMaster.prefab"; public static string mdlGolem = "RoR2/Base/Golem/mdlGolem.fbx"; public static string mdlGolemDead1 = "RoR2/Base/Golem/mdlGolemDead1.fbx"; public static string mdlGolemDead2 = "RoR2/Base/Golem/mdlGolemDead2.fbx"; public static string mdlGolemDead3 = "RoR2/Base/Golem/mdlGolemDead3.fbx"; public static string mdlGolemDoll = "RoR2/Base/Golem/mdlGolemDoll.fbx"; public static string mdlNatureGolem = "RoR2/Base/Golem/mdlNatureGolem.fbx"; public static string ChargeGolem = "RoR2/Base/Golem/ChargeGolem.prefab"; public static string ExplosionGolem = "RoR2/Base/Golem/ExplosionGolem.prefab"; public static string LaserGolem = "RoR2/Base/Golem/LaserGolem.prefab"; public static string MuzzleflashGolem = "RoR2/Base/Golem/MuzzleflashGolem.prefab"; public static string TracerGolem = "RoR2/Base/Golem/TracerGolem.prefab"; public static string mdlSnowyGolem = "RoR2/Base/Golem/mdlSnowyGolem.fbx"; public static string GrandParentBody = "RoR2/Base/Grandparent/GrandParentBody.prefab"; public static string GrandparentChargeBoulder = "RoR2/Base/Grandparent/GrandparentChargeBoulder.prefab"; public static string GrandparentDeathEffect = "RoR2/Base/Grandparent/GrandparentDeathEffect.prefab"; public static string GrandparentEggImpact = "RoR2/Base/Grandparent/GrandparentEggImpact.prefab"; public static string GrandparentMaster = "RoR2/Base/Grandparent/GrandparentMaster.prefab"; public static string GrandparentPreSpawnEffect = "RoR2/Base/Grandparent/GrandparentPreSpawnEffect.prefab"; public static string GrandparentSpawnImpact = "RoR2/Base/Grandparent/GrandparentSpawnImpact.prefab"; public static string GrandParentSun = "RoR2/Base/Grandparent/GrandParentSun.prefab"; public static string GrandParentSunSpawn = "RoR2/Base/Grandparent/GrandParentSunSpawn.prefab"; public static string IgniteDirectionalExplosionVFX = "RoR2/Base/Grandparent/IgniteDirectionalExplosionVFX.prefab"; public static string GrandparentTurnImpact = "RoR2/Base/Grandparent/GrandparentTurnImpact.prefab"; public static string mdlGrandparent = "RoR2/Base/Grandparent/mdlGrandparent.FBX"; public static string mdlGrandparentAbility01 = "RoR2/Base/Grandparent/mdlGrandparent@Ability01.fbx"; public static string mdlGrandparentAbility02 = "RoR2/Base/Grandparent/mdlGrandparent@Ability02.fbx"; public static string mdlGrandparentAimPitch = "RoR2/Base/Grandparent/mdlGrandparent@AimPitch.fbx"; public static string mdlGrandparentAimYaw = "RoR2/Base/Grandparent/mdlGrandparent@AimYaw.fbx"; public static string mdlGrandparentAttack01 = "RoR2/Base/Grandparent/mdlGrandparent@Attack01.fbx"; public static string mdlGrandparentAttack01Alt = "RoR2/Base/Grandparent/mdlGrandparent@Attack01_Alt.fbx"; public static string mdlGrandparentDeath = "RoR2/Base/Grandparent/mdlGrandparent@Death.fbx"; public static string mdlGrandparentFlinches = "RoR2/Base/Grandparent/mdlGrandparent@Flinches.fbx"; public static string mdlGrandparentIdle = "RoR2/Base/Grandparent/mdlGrandparent@Idle.fbx"; public static string mdlGrandparentIdleAdditive = "RoR2/Base/Grandparent/mdlGrandparent@Idle_Additive.fbx"; public static string mdlGrandparentSpawn = "RoR2/Base/Grandparent/mdlGrandparent@Spawn.fbx"; public static string mdlGrandparentTurn135L = "RoR2/Base/Grandparent/mdlGrandparent@Turn135_L.fbx"; public static string mdlGrandparentTurn135R = "RoR2/Base/Grandparent/mdlGrandparent@Turn135_R.fbx"; public static string mdlGrandparentTurn45L = "RoR2/Base/Grandparent/mdlGrandparent@Turn45_L.fbx"; public static string mdlGrandparentTurn45R = "RoR2/Base/Grandparent/mdlGrandparent@Turn45_R.fbx"; public static string mdlGrandparentTurn90L = "RoR2/Base/Grandparent/mdlGrandparent@Turn90_L.fbx"; public static string mdlGrandparentTurn90R = "RoR2/Base/Grandparent/mdlGrandparent@Turn90_R.fbx"; public static string mdlGrandparentSpawnEgg = "RoR2/Base/Grandparent/mdlGrandparentSpawnEgg.fbx"; public static string OverheatTemporaryVisualEffect = "RoR2/Base/Grandparent/OverheatTemporaryVisualEffect.prefab"; public static string GrandparentBoulder = "RoR2/Base/Grandparent/GrandparentBoulder.prefab"; public static string GrandparentBoulderGhost = "RoR2/Base/Grandparent/GrandparentBoulderGhost.prefab"; public static string GrandparentGravSphere = "RoR2/Base/Grandparent/GrandparentGravSphere.prefab"; public static string GrandparentGravSphereGhost = "RoR2/Base/Grandparent/GrandparentGravSphereGhost.prefab"; public static string GrandparentGravSphereTether = "RoR2/Base/Grandparent/GrandparentGravSphereTether.prefab"; public static string GrandparentMiniBoulder = "RoR2/Base/Grandparent/GrandparentMiniBoulder.prefab"; public static string GrandparentMiniBoulderGhost = "RoR2/Base/Grandparent/GrandparentMiniBoulderGhost.prefab"; public static string GrandParentSunChannelStartStream = "RoR2/Base/Grandparent/GrandParentSunChannelStartStream.prefab"; public static string ChannelGrandParentSunHands = "RoR2/Base/Grandparent/ChannelGrandParentSunHands.prefab"; public static string ChargeGrandParentSunHands = "RoR2/Base/Grandparent/ChargeGrandParentSunHands.prefab"; public static string grandparentfx = "RoR2/Base/Grandparent/grandparent fx.fbx"; public static string gravekeeperprops = "RoR2/Base/Gravekeeper/gravekeeper props.fbx"; public static string GravekeeperBody0 = "RoR2/Base/Gravekeeper/GravekeeperBody.prefab"; public static string GravekeeperDeathImpact = "RoR2/Base/Gravekeeper/GravekeeperDeathImpact.prefab"; public static string GravekeeperFootstep = "RoR2/Base/Gravekeeper/GravekeeperFootstep.prefab"; public static string GravekeeperLandingImpact = "RoR2/Base/Gravekeeper/GravekeeperLandingImpact.prefab"; public static string GravekeeperMaskDeath = "RoR2/Base/Gravekeeper/GravekeeperMaskDeath.prefab"; public static string GravekeeperMaster = "RoR2/Base/Gravekeeper/GravekeeperMaster.prefab"; public static string mdlGravekeeper = "RoR2/Base/Gravekeeper/mdlGravekeeper.fbx"; public static string OmniExplosionVFXArchWisp = "RoR2/Base/Gravekeeper/OmniExplosionVFXArchWisp.prefab"; public static string GravekeeperHookGhost = "RoR2/Base/Gravekeeper/GravekeeperHookGhost.prefab"; public static string GravekeeperHookProjectileSimple = "RoR2/Base/Gravekeeper/GravekeeperHookProjectileSimple.prefab"; public static string GravekeeperJarOpen = "RoR2/Base/Gravekeeper/GravekeeperJarOpen.prefab"; public static string GravekeeperTrackingFireball = "RoR2/Base/Gravekeeper/GravekeeperTrackingFireball.prefab"; public static string GravekeeperTrackingFireballGhost = "RoR2/Base/Gravekeeper/GravekeeperTrackingFireballGhost.prefab"; public static string MuzzleflashTrackingFireball = "RoR2/Base/Gravekeeper/MuzzleflashTrackingFireball.prefab"; public static string MuzzleflashWinch = "RoR2/Base/Gravekeeper/MuzzleflashWinch.prefab"; public static string GreaterWispBody = "RoR2/Base/GreaterWisp/GreaterWispBody.prefab"; public static string GreaterWispDeath = "RoR2/Base/GreaterWisp/GreaterWispDeath.prefab"; public static string GreaterWispMaster = "RoR2/Base/GreaterWisp/GreaterWispMaster.prefab"; public static string mdlGreaterWisp = "RoR2/Base/GreaterWisp/mdlGreaterWisp.fbx"; public static string mdlGreaterWispFlinches = "RoR2/Base/GreaterWisp/mdlGreaterWisp@Flinches.fbx"; public static string mdlGreaterWispSpawn = "RoR2/Base/GreaterWisp/mdlGreaterWisp@Spawn.fbx"; public static string mdlGreaterWispStunned = "RoR2/Base/GreaterWisp/mdlGreaterWisp@Stunned.fbx"; public static string mdlGreaterWispBeams = "RoR2/Base/GreaterWisp/mdlGreaterWispBeams.fbx"; public static string mdlGreaterWispMask = "RoR2/Base/GreaterWisp/mdlGreaterWispMask.fbx"; public static string ChargeGreaterWisp = "RoR2/Base/GreaterWisp/ChargeGreaterWisp.prefab"; public static string OmniExplosionVFXGreaterWisp = "RoR2/Base/GreaterWisp/OmniExplosionVFXGreaterWisp.prefab"; public static string WispCannon = "RoR2/Base/GreaterWisp/WispCannon.prefab"; public static string WispCannonGhost = "RoR2/Base/GreaterWisp/WispCannonGhost.prefab"; public static string mdlHAND = "RoR2/Base/HAND/mdlHAND.fbx"; public static string heretictemppose = "RoR2/Base/Heretic/heretic_temppose.fbx"; public static string HereticBody = "RoR2/Base/Heretic/HereticBody.prefab"; public static string HereticCrosshair = "RoR2/Base/Heretic/HereticCrosshair.prefab"; public static string HereticMonsterMaster = "RoR2/Base/Heretic/HereticMonsterMaster.prefab"; public static string HereticSpawnEffect = "RoR2/Base/Heretic/HereticSpawnEffect.prefab"; public static string hereticTEMPPOSE = "RoR2/Base/Heretic/hereticTEMP_POSE.prefab"; public static string mdlHeretic = "RoR2/Base/Heretic/mdlHeretic.fbx"; public static string mdlHereticAimPitch = "RoR2/Base/Heretic/mdlHeretic@AimPitch.fbx"; public static string mdlHereticAimYaw = "RoR2/Base/Heretic/mdlHeretic@AimYaw.fbx"; public static string mdlHereticFirePrimary = "RoR2/Base/Heretic/mdlHeretic@Fire_Primary.fbx"; public static string mdlHereticFireSecondary = "RoR2/Base/Heretic/mdlHeretic@Fire_Secondary.fbx"; public static string mdlHereticFlinches = "RoR2/Base/Heretic/mdlHeretic@Flinches.fbx"; public static string mdlHereticIdle = "RoR2/Base/Heretic/mdlHeretic@Idle.fbx"; public static string mdlHereticIdleAdditive = "RoR2/Base/Heretic/mdlHeretic@Idle_Additive.fbx"; public static string mdlHereticImpact = "RoR2/Base/Heretic/mdlHeretic@Impact.fbx"; public static string mdlHereticJump = "RoR2/Base/Heretic/mdlHeretic@Jump.fbx"; public static string mdlHereticJumpBonus = "RoR2/Base/Heretic/mdlHeretic@JumpBonus.fbx"; public static string mdlHereticRunB = "RoR2/Base/Heretic/mdlHeretic@Run_B.fbx"; public static string mdlHereticRunBL = "RoR2/Base/Heretic/mdlHeretic@Run_BL.fbx"; public static string mdlHereticRunBR = "RoR2/Base/Heretic/mdlHeretic@Run_BR.fbx"; public static string mdlHereticRunF = "RoR2/Base/Heretic/mdlHeretic@Run_F.fbx"; public static string mdlHereticRunL = "RoR2/Base/Heretic/mdlHeretic@Run_L.fbx"; public static string mdlHereticRunR = "RoR2/Base/Heretic/mdlHeretic@Run_R.fbx"; public static string mdlHereticSpecial = "RoR2/Base/Heretic/mdlHeretic@Special.fbx"; public static string mdlHereticSprintF = "RoR2/Base/Heretic/mdlHeretic@Sprint_F.fbx"; public static string mdlHereticTransform = "RoR2/Base/Heretic/mdlHeretic@Transform.fbx"; public static string mdlHereticUtility = "RoR2/Base/Heretic/mdlHeretic@Utility.fbx"; public static string mdlHereticTEMP = "RoR2/Base/Heretic/mdlHereticTEMP.prefab"; public static string HermitCrabBody = "RoR2/Base/HermitCrab/HermitCrabBody.prefab"; public static string HermitCrabBurrowIn = "RoR2/Base/HermitCrab/HermitCrabBurrowIn.prefab"; public static string HermitCrabBurrowInopt = "RoR2/Base/HermitCrab/HermitCrabBurrowIn_opt.prefab"; public static string HermitCrabMaster = "RoR2/Base/HermitCrab/HermitCrabMaster.prefab"; public static string mdlHermitCrab = "RoR2/Base/HermitCrab/mdlHermitCrab.fbx"; public static string HermitCrabBombExplosion = "RoR2/Base/HermitCrab/HermitCrabBombExplosion.prefab"; public static string HermitCrabBombExplosionopt = "RoR2/Base/HermitCrab/HermitCrabBombExplosion_opt.prefab"; public static string HermitCrabBombGhost = "RoR2/Base/HermitCrab/HermitCrabBombGhost.prefab"; public static string HermitCrabBombGhostopt = "RoR2/Base/HermitCrab/HermitCrabBombGhost_opt.prefab"; public static string HermitCrabBombProjectile = "RoR2/Base/HermitCrab/HermitCrabBombProjectile.prefab"; public static string HermitCrabBombProjectileopt = "RoR2/Base/HermitCrab/HermitCrabBombProjectile_opt.prefab"; public static string HermitCrabBurrowOut = "RoR2/Base/HermitCrab/HermitCrabBurrowOut.prefab"; public static string HermitCrabBurrowOutopt = "RoR2/Base/HermitCrab/HermitCrabBurrowOut_opt.prefab"; public static string MuzzleflashHermitCrab = "RoR2/Base/HermitCrab/MuzzleflashHermitCrab.prefab"; public static string MuzzleflashHermitCrabopt = "RoR2/Base/HermitCrab/MuzzleflashHermitCrab_opt.prefab"; public static string mdlHuntressAltColossus = "RoR2/Base/Huntress/mdlHuntressAltColossus.fbx"; public static string mdlHuntressAltVulture = "RoR2/Base/Huntress/mdlHuntressAltVulture.fbx"; public static string mdlHuntressAltVultureScarf = "RoR2/Base/Huntress/mdlHuntressAltVultureScarf.fbx"; public static string ArrowDisplay = "RoR2/Base/Huntress/ArrowDisplay.prefab"; public static string ChargeGlaive = "RoR2/Base/Huntress/ChargeGlaive.prefab"; public static string mdlHuntressArctic = "RoR2/Base/Huntress/mdlHuntressArctic.fbx"; public static string HuntressArrowRainIndicator = "RoR2/Base/Huntress/HuntressArrowRainIndicator.prefab"; public static string HuntressBody = "RoR2/Base/Huntress/HuntressBody.prefab"; public static string HuntressDisplay = "RoR2/Base/Huntress/HuntressDisplay.prefab"; public static string HuntressDisplayBlinkEffect = "RoR2/Base/Huntress/HuntressDisplayBlinkEffect.prefab"; public static string HuntressMonsterMaster = "RoR2/Base/Huntress/HuntressMonsterMaster.prefab"; public static string HuntressTrackingIndicator = "RoR2/Base/Huntress/HuntressTrackingIndicator.prefab"; public static string mdlHuntress = "RoR2/Base/Huntress/mdlHuntress.fbx"; public static string mdlHuntressMaster = "RoR2/Base/Huntress/mdlHuntress@Master.fbx"; public static string mdlHuntressGlaive = "RoR2/Base/Huntress/mdlHuntressGlaive.fbx"; public static string ArrowOrbEffect = "RoR2/Base/Huntress/ArrowOrbEffect.prefab"; public static string FlurryArrowCritOrbEffect = "RoR2/Base/Huntress/FlurryArrowCritOrbEffect.prefab"; public static string FlurryArrowOrbEffect = "RoR2/Base/Huntress/FlurryArrowOrbEffect.prefab"; public static string HuntressArrowRain = "RoR2/Base/Huntress/HuntressArrowRain.prefab"; public static string HuntressBlinkEffect = "RoR2/Base/Huntress/HuntressBlinkEffect.prefab"; public static string HuntressFireArrowRain = "RoR2/Base/Huntress/HuntressFireArrowRain.prefab"; public static string HuntressGlaiveOrbEffect = "RoR2/Base/Huntress/HuntressGlaiveOrbEffect.prefab"; public static string HuntressGlaiveSwing = "RoR2/Base/Huntress/HuntressGlaiveSwing.prefab"; public static string HuntressSnipeCrosshair = "RoR2/Base/Huntress/HuntressSnipeCrosshair.prefab"; public static string MuzzleflashHuntress = "RoR2/Base/Huntress/MuzzleflashHuntress.prefab"; public static string MuzzleflashHuntressFlurry = "RoR2/Base/Huntress/MuzzleflashHuntressFlurry.prefab"; public static string OmniImpactVFXHuntress = "RoR2/Base/Huntress/OmniImpactVFXHuntress.prefab"; public static string TracerHuntressSnipe = "RoR2/Base/Huntress/TracerHuntressSnipe.prefab"; public static string ImpBlinkEffect = "RoR2/Base/Imp/ImpBlinkEffect.prefab"; public static string ImpBody = "RoR2/Base/Imp/ImpBody.prefab"; public static string ImpBossBlinkDestination = "RoR2/Base/Imp/ImpBossBlinkDestination.prefab"; public static string ImpDeathEffect = "RoR2/Base/Imp/ImpDeathEffect.prefab"; public static string ImpMaster = "RoR2/Base/Imp/ImpMaster.prefab"; public static string mdlImp = "RoR2/Base/Imp/mdlImp.fbx"; public static string mdlImpBoss = "RoR2/Base/Imp/mdlImpBoss.fbx"; public static string miscimpbossmeshes = "RoR2/Base/Imp/misc imp boss meshes.fbx"; public static string miscimpmeshes = "RoR2/Base/Imp/misc imp meshes.fbx"; public static string ImpactImpSwipe = "RoR2/Base/Imp/ImpactImpSwipe.prefab"; public static string ImpSwipeEffect = "RoR2/Base/Imp/ImpSwipeEffect.prefab"; public static string SpurtImpBlood = "RoR2/Base/Imp/SpurtImpBlood.prefab"; public static string WIPImpEffect = "RoR2/Base/Imp/WIPImpEffect.prefab"; public static string ImpBossBlink = "RoR2/Base/ImpBoss/ImpBossBlink.prefab"; public static string ImpBossBody = "RoR2/Base/ImpBoss/ImpBossBody.prefab"; public static string ImpBossDeathEffect = "RoR2/Base/ImpBoss/ImpBossDeathEffect.prefab"; public static string ImpBossMaster = "RoR2/Base/ImpBoss/ImpBossMaster.prefab"; public static string ImpBossFireVoidspikes = "RoR2/Base/ImpBoss/ImpBossFireVoidspikes.prefab"; public static string ImpBossGroundSlam = "RoR2/Base/ImpBoss/ImpBossGroundSlam.prefab"; public static string ImpVoidspikeExplosion = "RoR2/Base/ImpBoss/ImpVoidspikeExplosion.prefab"; public static string ImpVoidspikeProjectile = "RoR2/Base/ImpBoss/ImpVoidspikeProjectile.prefab"; public static string ImpVoidspikeProjectileGhost = "RoR2/Base/ImpBoss/ImpVoidspikeProjectileGhost.prefab"; public static string JellyfishBody = "RoR2/Base/Jellyfish/JellyfishBody.prefab"; public static string JellyfishChargeNova = "RoR2/Base/Jellyfish/JellyfishChargeNova.prefab"; public static string JellyfishChargeNovaopt = "RoR2/Base/Jellyfish/JellyfishChargeNova_opt.prefab"; public static string JellyfishDeath = "RoR2/Base/Jellyfish/JellyfishDeath.prefab"; public static string JellyfishDeathopt = "RoR2/Base/Jellyfish/JellyfishDeath_opt.prefab"; public static string JellyfishMaster = "RoR2/Base/Jellyfish/JellyfishMaster.prefab"; public static string mdlJellyfish = "RoR2/Base/Jellyfish/mdlJellyfish.fbx"; public static string JellyfishNova = "RoR2/Base/Jellyfish/JellyfishNova.prefab"; public static string JellyfishNovaopt = "RoR2/Base/Jellyfish/JellyfishNova_opt.prefab"; public static string SpawnParticles = "RoR2/Base/Jellyfish/SpawnParticles.prefab"; public static string ChargeMegaFireball = "RoR2/Base/Lemurian/ChargeMegaFireball.prefab"; public static string FlamebreathEffect = "RoR2/Base/Lemurian/FlamebreathEffect.prefab"; public static string LemurianBody = "RoR2/Base/Lemurian/LemurianBody.prefab"; public static string LemurianBruiserDeathImpact = "RoR2/Base/Lemurian/LemurianBruiserDeathImpact.prefab"; public static string LemurianBruiserDeathImpactopt = "RoR2/Base/Lemurian/LemurianBruiserDeathImpact_opt.prefab"; public static string LemurianMaster = "RoR2/Base/Lemurian/LemurianMaster.prefab"; public static string mdlLemurian = "RoR2/Base/Lemurian/mdlLemurian.fbx"; public static string mdlLemurianBruiser = "RoR2/Base/Lemurian/mdlLemurianBruiser.fbx"; public static string mdlLemurianSlash = "RoR2/Base/Lemurian/mdlLemurianSlash.fbx"; public static string Fireball = "RoR2/Base/Lemurian/Fireball.prefab"; public static string FireballGhost = "RoR2/Base/Lemurian/FireballGhost.prefab"; public static string LemurianBiteTrail = "RoR2/Base/Lemurian/LemurianBiteTrail.prefab"; public static string LemurianChargeFire = "RoR2/Base/Lemurian/LemurianChargeFire.prefab"; public static string MuzzleflashFire = "RoR2/Base/Lemurian/MuzzleflashFire.prefab"; public static string SpawnLemurian = "RoR2/Base/Lemurian/SpawnLemurian.prefab"; public static string LemurianBruiserBody = "RoR2/Base/LemurianBruiser/LemurianBruiserBody.prefab"; public static string LemurianBruiserMaster = "RoR2/Base/LemurianBruiser/LemurianBruiserMaster.prefab"; public static string LemurianBruiserSpawnEffect = "RoR2/Base/LemurianBruiser/LemurianBruiserSpawnEffect.prefab"; public static string LemurianBruiserSpawnEffectopt = "RoR2/Base/LemurianBruiser/LemurianBruiserSpawnEffect_opt.prefab"; public static string LemurianBigFireball = "RoR2/Base/LemurianBruiser/LemurianBigFireball.prefab"; public static string MegaFireballGhost = "RoR2/Base/LemurianBruiser/MegaFireballGhost.prefab"; public static string OmniExplosionVFXLemurianBruiserFireballImpact = "RoR2/Base/LemurianBruiser/OmniExplosionVFXLemurianBruiserFireballImpact.prefab"; public static string mdlLoaderAltColossus = "RoR2/Base/Loader/mdlLoaderAltColossus.fbx"; public static string mdlLoaderAltSolus = "RoR2/Base/Loader/mdlLoaderAltSolus.fbx"; public static string vfxWireTrailLoader = "RoR2/Base/Loader/vfxWireTrailLoader.prefab"; public static string ChargeLoaderFist = "RoR2/Base/Loader/ChargeLoaderFist.prefab"; public static string ImpactLoaderFistSmall = "RoR2/Base/Loader/ImpactLoaderFistSmall.prefab"; public static string loaderfist = "RoR2/Base/Loader/loader fist.fbx"; public static string loaderpylon = "RoR2/Base/Loader/loader pylon.fbx"; public static string loaderspikedfist = "RoR2/Base/Loader/loader spiked fist.fbx"; public static string LoaderBody = "RoR2/Base/Loader/LoaderBody.prefab"; public static string mdlLoaderClassic = "RoR2/Base/Loader/mdlLoaderClassic.fbx"; public static string LoaderCrosshair = "RoR2/Base/Loader/LoaderCrosshair.prefab"; public static string LoaderDisplay = "RoR2/Base/Loader/LoaderDisplay.prefab"; public static string LoaderFistLoop = "RoR2/Base/Loader/LoaderFistLoop.prefab"; public static string LoaderMonsterMaster = "RoR2/Base/Loader/LoaderMonsterMaster.prefab"; public static string LoaderSwingBasic = "RoR2/Base/Loader/LoaderSwingBasic.prefab"; public static string LoaderZapFistLoop = "RoR2/Base/Loader/LoaderZapFistLoop.prefab"; public static string mdlLoader = "RoR2/Base/Loader/mdlLoader.fbx"; public static string mdlLoaderMaster = "RoR2/Base/Loader/mdlLoader@Master.fbx"; public static string MuzzleflashLoader = "RoR2/Base/Loader/MuzzleflashLoader.prefab"; public static string LoaderHook = "RoR2/Base/Loader/LoaderHook.prefab"; public static string LoaderHookGhost = "RoR2/Base/Loader/LoaderHookGhost.prefab"; public static string LoaderYankHook = "RoR2/Base/Loader/LoaderYankHook.prefab"; public static string LoaderZapCone = "RoR2/Base/Loader/LoaderZapCone.prefab"; public static string LoaderGroundSlam = "RoR2/Base/Loader/LoaderGroundSlam.prefab"; public static string LoaderLightningOrbEffect = "RoR2/Base/Loader/LoaderLightningOrbEffect.prefab"; public static string LoaderPylon = "RoR2/Base/Loader/LoaderPylon.prefab"; public static string OmniImpactVFXLoader = "RoR2/Base/Loader/OmniImpactVFXLoader.prefab"; public static string OmniImpactVFXLoaderLightning = "RoR2/Base/Loader/OmniImpactVFXLoaderLightning.prefab"; public static string LunarExploderBody = "RoR2/Base/LunarExploder/LunarExploderBody.prefab"; public static string LunarExploderMaster = "RoR2/Base/LunarExploder/LunarExploderMaster.prefab"; public static string LunarExploderProjectileDotZone = "RoR2/Base/LunarExploder/LunarExploderProjectileDotZone.prefab"; public static string mdlLunarExploder = "RoR2/Base/LunarExploder/mdlLunarExploder.fbx"; public static string LunarExploderShardGhost = "RoR2/Base/LunarExploder/LunarExploderShardGhost.prefab"; public static string LunarExploderShardProjectile = "RoR2/Base/LunarExploder/LunarExploderShardProjectile.prefab"; public static string LunarDefense = "RoR2/Base/LunarGolem/LunarDefense.prefab"; public static string LunarGolemBody = "RoR2/Base/LunarGolem/LunarGolemBody.prefab"; public static string LunarGolemDeath = "RoR2/Base/LunarGolem/LunarGolemDeath.prefab"; public static string LunarGolemDeathopt = "RoR2/Base/LunarGolem/LunarGolemDeath_opt.prefab"; public static string LunarGolemMaster = "RoR2/Base/LunarGolem/LunarGolemMaster.prefab"; public static string LunarGolemSpawnEffect = "RoR2/Base/LunarGolem/LunarGolemSpawnEffect.prefab"; public static string mdlLunarGolem = "RoR2/Base/LunarGolem/mdlLunarGolem.fbx"; public static string mdlLunarGolemOld = "RoR2/Base/LunarGolem/mdlLunarGolemOld.fbx"; public static string BlastSmokeLunarGolem = "RoR2/Base/LunarGolem/BlastSmokeLunarGolem.prefab"; public static string ChargeLunarGolemTwinShot = "RoR2/Base/LunarGolem/ChargeLunarGolemTwinShot.prefab"; public static string ChargeLunarGolemTwinShotopt = "RoR2/Base/LunarGolem/ChargeLunarGolemTwinShot_opt.prefab"; public static string LunarGolemShieldCharge = "RoR2/Base/LunarGolem/LunarGolemShieldCharge.prefab"; public static string LunarGolemTwinShotExplosion = "RoR2/Base/LunarGolem/LunarGolemTwinShotExplosion.prefab"; public static string LunarGolemTwinShotExplosionSticky = "RoR2/Base/LunarGolem/LunarGolemTwinShotExplosionSticky.prefab"; public static string LunarGolemTwinShotProjectile = "RoR2/Base/LunarGolem/LunarGolemTwinShotProjectile.prefab"; public static string LunarGolemTwinShotProjectileGhost = "RoR2/Base/LunarGolem/LunarGolemTwinShotProjectileGhost.prefab"; public static string LunarGolemTwinShotProjectileSticky = "RoR2/Base/LunarGolem/LunarGolemTwinShotProjectileSticky.prefab"; public static string MuzzleflashLunarGolemTwinShot = "RoR2/Base/LunarGolem/MuzzleflashLunarGolemTwinShot.prefab"; public static string LunarWispBody = "RoR2/Base/LunarWisp/LunarWispBody.prefab"; public static string LunarWispBombChargeUp = "RoR2/Base/LunarWisp/LunarWispBombChargeUp.prefab"; public static string LunarWispDeath = "RoR2/Base/LunarWisp/LunarWispDeath.prefab"; public static string LunarWispMaster = "RoR2/Base/LunarWisp/LunarWispMaster.prefab"; public static string LunarWispSpawn = "RoR2/Base/LunarWisp/LunarWispSpawn.prefab"; public static string LunarWispTracerLeadMesh = "RoR2/Base/LunarWisp/LunarWispTracerLead_Mesh.fbx"; public static string mdlLunarWisp = "RoR2/Base/LunarWisp/mdlLunarWisp.fbx"; public static string MuzzleflashLunarWispMinigun = "RoR2/Base/LunarWisp/MuzzleflashLunarWispMinigun.prefab"; public static string MuzzleflashLunarWispMinigunopt = "RoR2/Base/LunarWisp/MuzzleflashLunarWispMinigun_opt.prefab"; public static string MuzzleflashLunarWispMinigunTell = "RoR2/Base/LunarWisp/MuzzleflashLunarWispMinigunTell.prefab"; public static string LunarWispMinigunHitspark = "RoR2/Base/LunarWisp/LunarWispMinigunHitspark.prefab"; public static string LunarWispTrackingBomb = "RoR2/Base/LunarWisp/LunarWispTrackingBomb.prefab"; public static string LunarWispTrackingBombExplosion = "RoR2/Base/LunarWisp/LunarWispTrackingBombExplosion.prefab"; public static string LunarWispTrackingBombGhost = "RoR2/Base/LunarWisp/LunarWispTrackingBombGhost.prefab"; public static string TracerLunarWispMinigun = "RoR2/Base/LunarWisp/TracerLunarWispMinigun.prefab"; public static string TracerLunarWispMinigunopt = "RoR2/Base/LunarWisp/TracerLunarWispMinigun_opt.prefab"; public static string mdlMageAltColossus = "RoR2/Base/Mage/mdlMageAltColossus.fbx"; public static string mdlArtificerAltSolus = "RoR2/Base/Mage/mdlArtificerAltSolus.fbx"; public static string vfxWireTrailMage = "RoR2/Base/Mage/vfxWireTrailMage.prefab"; public static string FirewallAreaIndicator = "RoR2/Base/Mage/FirewallAreaIndicator.prefab"; public static string LockedMage = "RoR2/Base/Mage/LockedMage.prefab"; public static string MageUnlockPreExplosion = "RoR2/Base/Mage/MageUnlockPreExplosion.prefab"; public static string mageeffects = "RoR2/Base/Mage/mage effects.fbx"; public static string MageBody = "RoR2/Base/Mage/MageBody.prefab"; public static string MageCrosshair = "RoR2/Base/Mage/MageCrosshair.prefab"; public static string MageDisplay = "RoR2/Base/Mage/MageDisplay.prefab"; public static string MageDisplayParticlesFireMatrix = "RoR2/Base/Mage/MageDisplayParticlesFireMatrix.prefab"; public static string MageDisplayParticlesLightingMatrix = "RoR2/Base/Mage/MageDisplayParticlesLightingMatrix.prefab"; public static string MageMonsterMaster = "RoR2/Base/Mage/MageMonsterMaster.prefab"; public static string mdlMage = "RoR2/Base/Mage/mdlMage.fbx"; public static string mdlMageMaster = "RoR2/Base/Mage/mdlMage@Master.fbx"; public static string mdlMageAltCostume = "RoR2/Base/Mage/mdlMageAltCostume.fbx"; public static string mdlMageNovaCage = "RoR2/Base/Mage/mdlMageNovaCage.fbx"; public static string mdlMageRoller = "RoR2/Base/Mage/mdlMageRoller.fbx"; public static string ChargeMageIceBomb = "RoR2/Base/Mage/ChargeMageIceBomb.prefab"; public static string ChargeMageLightningBomb = "RoR2/Base/Mage/ChargeMageLightningBomb.prefab"; public static string MageFireboltBasic = "RoR2/Base/Mage/MageFireboltBasic.prefab"; public static string MageFireboltGhost = "RoR2/Base/Mage/MageFireboltGhost.prefab"; public static string MageFlamethrowerEffect = "RoR2/Base/Mage/MageFlamethrowerEffect.prefab"; public static string MageIceBombGhost = "RoR2/Base/Mage/MageIceBombGhost.prefab"; public static string MageIceBombProjectile = "RoR2/Base/Mage/MageIceBombProjectile.prefab"; public static string MageIceExplosion = "RoR2/Base/Mage/MageIceExplosion.prefab"; public static string MageIcePillarGhost = "RoR2/Base/Mage/MageIcePillarGhost.prefab"; public static string MageIcewallPillarProjectile = "RoR2/Base/Mage/MageIcewallPillarProjectile.prefab"; public static string MageIcewallWalkerProjectile = "RoR2/Base/Mage/MageIcewallWalkerProjectile.prefab"; public static string MageLightningboltBasic = "RoR2/Base/Mage/MageLightningboltBasic.prefab"; public static string MageLightningboltGhost = "RoR2/Base/Mage/MageLightningboltGhost.prefab"; public static string MageLightningBombGhost = "RoR2/Base/Mage/MageLightningBombGhost.prefab"; public static string MageLightningBombProjectile = "RoR2/Base/Mage/MageLightningBombProjectile.prefab"; public static string MageLightningOrbEffect = "RoR2/Base/Mage/MageLightningOrbEffect.prefab"; public static string MuzzleflashMageFire = "RoR2/Base/Mage/MuzzleflashMageFire.prefab"; public static string MuzzleflashMageIceLarge = "RoR2/Base/Mage/MuzzleflashMageIceLarge.prefab"; public static string MuzzleflashMageLightning = "RoR2/Base/Mage/MuzzleflashMageLightning.prefab"; public static string MuzzleflashMageLightningLarge = "RoR2/Base/Mage/MuzzleflashMageLightningLarge.prefab"; public static string MuzzleflashMageLightningLargeWithTrail = "RoR2/Base/Mage/MuzzleflashMageLightningLargeWithTrail.prefab"; public static string OmniImpactVFXLightningMage = "RoR2/Base/Mage/OmniImpactVFXLightningMage.prefab"; public static string MagmaMeatballMesh = "RoR2/Base/MagmaWorm/MagmaMeatball_Mesh.fbx"; public static string MagmaOrbExplosion = "RoR2/Base/MagmaWorm/MagmaOrbExplosion.prefab"; public static string MagmaOrbGhost = "RoR2/Base/MagmaWorm/MagmaOrbGhost.prefab"; public static string MagmaOrbProjectile = "RoR2/Base/MagmaWorm/MagmaOrbProjectile.prefab"; public static string MagmaWormFireball = "RoR2/Base/MagmaWorm/MagmaWorm_Fireball.prefab"; public static string MagmaWormBody = "RoR2/Base/MagmaWorm/MagmaWormBody.prefab"; public static string MagmaWormBurrow = "RoR2/Base/MagmaWorm/MagmaWormBurrow.prefab"; public static string MagmaWormDeath = "RoR2/Base/MagmaWorm/MagmaWormDeath.prefab"; public static string MagmaWormDeathDust = "RoR2/Base/MagmaWorm/MagmaWormDeathDust.prefab"; public static string MagmaWormImpactExplosion = "RoR2/Base/MagmaWorm/MagmaWormImpactExplosion.prefab"; public static string MagmaWormMaster = "RoR2/Base/MagmaWorm/MagmaWormMaster.prefab"; public static string mdlFracturedGround = "RoR2/Base/MagmaWorm/mdlFracturedGround.fbx"; public static string mdlMagmaWorm = "RoR2/Base/MagmaWorm/mdlMagmaWorm.fbx"; public static string mdlMercAltColossus = "RoR2/Base/Merc/mdlMercAltColossus.fbx"; public static string mdlMercAltPrisoner = "RoR2/Base/Merc/mdlMercAltPrisoner.fbx"; public static string mdlMercAltPrisonerBackCloth = "RoR2/Base/Merc/mdlMercAltPrisonerBackCloth.fbx"; public static string mdlMercAltPrisonerFrontCloth = "RoR2/Base/Merc/mdlMercAltPrisonerFrontCloth.fbx"; public static string MercAltPrisonerHead = "RoR2/Base/Merc/MercAltPrisonerHead.prefab"; public static string mdlMercAltVulture = "RoR2/Base/Merc/mdlMercAltVulture.fbx"; public static string mdlMerc = "RoR2/Base/Merc/mdlMerc.fbx"; public static string mdlMercMaster = "RoR2/Base/Merc/mdlMerc@Master.fbx"; public static string mdlMercOni = "RoR2/Base/Merc/mdlMercOni.fbx"; public static string mercswipes = "RoR2/Base/Merc/merc swipes.fbx"; public static string MercAssaulterEffect = "RoR2/Base/Merc/MercAssaulterEffect.prefab"; public static string MercBody = "RoR2/Base/Merc/MercBody.prefab"; public static string MercDisplay = "RoR2/Base/Merc/MercDisplay.prefab"; public static string MercExposeConsumeEffect = "RoR2/Base/Merc/MercExposeConsumeEffect.prefab"; public static string MercExposeEffect = "RoR2/Base/Merc/MercExposeEffect.prefab"; public static string MercMonsterMaster = "RoR2/Base/Merc/MercMonsterMaster.prefab"; public static string MercSwordFinisherSlash = "RoR2/Base/Merc/MercSwordFinisherSlash.prefab"; public static string MercSwordSlash = "RoR2/Base/Merc/MercSwordSlash.prefab"; public static string EvisOverlapProjectile = "RoR2/Base/Merc/EvisOverlapProjectile.prefab"; public static string EvisOverlapProjectileGhost = "RoR2/Base/Merc/EvisOverlapProjectileGhost.prefab"; public static string EvisProjectile = "RoR2/Base/Merc/EvisProjectile.prefab"; public static string EvisProjectileGhost = "RoR2/Base/Merc/EvisProjectileGhost.prefab"; public static string ImpactMercAssaulter = "RoR2/Base/Merc/ImpactMercAssaulter.prefab"; public static string ImpactMercEvis = "RoR2/Base/Merc/ImpactMercEvis.prefab"; public static string ImpactMercFocusedAssault = "RoR2/Base/Merc/ImpactMercFocusedAssault.prefab"; public static string MercDashHitOverlay = "RoR2/Base/Merc/MercDashHitOverlay.prefab"; public static string MercFocusedAssaultOrbEffect = "RoR2/Base/Merc/MercFocusedAssaultOrbEffect.prefab"; public static string MercSwordSlashWhirlwind = "RoR2/Base/Merc/MercSwordSlashWhirlwind.prefab"; public static string MercSwordUppercutSlash = "RoR2/Base/Merc/MercSwordUppercutSlash.prefab"; public static string OmniImpactVFXSlashMerc = "RoR2/Base/Merc/OmniImpactVFXSlashMerc.prefab"; public static string OmniImpactVFXSlashMercEvis = "RoR2/Base/Merc/OmniImpactVFXSlashMercEvis.prefab"; public static string mdlMiniMushroom = "RoR2/Base/MiniMushroom/mdlMiniMushroom.fbx"; public static string mdlMiniMushroomairLoopDown = "RoR2/Base/MiniMushroom/mdlMiniMushroom@airLoopDown.fbx"; public static string mdlMiniMushroomairLoopUp = "RoR2/Base/MiniMushroom/mdlMiniMushroom@airLoopUp.fbx"; public static string mdlMiniMushroomALLANIMS = "RoR2/Base/MiniMushroom/mdlMiniMushroom@ALLANIMS.FBX"; public static string mdlMiniMushroomDeath = "RoR2/Base/MiniMushroom/mdlMiniMushroom@Death.fbx"; public static string mdlMiniMushroomFlinch1 = "RoR2/Base/MiniMushroom/mdlMiniMushroom@Flinch1.fbx"; public static string mdlMiniMushroomFlinch1POSE = "RoR2/Base/MiniMushroom/mdlMiniMushroom@Flinch1_POSE.fbx"; public static string mdlMiniMushroomFlinch2 = "RoR2/Base/MiniMushroom/mdlMiniMushroom@Flinch2.fbx"; public static string mdlMiniMushroomIdle = "RoR2/Base/MiniMushroom/mdlMiniMushroom@Idle.fbx"; public static string mdlMiniMushroomJump = "RoR2/Base/MiniMushroom/mdlMiniMushroom@Jump.fbx"; public static string mdlMiniMushroomLightImpact = "RoR2/Base/MiniMushroom/mdlMiniMushroom@LightImpact.fbx"; public static string mdlMiniMushroomPlantEnd = "RoR2/Base/MiniMushroom/mdlMiniMushroom@PlantEnd.fbx"; public static string mdlMiniMushroomPlantFlee = "RoR2/Base/MiniMushroom/mdlMiniMushroom@PlantFlee.fbx"; public static string mdlMiniMushroomPlantLoop = "RoR2/Base/MiniMushroom/mdlMiniMushroom@PlantLoop.fbx"; public static string mdlMiniMushroomPlantStart = "RoR2/Base/MiniMushroom/mdlMiniMushroom@PlantStart.fbx"; public static string mdlMiniMushroomRunForward = "RoR2/Base/MiniMushroom/mdlMiniMushroom@RunForward.fbx"; public static string mdlMiniMushroomSpawn = "RoR2/Base/MiniMushroom/mdlMiniMushroom@Spawn.fbx"; public static string mdlMiniMushroomSporeGather = "RoR2/Base/MiniMushroom/mdlMiniMushroom@SporeGather.fbx"; public static string mdlMiniMushroomSporeRelease = "RoR2/Base/MiniMushroom/mdlMiniMushroom@SporeRelease.fbx"; public static string mdlSporeGrenade = "RoR2/Base/MiniMushroom/mdlSporeGrenade.FBX"; public static string MiniMushroomBody = "RoR2/Base/MiniMushroom/MiniMushroomBody.prefab"; public static string MiniMushroomLandingImpact = "RoR2/Base/MiniMushroom/MiniMushroomLandingImpact.prefab"; public static string MiniMushroomLandingImpactopt = "RoR2/Base/MiniMushroom/MiniMushroomLandingImpact_opt.prefab"; public static string MiniMushroomMaster = "RoR2/Base/MiniMushroom/MiniMushroomMaster.prefab"; public static string MiniMushroomWardopt = "RoR2/Base/MiniMushroom/MiniMushroomWard opt.prefab"; public static string MiniMushroomWard = "RoR2/Base/MiniMushroom/MiniMushroomWard.prefab"; public static string MiniMushroomPlantEffect = "RoR2/Base/MiniMushroom/MiniMushroomPlantEffect.prefab"; public static string MiniMushroomPlantEffectopt = "RoR2/Base/MiniMushroom/MiniMushroomPlantEffect_opt.prefab"; public static string SporeGrenadeGasImpact = "RoR2/Base/MiniMushroom/SporeGrenadeGasImpact.prefab"; public static string SporeGrenadeGhost = "RoR2/Base/MiniMushroom/SporeGrenadeGhost.prefab"; public static string SporeGrenadeProjectile = "RoR2/Base/MiniMushroom/SporeGrenadeProjectile.prefab"; public static string SporeGrenadeProjectileDotZone = "RoR2/Base/MiniMushroom/SporeGrenadeProjectileDotZone.prefab"; public static string SporeGrenadeRepeatHitImpact = "RoR2/Base/MiniMushroom/SporeGrenadeRepeatHitImpact.prefab"; public static string SporeGrenadeChargeEffect = "RoR2/Base/MiniMushroom/SporeGrenadeChargeEffect.prefab"; public static string NullifierDeathBombExplosion = "RoR2/Base/Nullifier/NullifierDeathBombExplosion.prefab"; public static string NullifierDeathBombGhost = "RoR2/Base/Nullifier/NullifierDeathBombGhost.prefab"; public static string NullifierDeathBombProjectile = "RoR2/Base/Nullifier/NullifierDeathBombProjectile.prefab"; public static string mdlNullifier = "RoR2/Base/Nullifier/mdlNullifier.fbx"; public static string mdlNullifierVoidOutro = "RoR2/Base/Nullifier/mdlNullifier@VoidOutro.fbx"; public static string NullifierAllyBody = "RoR2/Base/Nullifier/NullifierAllyBody.prefab"; public static string NullifierAllyMaster = "RoR2/Base/Nullifier/NullifierAllyMaster.prefab"; public static string NullifierBody = "RoR2/Base/Nullifier/NullifierBody.prefab"; public static string NullifierMaster = "RoR2/Base/Nullifier/NullifierMaster.prefab"; public static string NullifierSpawnEffect = "RoR2/Base/Nullifier/NullifierSpawnEffect.prefab"; public static string NullifyStack1Effect = "RoR2/Base/Nullifier/NullifyStack1Effect.prefab"; public static string NullifyStack2Effect = "RoR2/Base/Nullifier/NullifyStack2Effect.prefab"; public static string NullifyStack3Effect = "RoR2/Base/Nullifier/NullifyStack3Effect.prefab"; public static string NullifierBombProjectile = "RoR2/Base/Nullifier/NullifierBombProjectile.prefab"; public static string NullifierExplosion = "RoR2/Base/Nullifier/NullifierExplosion.prefab"; public static string NullifierPreBombGhost = "RoR2/Base/Nullifier/NullifierPreBombGhost.prefab"; public static string NullifierPreBombProjectile = "RoR2/Base/Nullifier/NullifierPreBombProjectile.prefab"; public static string mdlParent = "RoR2/Base/Parent/mdlParent.fbx"; public static string ParentBody = "RoR2/Base/Parent/ParentBody.prefab"; public static string ParentBodyEnergyEffect = "RoR2/Base/Parent/ParentBodyEnergyEffect.prefab"; public static string ParentDeathEffect = "RoR2/Base/Parent/ParentDeathEffect.prefab"; public static string ParentMaster = "RoR2/Base/Parent/ParentMaster.prefab"; public static string ParentSlamEffect = "RoR2/Base/Parent/ParentSlamEffect.prefab"; public static string ParentStep = "RoR2/Base/Parent/ParentStep.prefab"; public static string ParentBlinkEffect = "RoR2/Base/Parent/ParentBlinkEffect.prefab"; public static string ChargeEyeBlast = "RoR2/Base/RoboBallBoss/ChargeEyeBlast.prefab"; public static string ChargeScavEnergyCannon = "RoR2/Base/RoboBallBoss/ChargeScavEnergyCannon.prefab"; public static string EyeBeamRoboBallMini = "RoR2/Base/RoboBallBoss/EyeBeamRoboBallMini.prefab"; public static string mdlRoboBallBoss = "RoR2/Base/RoboBallBoss/mdlRoboBallBoss.fbx"; public static string mdlRoboBallMini = "RoR2/Base/RoboBallBoss/mdlRoboBallMini.fbx"; public static string OmniExplosionVFXRoboBallBossDeath = "RoR2/Base/RoboBallBoss/OmniExplosionVFXRoboBallBossDeath.prefab"; public static string RoboBallBossBody = "RoR2/Base/RoboBallBoss/RoboBallBossBody.prefab"; public static string RoboBallBossMaster = "RoR2/Base/RoboBallBoss/RoboBallBossMaster.prefab"; public static string RoboBallBossPreDeath = "RoR2/Base/RoboBallBoss/RoboBallBossPreDeath.prefab"; public static string OmniExplosionVFXRoboBallDeath = "RoR2/Base/RoboBallBoss/OmniExplosionVFXRoboBallDeath.prefab"; public static string RoboBallMiniBody = "RoR2/Base/RoboBallBoss/RoboBallMiniBody.prefab"; public static string RoboBallMiniMaster = "RoR2/Base/RoboBallBoss/RoboBallMiniMaster.prefab"; public static string MuzzleflashRoboBall = "RoR2/Base/RoboBallBoss/MuzzleflashRoboBall.prefab"; public static string RoboBallBossDelayKnockupEffect = "RoR2/Base/RoboBallBoss/RoboBallBossDelayKnockupEffect.prefab"; public static string RoboBallDelayKnockupProjectile = "RoR2/Base/RoboBallBoss/RoboBallDelayKnockupProjectile.prefab"; public static string RoboBallProjectile = "RoR2/Base/RoboBallBoss/RoboBallProjectile.prefab"; public static string RoboBallProjectileGhost = "RoR2/Base/RoboBallBoss/RoboBallProjectileGhost.prefab"; public static string superrobobits = "RoR2/Base/RoboBallBoss/super robo bits.fbx"; public static string RoboBallDamageZone = "RoR2/Base/RoboBallBoss/RoboBallDamageZone.prefab"; public static string SuperRoboBallProjectile = "RoR2/Base/RoboBallBoss/SuperRoboBallProjectile.prefab"; public static string SuperRoboBallBossBody = "RoR2/Base/RoboBallBoss/SuperRoboBallBossBody.prefab"; public static string SuperRoboBallBossMaster = "RoR2/Base/RoboBallBoss/SuperRoboBallBossMaster.prefab"; public static string mdlScav = "RoR2/Base/Scav/mdlScav.fbx"; public static string mdlScavBackpackOnly = "RoR2/Base/Scav/mdlScavBackpackOnly.fbx"; public static string ScavBackpack = "RoR2/Base/Scav/ScavBackpack.prefab"; public static string ScavBody = "RoR2/Base/Scav/ScavBody.prefab"; public static string ScavMaster = "RoR2/Base/Scav/ScavMaster.prefab"; public static string ScavSackExplosion = "RoR2/Base/Scav/ScavSackExplosion.prefab"; public static string ScavSackGhost = "RoR2/Base/Scav/ScavSackGhost.prefab"; public static string ScavSackProjectile = "RoR2/Base/Scav/ScavSackProjectile.prefab"; public static string ScavSitImpact = "RoR2/Base/Scav/ScavSitImpact.prefab"; public static string ChargeScavSack = "RoR2/Base/Scav/ChargeScavSack.prefab"; public static string MuzzleflashScavSack = "RoR2/Base/Scav/MuzzleflashScavSack.prefab"; public static string OmniExplosionVFXScavCannonImpactExplosion = "RoR2/Base/Scav/OmniExplosionVFXScavCannonImpactExplosion.prefab"; public static string ScavEnergyCannonGhost = "RoR2/Base/Scav/ScavEnergyCannonGhost.prefab"; public static string ScavEnergyCannonProjectile = "RoR2/Base/Scav/ScavEnergyCannonProjectile.prefab"; public static string squidprojectile = "RoR2/Base/Scav/squid projectile.fbx"; public static string ScavLunar1Body = "RoR2/Base/ScavLunar/ScavLunar1Body.prefab"; public static string ScavLunar1Master = "RoR2/Base/ScavLunar/ScavLunar1Master.prefab"; public static string ScavLunar2Body = "RoR2/Base/ScavLunar/ScavLunar2Body.prefab"; public static string ScavLunar2Master = "RoR2/Base/ScavLunar/ScavLunar2Master.prefab"; public static string ScavLunar3Body = "RoR2/Base/ScavLunar/ScavLunar3Body.prefab"; public static string ScavLunar3Master = "RoR2/Base/ScavLunar/ScavLunar3Master.prefab"; public static string ScavLunar4Body = "RoR2/Base/ScavLunar/ScavLunar4Body.prefab"; public static string ScavLunar4Master = "RoR2/Base/ScavLunar/ScavLunar4Master.prefab"; public static string ScavLunarBackpack = "RoR2/Base/ScavLunar/ScavLunarBackpack.prefab"; public static string mdlNewtShopkeeper = "RoR2/Base/Shopkeeper/mdlNewtShopkeeper.fbx"; public static string NewtLandingImpact = "RoR2/Base/Shopkeeper/NewtLandingImpact.prefab"; public static string ShopkeeperBody = "RoR2/Base/Shopkeeper/ShopkeeperBody.prefab"; public static string ShopkeeperMaster = "RoR2/Base/Shopkeeper/ShopkeeperMaster.prefab"; public static string ChargeNewtStomp = "RoR2/Base/Shopkeeper/ChargeNewtStomp.prefab"; public static string ShopkeeperKickFromShopExplosion = "RoR2/Base/Shopkeeper/ShopkeeperKickFromShopExplosion.prefab"; public static string SpectatorBody = "RoR2/Base/Shopkeeper/Spectator/SpectatorBody.prefab"; public static string SpectatorSlowBody = "RoR2/Base/Shopkeeper/Spectator/SpectatorSlowBody.prefab"; public static string mdlTitan = "RoR2/Base/Titan/mdlTitan.fbx"; public static string mdlTitanFist = "RoR2/Base/Titan/mdlTitanFist.fbx"; public static string mdlTitanPieces = "RoR2/Base/Titan/mdlTitanPieces.fbx"; public static string titangoldprops = "RoR2/Base/Titan/titan gold props.fbx"; public static string ExplosionGolemClap = "RoR2/Base/Titan/ExplosionGolemClap.prefab"; public static string LaserTitan = "RoR2/Base/Titan/LaserTitan.prefab"; public static string TitanFistEffect = "RoR2/Base/Titan/TitanFistEffect.prefab"; public static string TitanPreFistGhost = "RoR2/Base/Titan/TitanPreFistGhost.prefab"; public static string TitanPreFistProjectile = "RoR2/Base/Titan/TitanPreFistProjectile.prefab"; public static string TitanRechargeRocksEffect = "RoR2/Base/Titan/TitanRechargeRocksEffect.prefab"; public static string TitanBody = "RoR2/Base/Titan/TitanBody.prefab"; public static string TitanDeathEffect = "RoR2/Base/Titan/TitanDeathEffect.prefab"; public static string TitanMaster = "RoR2/Base/Titan/TitanMaster.prefab"; public static string TitanSpawnEffect = "RoR2/Base/Titan/TitanSpawnEffect.prefab"; public static string ChargeGolemGold = "RoR2/Base/Titan/ChargeGolemGold.prefab"; public static string LaserGolemGold = "RoR2/Base/Titan/LaserGolemGold.prefab"; public static string LaserTitanGold = "RoR2/Base/Titan/LaserTitanGold.prefab"; public static string TitanGoldFistEffect = "RoR2/Base/Titan/TitanGoldFistEffect.prefab"; public static string TitanGoldPreFistProjectile = "RoR2/Base/Titan/TitanGoldPreFistProjectile.prefab"; public static string TitanGoldAllyMaster = "RoR2/Base/Titan/TitanGoldAllyMaster.prefab"; public static string TitanGoldBody = "RoR2/Base/Titan/TitanGoldBody.prefab"; public static string TitanGoldDeathEffect = "RoR2/Base/Titan/TitanGoldDeathEffect.prefab"; public static string TitanGoldMaster = "RoR2/Base/Titan/TitanGoldMaster.prefab"; public static string TitanRockController = "RoR2/Base/Titan/TitanRockController.prefab"; public static string TitanRockProjectile = "RoR2/Base/Titan/TitanRockProjectile.prefab"; public static string TitanRockProjectileGhost = "RoR2/Base/Titan/TitanRockProjectileGhost.prefab"; public static string mdlToolbotAltColossus = "RoR2/Base/Toolbot/mdlToolbotAltColossus.fbx"; public static string mdlToolbotAltVulture = "RoR2/Base/Toolbot/mdlToolbotAltVulture.fbx"; public static string mdlToolbot = "RoR2/Base/Toolbot/mdlToolbot.fbx"; public static string mdlToolbotaimYaw360 = "RoR2/Base/Toolbot/mdlToolbot@aimYaw360.fbx"; public static string mdlToolbotDualWield = "RoR2/Base/Toolbot/mdlToolbot@DualWield.fbx"; public static string mdlToolbotDualWieldFire = "RoR2/Base/Toolbot/mdlToolbot@DualWieldFire.fbx"; public static string mdlToolbotDualWieldPitch = "RoR2/Base/Toolbot/mdlToolbot@DualWieldPitch.fbx"; public static string mdlToolbotMasterAnims = "RoR2/Base/Toolbot/mdlToolbot@MasterAnims.fbx"; public static string mdlToolbotAltCostume = "RoR2/Base/Toolbot/mdlToolbotAltCostume.fbx"; public static string mdlToolbotDualWieldCover = "RoR2/Base/Toolbot/mdlToolbotDualWieldCover.fbx"; public static string RoboCratePod = "RoR2/Base/Toolbot/RoboCratePod.prefab"; public static string RoboCratePodGroundImpact = "RoR2/Base/Toolbot/RoboCratePodGroundImpact.prefab"; public static string CryoCanisterBombletGhost = "RoR2/Base/Toolbot/CryoCanisterBombletGhost.prefab"; public static string CryoCanisterBombletsProjectile = "RoR2/Base/Toolbot/CryoCanisterBombletsProjectile.prefab"; public static string CryoCanisterExplosionPrimary = "RoR2/Base/Toolbot/CryoCanisterExplosionPrimary.prefab"; public static string CryoCanisterExplosionSecondary = "RoR2/Base/Toolbot/CryoCanisterExplosionSecondary.prefab"; public static string CryoCanisterGhost = "RoR2/Base/Toolbot/CryoCanisterGhost.prefab"; public static string CryoCanisterProjectile = "RoR2/Base/Toolbot/CryoCanisterProjectile.prefab"; public static string EjectToolbotDualWieldCover = "RoR2/Base/Toolbot/EjectToolbotDualWieldCover.prefab"; public static string ImpactNailgun = "RoR2/Base/Toolbot/ImpactNailgun.prefab"; public static string ImpactSpear = "RoR2/Base/Toolbot/ImpactSpear.prefab"; public static string ImpactToolbotDash = "RoR2/Base/Toolbot/ImpactToolbotDash.prefab"; public static string ImpactToolbotDashLarge = "RoR2/Base/Toolbot/ImpactToolbotDashLarge.prefab"; public static string OmniExplosionVFXToolbotQuick = "RoR2/Base/Toolbot/OmniExplosionVFXToolbotQuick.prefab"; public static string SMGCrosshair = "RoR2/Base/Toolbot/SMGCrosshair.prefab"; public static string ToolbotDualWieldCrosshair = "RoR2/Base/Toolbot/ToolbotDualWieldCrosshair.prefab"; public static string ToolbotGrenadeGhost = "RoR2/Base/Toolbot/ToolbotGrenadeGhost.prefab"; public static string ToolbotGrenadeLauncherCrosshair = "RoR2/Base/Toolbot/ToolbotGrenadeLauncherCrosshair.prefab"; public static string ToolbotGrenadeLauncherProjectile = "RoR2/Base/Toolbot/ToolbotGrenadeLauncherProjectile.prefab"; public static string TracerToolbotNails = "RoR2/Base/Toolbot/TracerToolbotNails.prefab"; public static string TracerToolbotRebar = "RoR2/Base/Toolbot/TracerToolbotRebar.prefab"; public static string ToolbotBody = "RoR2/Base/Toolbot/ToolbotBody.prefab"; public static string ToolbotDisplay = "RoR2/Base/Toolbot/ToolbotDisplay.prefab"; public static string ToolbotMonsterMaster = "RoR2/Base/Toolbot/ToolbotMonsterMaster.prefab"; public static string mdlRoboCrate = "RoR2/Base/Toolbot/mdlRoboCrate.fbx"; public static string robotcratebits = "RoR2/Base/Toolbot/robotcrate bits.fbx"; public static string toolbotprops = "RoR2/Base/Toolbot/toolbot props.fbx"; public static string ToolbotBuzzsawEffectLoop = "RoR2/Base/Toolbot/ToolbotBuzzsawEffectLoop.prefab"; public static string ToolbotBuzzsawImpactEffectLoop = "RoR2/Base/Toolbot/ToolbotBuzzsawImpactEffectLoop.prefab"; public static string ToolbotDualWieldCover = "RoR2/Base/Toolbot/ToolbotDualWieldCover.prefab"; public static string mdlTreebotColossus = "RoR2/Base/Treebot/mdlTreebotColossus.fbx"; public static string mdlTreebotAltSolus = "RoR2/Base/Treebot/mdlTreebotAltSolus.fbx"; public static string vfxWireTrailTreebot = "RoR2/Base/Treebot/vfxWireTrailTreebot.prefab"; public static string EntangleEffect = "RoR2/Base/Treebot/EntangleEffect.prefab"; public static string FruitingEffect = "RoR2/Base/Treebot/FruitingEffect.prefab"; public static string mdlTreebot = "RoR2/Base/Treebot/mdlTreebot.fbx"; public static string mdlTreebotMaster = "RoR2/Base/Treebot/mdlTreebot@Master.fbx"; public static string mdlTreebotPounder = "RoR2/Base/Treebot/mdlTreebotPounder.fbx"; public static string TreebotFlower1 = "RoR2/Base/Treebot/TreebotFlower1.prefab"; public static string TreebotFlower2 = "RoR2/Base/Treebot/TreebotFlower2.prefab"; public static string ChargeSonicBoom = "RoR2/Base/Treebot/ChargeSonicBoom.prefab"; public static string EntangleOrbEffect = "RoR2/Base/Treebot/EntangleOrbEffect.prefab"; public static string OmniExplosionVFXTreebot = "RoR2/Base/Treebot/OmniExplosionVFXTreebot.prefab"; public static string OmniExplosionVFXTreebotMortar = "RoR2/Base/Treebot/OmniExplosionVFXTreebotMortar.prefab"; public static string OmniImpactVFXSlashSyringe = "RoR2/Base/Treebot/OmniImpactVFXSlashSyringe.prefab"; public static string SeedpodMortarGhost = "RoR2/Base/Treebot/SeedpodMortarGhost.prefab"; public static string SyringeGhost = "RoR2/Base/Treebot/SyringeGhost.prefab"; public static string SyringeHealingGhost = "RoR2/Base/Treebot/SyringeHealingGhost.prefab"; public static string SyringeProjectile = "RoR2/Base/Treebot/SyringeProjectile.prefab"; public static string SyringeProjectileHealing = "RoR2/Base/Treebot/SyringeProjectileHealing.prefab"; public static string TreebotFlowerSeed = "RoR2/Base/Treebot/TreebotFlowerSeed.prefab"; public static string TreebotFruitDeathEffect = "RoR2/Base/Treebot/TreebotFruitDeathEffect.prefab"; public static string TreebotFruitSeedGhost = "RoR2/Base/Treebot/TreebotFruitSeedGhost.prefab"; public static string TreebotFruitSeedProjectile = "RoR2/Base/Treebot/TreebotFruitSeedProjectile.prefab"; public static string TreebotMortar2 = "RoR2/Base/Treebot/TreebotMortar2.prefab"; public static string TreebotMortarMuzzleflash = "RoR2/Base/Treebot/TreebotMortarMuzzleflash.prefab"; public static string TreebotMortarRain = "RoR2/Base/Treebot/TreebotMortarRain.prefab"; public static string TreebotMortarRainExplosion = "RoR2/Base/Treebot/TreebotMortarRainExplosion.prefab"; public static string TreebotPlantShockwaveEffect = "RoR2/Base/Treebot/TreebotPlantShockwaveEffect.prefab"; public static string TreebotShockwaveEffect = "RoR2/Base/Treebot/TreebotShockwaveEffect.prefab"; public static string treebottree = "RoR2/Base/Treebot/treebot tree.spm"; public static string TreebotBody = "RoR2/Base/Treebot/TreebotBody.prefab"; public static string TreebotCrosshair = "RoR2/Base/Treebot/TreebotCrosshair.prefab"; public static string TreebotDisplay = "RoR2/Base/Treebot/TreebotDisplay.prefab"; public static string TreebotFruitPack = "RoR2/Base/Treebot/TreebotFruitPack.prefab"; public static string TreebotMonsterMaster = "RoR2/Base/Treebot/TreebotMonsterMaster.prefab"; public static string TreebotUnlockInteractable = "RoR2/Base/Treebot/TreebotUnlockInteractable.prefab"; public static string mdlTreebotSeedpod = "RoR2/Base/Treebot/mdlTreebotSeedpod.fbx"; public static string treebotfruits = "RoR2/Base/Treebot/treebot fruits.fbx"; public static string treebotrootprops = "RoR2/Base/Treebot/treebot root props.fbx"; public static string TreebotMortarAreaIndicator = "RoR2/Base/Treebot/TreebotMortarAreaIndicator.prefab"; public static string TreebotPounderAreaIndicator = "RoR2/Base/Treebot/TreebotPounderAreaIndicator.prefab"; public static string WeakEffect = "RoR2/Base/Treebot/WeakEffect.prefab"; public static string ChargeVagrantNova = "RoR2/Base/Vagrant/ChargeVagrantNova.prefab"; public static string ChargeVagrantTrackingBomb = "RoR2/Base/Vagrant/ChargeVagrantTrackingBomb.prefab"; public static string mdlVagrant = "RoR2/Base/Vagrant/mdlVagrant.fbx"; public static string VagrantCannon = "RoR2/Base/Vagrant/VagrantCannon.prefab"; public static string VagrantCannonExplosion = "RoR2/Base/Vagrant/VagrantCannonExplosion.prefab"; public static string VagrantCannonGhost = "RoR2/Base/Vagrant/VagrantCannonGhost.prefab"; public static string VagrantNovaExplosion = "RoR2/Base/Vagrant/VagrantNovaExplosion.prefab"; public static string VagrantTrackingBomb = "RoR2/Base/Vagrant/VagrantTrackingBomb.prefab"; public static string VagrantTrackingBombExplosion = "RoR2/Base/Vagrant/VagrantTrackingBombExplosion.prefab"; public static string VagrantTrackingBombGhost = "RoR2/Base/Vagrant/VagrantTrackingBombGhost.prefab"; public static string vagrantbits = "RoR2/Base/Vagrant/vagrant bits.fbx"; public static string VagrantBody = "RoR2/Base/Vagrant/VagrantBody.prefab"; public static string VagrantDeathExplosion = "RoR2/Base/Vagrant/VagrantDeathExplosion.prefab"; public static string VagrantLimb = "RoR2/Base/Vagrant/VagrantLimb.prefab"; public static string VagrantMaster = "RoR2/Base/Vagrant/VagrantMaster.prefab"; public static string VagrantNovaAreaIndicator = "RoR2/Base/Vagrant/VagrantNovaAreaIndicator.prefab"; public static string VagrantSpawnEffect = "RoR2/Base/Vagrant/VagrantSpawnEffect.prefab"; public static string VagrantTurret = "RoR2/Base/Vagrant/VagrantTurret.prefab"; public static string mdlVulture = "RoR2/Base/Vulture/mdlVulture.fbx"; public static string VultureJumpEffect = "RoR2/Base/Vulture/VultureJumpEffect.prefab"; public static string VultureJumpEffectopt = "RoR2/Base/Vulture/VultureJumpEffect_opt.prefab"; public static string WindbladeProjectile = "RoR2/Base/Vulture/WindbladeProjectile.prefab"; public static string WindbladeProjectileGhost = "RoR2/Base/Vulture/WindbladeProjectileGhost.prefab"; public static string VultureBody = "RoR2/Base/Vulture/VultureBody.prefab"; public static string VultureMaster = "RoR2/Base/Vulture/VultureMaster.prefab"; public static string mdlWisp1Mouth = "RoR2/Base/Wisp/mdlWisp1Mouth.fbx"; public static string mdlWispShattered = "RoR2/Base/Wisp/mdlWispShattered.fbx"; public static string ChargeWisp = "RoR2/Base/Wisp/ChargeWisp.prefab"; public static string LaserWisp = "RoR2/Base/Wisp/LaserWisp.prefab"; public static string TracerEmbers = "RoR2/Base/Wisp/TracerEmbers.prefab"; public static string WispBody = "RoR2/Base/Wisp/WispBody.prefab"; public static string WispDeath = "RoR2/Base/Wisp/WispDeath.prefab"; public static string WispMaster = "RoR2/Base/Wisp/WispMaster.prefab"; public static string WispSpawn = "RoR2/Base/Wisp/WispSpawn.prefab"; public static string CrippleEffect = "RoR2/Base/Common/CrippleEffect.prefab"; public static string mdlCustomCollisionTrapezoid = "RoR2/Base/Common/mdlCustomCollisionTrapezoid.fbx"; public static string mdlCustomCollisionTrapezoidOneSide = "RoR2/Base/Common/mdlCustomCollisionTrapezoidOneSide.fbx"; public static string FireTrail = "RoR2/Base/Common/FireTrail.prefab"; public static string FireTrailSegment = "RoR2/Base/Common/FireTrailSegment.prefab"; public static string DebugDisc = "RoR2/Base/Common/DebugDisc.prefab"; public static string Director = "RoR2/Base/Common/Director.prefab"; public static string DirectorSpawnProbeHelperPrefab = "RoR2/Base/Common/DirectorSpawnProbeHelperPrefab.prefab"; public static string DotController = "RoR2/Base/Common/DotController.prefab"; public static string GenericDelayBlast = "RoR2/Base/Common/GenericDelayBlast.prefab"; public static string GenericPickup = "RoR2/Base/Common/GenericPickup.prefab"; public static string GenericPickupUninteractable = "RoR2/Base/Common/GenericPickupUninteractable.prefab"; public static string GoldOrbEffect = "RoR2/Base/Common/GoldOrbEffect.prefab"; public static string DefaultLobbyBackground = "RoR2/Base/Common/DefaultLobbyBackground.prefab"; public static string LogPickup = "RoR2/Base/Common/LogPickup.prefab"; public static string mdlLogBook = "RoR2/Base/Common/mdlLogBook.fbx"; public static string MissileExplosionVFX = "RoR2/Base/Common/MissileExplosionVFX.prefab"; public static string MissileExplosionVFXMissileDrone = "RoR2/Base/Common/MissileExplosionVFXMissileDrone.prefab"; public static string MissileExplosionVFXSilent = "RoR2/Base/Common/MissileExplosionVFX-Silent.prefab"; public static string MissileGhost = "RoR2/Base/Common/MissileGhost.prefab"; public static string MissileProjectile = "RoR2/Base/Common/MissileProjectile.prefab"; public static string PickupDroplet = "RoR2/Base/Common/PickupDroplet.prefab"; public static string BossOrb = "RoR2/Base/Common/BossOrb.prefab"; public static string EquipmentOrb = "RoR2/Base/Common/EquipmentOrb.prefab"; public static string LunarOrb = "RoR2/Base/Common/LunarOrb.prefab"; public static string Tier1Orb = "RoR2/Base/Common/Tier1Orb.prefab"; public static string Tier2Orb = "RoR2/Base/Common/Tier2Orb.prefab"; public static string Tier3Orb = "RoR2/Base/Common/Tier3Orb.prefab"; public static string PingIndicator = "RoR2/Base/Common/PingIndicator.prefab"; public static string PlayerDeathEffect = "RoR2/Base/Common/PlayerDeathEffect.prefab"; public static string BossPositionIndicator = "RoR2/Base/Common/BossPositionIndicator.prefab"; public static string NPCPositionIndicator = "RoR2/Base/Common/NPCPositionIndicator.prefab"; public static string PlayerPositionIndicator = "RoR2/Base/Common/PlayerPositionIndicator.prefab"; public static string PoiPositionIndicator = "RoR2/Base/Common/PoiPositionIndicator.prefab"; public static string mdlRoot1 = "RoR2/Base/Common/Props/mdlRoot1.fbx"; public static string mdlRoot2 = "RoR2/Base/Common/Props/mdlRoot2.fbx"; public static string mdlspmBonsai1V2Collision = "RoR2/Base/Common/Props/mdlspmBonsai1V2Collision.fbx"; public static string spmBonsai1V1 = "RoR2/Base/Common/Props/spmBonsai1V1.spm"; public static string spmBonsai1V1opt = "RoR2/Base/Common/Props/spmBonsai1V1_opt.spm"; public static string spmBonsai1V1Collider = "RoR2/Base/Common/Props/spmBonsai1V1Collider.prefab"; public static string spmBonsai1V1Collideropt = "RoR2/Base/Common/Props/spmBonsai1V1Collider_opt.prefab"; public static string spmBonsai1V2 = "RoR2/Base/Common/Props/spmBonsai1V2.spm"; public static string spmBonsai1V2opt = "RoR2/Base/Common/Props/spmBonsai1V2_opt.spm"; public static string spmBonsai1V2Collider = "RoR2/Base/Common/Props/spmBonsai1V2Collider.prefab"; public static string spmBonsai1V2Collideropt = "RoR2/Base/Common/Props/spmBonsai1V2Collider_opt.prefab"; public static string spmBonsai1V3 = "RoR2/Base/Common/Props/spmBonsai1V3.spm"; public static string spmBonsai1V3Collider = "RoR2/Base/Common/Props/spmBonsai1V3Collider.prefab"; public static string spmBonsai1V4 = "RoR2/Base/Common/Props/spmBonsai1V4.spm"; public static string spmBonsai1V4opt = "RoR2/Base/Common/Props/spmBonsai1V4_opt.spm"; public static string spmBonsai1V4Collider = "RoR2/Base/Common/Props/spmBonsai1V4Collider.prefab"; public static string spmBonsai1V4Collideropt = "RoR2/Base/Common/Props/spmBonsai1V4Collider_opt.prefab"; public static string spmBush1 = "RoR2/Base/Common/Props/spmBush1.spm"; public static string spmBush1opt = "RoR2/Base/Common/Props/spmBush1_opt.spm"; public static string spmFern1 = "RoR2/Base/Common/Props/spmFern1.spm"; public static string spmFern1opt = "RoR2/Base/Common/Props/spmFern1_opt.spm"; public static string spmFern2 = "RoR2/Base/Common/Props/spmFern2.spm"; public static string spmFern2opt = "RoR2/Base/Common/Props/spmFern2_opt.spm"; public static string Geyser = "RoR2/Base/Common/Props/Geyser.prefab"; public static string Geyseropt = "RoR2/Base/Common/Props/Geyser_opt.prefab"; public static string mdlGeyser = "RoR2/Base/Common/Props/mdlGeyser.fbx"; public static string mdlColossusHead1 = "RoR2/Base/Common/Props/mdlColossusHead1.fbx"; public static string mdlColossusHead1opt = "RoR2/Base/Common/Props/mdlColossusHead1_opt.fbx"; public static string mdlIcoRockM = "RoR2/Base/Common/Props/mdlIcoRockM.fbx"; public static string mdlIcoRockS = "RoR2/Base/Common/Props/mdlIcoRockS.fbx"; public static string mdlRockModular1 = "RoR2/Base/Common/Props/mdlRockModular1.fbx"; public static string mdlSandstonePillar1Hard = "RoR2/Base/Common/Props/mdlSandstonePillar1Hard.fbx"; public static string spmTree = "RoR2/Base/Common/Props/spmTree.spm"; public static string spmTreeopt = "RoR2/Base/Common/Props/spmTree_opt.spm"; public static string spmTreeCollision = "RoR2/Base/Common/Props/spmTreeCollision.prefab"; public static string rescueshipcollision = "RoR2/Base/Common/Props/rescueship collision.fbx"; public static string rescueship = "RoR2/Base/Common/Props/rescueship.fbx"; public static string RescueshipBroken1 = "RoR2/Base/Common/Props/RescueshipBroken1.prefab"; public static string RescueshipDamageVFX = "RoR2/Base/Common/Props/RescueshipDamageVFX.prefab"; public static string RoachPlaceholder = "RoR2/Base/Common/Props/RoachPlaceholder.prefab"; public static string mdlRock1 = "RoR2/Base/Common/Props/mdlRock1.fbx"; public static string mdlRock3 = "RoR2/Base/Common/Props/mdlRock3.fbx"; public static string mdlRockDetail1 = "RoR2/Base/Common/Props/mdlRockDetail1.fbx"; public static string mdlRockModular2 = "RoR2/Base/Common/Props/mdlRockModular2.fbx"; public static string RockModular2 = "RoR2/Base/Common/Props/RockModular2.prefab"; public static string mdlRockModular3 = "RoR2/Base/Common/Props/mdlRockModular3.fbx"; public static string SetpiecePickup = "RoR2/Base/Common/SetpiecePickup.prefab"; public static string SimpleRezEffect = "RoR2/Base/Common/SimpleRezEffect.prefab"; public static string SniperTargetHitEffect = "RoR2/Base/Common/SniperTargetHitEffect.prefab"; public static string SpawnPointChest1 = "RoR2/Base/Common/SpawnPointChest1.prefab"; public static string SpawnPointExplosivePotBody = "RoR2/Base/Common/SpawnPointExplosivePotBody.prefab"; public static string SpawnPointFusionCell = "RoR2/Base/Common/SpawnPointFusionCell.prefab"; public static string SpawnPointNewtStatue = "RoR2/Base/Common/SpawnPointNewtStatue.prefab"; public static string SurvivorPodSpawnPoint = "RoR2/Base/Common/SurvivorPodSpawnPoint.prefab"; public static string TeamAreaIndicatorDecal = "RoR2/Base/Common/TeamAreaIndicator, Decal.prefab"; public static string TeamAreaIndicatorFullSphere = "RoR2/Base/Common/TeamAreaIndicator, FullSphere.prefab"; public static string TeamAreaIndicatorGroundOnly = "RoR2/Base/Common/TeamAreaIndicator, GroundOnly.prefab"; public static string TeleportOutController = "RoR2/Base/Common/TeleportOutController.prefab"; public static string TempInventory = "RoR2/Base/Common/TempInventory.prefab"; public static string BasicThrowableVisualizer = "RoR2/Base/Common/VFX/BasicThrowableVisualizer.prefab"; public static string BarrierEffect = "RoR2/Base/Common/VFX/BarrierEffect.prefab"; public static string SpurtGenericBlood = "RoR2/Base/Common/VFX/SpurtGenericBlood.prefab"; public static string BrittleDeath = "RoR2/Base/Common/VFX/BrittleDeath.prefab"; public static string CoinEmitter = "RoR2/Base/Common/VFX/CoinEmitter.prefab"; public static string CoinImpact = "RoR2/Base/Common/VFX/CoinImpact.prefab"; public static string mdlLunarCoin = "RoR2/Base/Common/VFX/mdlLunarCoin.fbx"; public static string mdlLunarCoinWithHole = "RoR2/Base/Common/VFX/mdlLunarCoinWithHole.fbx"; public static string mdlMoneyMesh = "RoR2/Base/Common/VFX/mdlMoneyMesh.fbx"; public static string mdlVFXCoin5 = "RoR2/Base/Common/VFX/mdlVFXCoin5.fbx"; public static string DamageRejected = "RoR2/Base/Common/VFX/DamageRejected.prefab"; public static string BleedEffect = "RoR2/Base/Common/VFX/BleedEffect.prefab"; public static string FireEffect = "RoR2/Base/Common/VFX/FireEffect.prefab"; public static string SuperBleedEffect = "RoR2/Base/Common/VFX/SuperBleedEffect.prefab"; public static string EquipmentRestockEffect = "RoR2/Base/Common/VFX/EquipmentRestockEffect.prefab"; public static string ExpHit = "RoR2/Base/Common/VFX/ExpOrb/ExpHit.prefab"; public static string ExpOrb = "RoR2/Base/Common/VFX/ExpOrb/ExpOrb.prefab"; public static string ExplosionVFX = "RoR2/Base/Common/VFX/ExplosionVFX.prefab"; public static string GenericFootstepDust = "RoR2/Base/Common/VFX/GenericFootstepDust.prefab"; public static string GenericHugeFootstepDust = "RoR2/Base/Common/VFX/GenericHugeFootstepDust.prefab"; public static string GenericLargeFootstepDust = "RoR2/Base/Common/VFX/GenericLargeFootstepDust.prefab"; public static string HealthOrbEffect = "RoR2/Base/Common/VFX/HealthOrbEffect.prefab"; public static string CostHologramContent = "RoR2/Base/Common/VFX/CostHologramContent.prefab"; public static string IceCullExplosion = "RoR2/Base/Common/VFX/IceCullExplosion.prefab"; public static string OmniImpactVFXFrozen = "RoR2/Base/Common/VFX/OmniImpactVFXFrozen.prefab"; public static string BulletImpactSoft = "RoR2/Base/Common/VFX/BulletImpactSoft.prefab"; public static string CharacterLandImpact = "RoR2/Base/Common/VFX/CharacterLandImpact.prefab"; public static string Critspark = "RoR2/Base/Common/VFX/Critspark.prefab"; public static string CritsparkHeavy = "RoR2/Base/Common/VFX/CritsparkHeavy.prefab"; public static string DirtImpact = "RoR2/Base/Common/VFX/DirtImpact.prefab"; public static string Hitspark1 = "RoR2/Base/Common/VFX/Hitspark1.prefab"; public static string MachineImpact = "RoR2/Base/Common/VFX/MachineImpact.prefab"; public static string StoneImpact = "RoR2/Base/Common/VFX/StoneImpact.prefab"; public static string ItemTakenOrbEffect = "RoR2/Base/Common/VFX/ItemTakenOrbEffect.prefab"; public static string ItemTransferOrbEffect = "RoR2/Base/Common/VFX/ItemTransferOrbEffect.prefab"; public static string LevelUpEffect = "RoR2/Base/Common/VFX/LevelUpEffect.prefab"; public static string LevelUpEffectEnemy = "RoR2/Base/Common/VFX/LevelUpEffectEnemy.prefab"; public static string LightningFlash = "RoR2/Base/Common/VFX/LightningFlash.prefab"; public static string mdlVFXCone = "RoR2/Base/Common/VFX/mdlVFXCone.fbx"; public static string mdlVFXCurvedPlane = "RoR2/Base/Common/VFX/mdlVFXCurvedPlane.fbx"; public static string mdlVFXDonut1 = "RoR2/Base/Common/VFX/mdlVFXDonut1.fbx"; public static string mdlVFXDonut2 = "RoR2/Base/Common/VFX/mdlVFXDonut2.fbx"; public static string mdlVFXDonut3 = "RoR2/Base/Common/VFX/mdlVFXDonut3.fbx"; public static string mdlVFXDonut4 = "RoR2/Base/Common/VFX/mdlVFXDonut4.fbx"; public static string mdlVFXDonut5 = "RoR2/Base/Common/VFX/mdlVFXDonut5.fbx"; public static string mdlVFXDonut6 = "RoR2/Base/Common/VFX/mdlVFXDonut6.fbx"; public static string mdlVFXDonut7 = "RoR2/Base/Common/VFX/mdlVFXDonut7.fbx"; public static string mdlVFXDonut8 = "RoR2/Base/Common/VFX/mdlVFXDonut8.fbx"; public static string mdlVFXDustPuff1 = "RoR2/Base/Common/VFX/mdlVFXDustPuff1.fbx"; public static string mdlVFXFlippedCylinder = "RoR2/Base/Common/VFX/mdlVFXFlippedCylinder.fbx"; public static string mdlVFXHighResSphere = "RoR2/Base/Common/VFX/mdlVFXHighResSphere.fbx"; public static string mdlVFXIcosphere = "RoR2/Base/Common/VFX/mdlVFXIcosphere.fbx"; public static string mdlVFXLightShaft = "RoR2/Base/Common/VFX/mdlVFXLightShaft.fbx"; public static string mdlVFXPlane = "RoR2/Base/Common/VFX/mdlVFXPlane.fbx"; public static string mdlVFXShield = "RoR2/Base/Common/VFX/mdlVFXShield.fbx"; public static string mdlVFXSpiral = "RoR2/Base/Common/VFX/mdlVFXSpiral.fbx"; public static string mdlVFXTri = "RoR2/Base/Common/VFX/mdlVFXTri.fbx"; public static string mdlRobotScrap1 = "RoR2/Base/Common/VFX/mdlRobotScrap1.fbx"; public static string mdlRobotScrap2 = "RoR2/Base/Common/VFX/mdlRobotScrap2.fbx"; public static string mdlRobotScrap3 = "RoR2/Base/Common/VFX/mdlRobotScrap3.fbx"; public static string mdlRobotScrap4 = "RoR2/Base/Common/VFX/mdlRobotScrap4.fbx"; public static string Muzzleflash1 = "RoR2/Base/Common/VFX/Muzzleflash1.prefab"; public static string MuzzleflashBarrage = "RoR2/Base/Common/VFX/MuzzleflashBarrage.prefab"; public static string MuzzleflashSmokeRing = "RoR2/Base/Common/VFX/MuzzleflashSmokeRing.prefab"; public static string ShieldBreakEffect = "RoR2/Base/Common/VFX/ShieldBreakEffect.prefab"; public static string ShrineChanceDollUseEffect = "RoR2/Base/Common/VFX/ShrineChanceDollUseEffect.prefab"; public static string ShrineChanceUseEffect = "RoR2/Base/Common/VFX/ShrineChanceUseEffect.prefab"; public static string ShrineUseEffect = "RoR2/Base/Common/VFX/ShrineUseEffect.prefab"; public static string ShockedEffect = "RoR2/Base/Common/VFX/ShockedEffect.prefab"; public static string StunVfx = "RoR2/Base/Common/VFX/StunVfx.prefab"; public static string OmniExplosionVFX = "RoR2/Base/Common/VFX/OmniExplosionVFX.prefab"; public static string OmniExplosionVFXDroneDeath = "RoR2/Base/Common/VFX/OmniExplosionVFXDroneDeath.prefab"; public static string OmniExplosionVFXMegaDrone = "RoR2/Base/Common/VFX/OmniExplosionVFXMegaDrone.prefab"; public static string OmniExplosionVFXQuick = "RoR2/Base/Common/VFX/OmniExplosionVFXQuick.prefab"; public static string OmniExplosionVFXSoft = "RoR2/Base/Common/VFX/OmniExplosionVFXSoft.prefab"; public static string OmniImpactVFX = "RoR2/Base/Common/VFX/OmniImpactVFX.prefab"; public static string OmniImpactVFXLarge = "RoR2/Base/Common/VFX/OmniImpactVFXLarge.prefab"; public static string OmniImpactVFXLightning = "RoR2/Base/Common/VFX/OmniImpactVFXLightning.prefab"; public static string OmniImpactVFXMedium = "RoR2/Base/Common/VFX/OmniImpactVFXMedium.prefab"; public static string OmniImpactVFXSlash = "RoR2/Base/Common/VFX/OmniImpactVFXSlash.prefab"; public static string TeleportOutBoom = "RoR2/Base/Common/VFX/TeleportOutBoom.prefab"; public static string TracerNoSmoke = "RoR2/Base/Common/VFX/TracerNoSmoke.prefab"; public static string TracerSmokeLine = "RoR2/Base/Common/VFX/TracerSmokeLine.prefab"; public static string LavaFootstep = "RoR2/Base/Common/VFX/LavaFootstep.prefab"; public static string WaterFootstep = "RoR2/Base/Common/VFX/WaterFootstep.prefab"; public static string WireTrailVFX = "RoR2/Base/Common/VFX/WireTrail_VFX.prefab"; public static string VoidDeathBombExplosion = "RoR2/Base/Common/VoidDeathBombExplosion.prefab"; public static string VoidDeathBombGhost = "RoR2/Base/Common/VoidDeathBombGhost.prefab"; public static string VoidFogMildEffect = "RoR2/Base/Common/VoidFogMildEffect.prefab"; public static string GenericZiprail = "RoR2/Base/Common/GenericZiprail.prefab"; public static string ZiprailVehicle = "RoR2/Base/Common/ZiprailVehicle.prefab"; public static string ZiprailVehicleVerLowMomentum = "RoR2/Base/Common/ZiprailVehicle_VerLowMomentum.prefab"; public static string AudioManager = "RoR2/Base/Core/Audio/AudioManager.prefab"; public static string MusicController = "RoR2/Base/Core/Audio/MusicController.prefab"; public static string StadiaVoiceChatManager = "RoR2/Base/Core/Audio/StadiaVoiceChatManager.prefab"; public static string WwiseGlobal = "RoR2/Base/Core/Audio/WwiseGlobal.prefab"; public static string BossCombatSquad = "RoR2/Base/Core/BossCombatSquad.prefab"; public static string MainCamera = "RoR2/Base/Core/Camera/Main Camera.prefab"; public static string MenuMainCamera = "RoR2/Base/Core/Camera/Menu Main Camera.prefab"; public static string CreditsController = "RoR2/Base/Core/CreditsController.prefab"; public static string DamageNumberManager = "RoR2/Base/Core/DamageNumberManager.prefab"; public static string GameManager = "RoR2/Base/Core/GameManager.prefab"; public static string GameOverController = "RoR2/Base/Core/GameOverController/GameOverController.prefab"; public static string MPEventSystem = "RoR2/Base/Core/MPEventSystem/MPEventSystem.prefab"; public static string MPEventSystemManager = "RoR2/Base/Core/MPEventSystem/MPEventSystemManager.prefab"; public static string NetworkManager = "RoR2/Base/Core/Network/NetworkManager.prefab"; public static string NetworkSession = "RoR2/Base/Core/Network/NetworkSession.prefab"; public static string NetworkUser = "RoR2/Base/Core/Network/NetworkUser.prefab"; public static string Stage = "RoR2/Base/Core/Network/Stage.prefab"; public static string mdlNull = "RoR2/Base/Core/mdlNull.fbx"; public static string NullModel = "RoR2/Base/Core/NullModel.prefab"; public static string PauseStopController = "RoR2/Base/Core/PauseStopController.prefab"; public static string PlayerMaster = "RoR2/Base/Core/PlayerMaster.prefab"; public static string PlayerMasterSubInventory = "RoR2/Base/Core/PlayerMasterSubInventory.prefab"; public static string PreGameController = "RoR2/Base/Core/PreGameController.prefab"; public static string PreGameRuleVoteController = "RoR2/Base/Core/PreGameRuleVoteController.prefab"; public static string RewiredInputManager = "RoR2/Base/Core/Rewired/Rewired Input Manager.prefab"; public static string RoR2Application = "RoR2/Base/Core/RoR2Application.prefab"; public static string ScreenTintCanvas = "RoR2/Base/Core/ScreenTintCanvas.prefab"; public static string SpawnPoint = "RoR2/Base/Core/SpawnPoint.prefab"; public static string DisplayEliteHorn = "RoR2/Base/EliteFire/DisplayEliteHorn.prefab"; public static string mdlEliteHorn = "RoR2/Base/EliteFire/mdlEliteHorn.fbx"; public static string PickupEliteFire = "RoR2/Base/EliteFire/PickupEliteFire.prefab"; public static string AffixHauntedWard = "RoR2/Base/EliteHaunted/AffixHauntedWard.prefab"; public static string DisplayEliteStealthCrown = "RoR2/Base/EliteHaunted/DisplayEliteStealthCrown.prefab"; public static string HauntedAffixEffect = "RoR2/Base/EliteHaunted/HauntedAffixEffect.prefab"; public static string mdlEliteStealthcrown = "RoR2/Base/EliteHaunted/mdlEliteStealthcrown.fbx"; public static string PickupEliteHaunted = "RoR2/Base/EliteHaunted/PickupEliteHaunted.prefab"; public static string AffixWhiteDelayEffect = "RoR2/Base/EliteIce/AffixWhiteDelayEffect.prefab"; public static string AffixWhiteExplosion = "RoR2/Base/EliteIce/AffixWhiteExplosion.prefab"; public static string AffixWhiteImpactEffect = "RoR2/Base/EliteIce/AffixWhiteImpactEffect.prefab"; public static string DisplayEliteIceCrown = "RoR2/Base/EliteIce/DisplayEliteIceCrown.prefab"; public static string mdlEliteIceCrown = "RoR2/Base/EliteIce/mdlEliteIceCrown.fbx"; public static string PickupEliteIce = "RoR2/Base/EliteIce/PickupEliteIce.prefab"; public static string DisplayEliteRhinoHorn = "RoR2/Base/EliteLightning/DisplayEliteRhinoHorn.prefab"; public static string LightningStake = "RoR2/Base/EliteLightning/LightningStake.prefab"; public static string LightningStakeGhost = "RoR2/Base/EliteLightning/LightningStakeGhost.prefab"; public static string LightningStakeNova = "RoR2/Base/EliteLightning/LightningStakeNova.prefab"; public static string mdlEliteRhinoHorn = "RoR2/Base/EliteLightning/mdlEliteRhinoHorn.fbx"; public static string PickupEliteLightning = "RoR2/Base/EliteLightning/PickupEliteLightning.prefab"; public static string DisplayEliteLunarFire = "RoR2/Base/EliteLunar/DisplayEliteLunar, Fire.prefab"; public static string DisplayEliteLunarEye = "RoR2/Base/EliteLunar/DisplayEliteLunar,Eye.prefab"; public static string LunarMissileGhost = "RoR2/Base/EliteLunar/LunarMissileGhost.prefab"; public static string LunarMissileProjectile = "RoR2/Base/EliteLunar/LunarMissileProjectile.prefab"; public static string PickupEliteLunar = "RoR2/Base/EliteLunar/PickupEliteLunar.prefab"; public static string DisplayEliteUrchinCrown = "RoR2/Base/ElitePoison/DisplayEliteUrchinCrown.prefab"; public static string HealingDisabledEffect = "RoR2/Base/ElitePoison/HealingDisabledEffect.prefab"; public static string mdlEliteUrchinCrown = "RoR2/Base/ElitePoison/mdlEliteUrchinCrown.fbx"; public static string PickupElitePoison = "RoR2/Base/ElitePoison/PickupElitePoison.prefab"; public static string PoisonAffixEffect = "RoR2/Base/ElitePoison/PoisonAffixEffect.prefab"; public static string PoisonOrbGhost = "RoR2/Base/ElitePoison/PoisonOrbGhost.prefab"; public static string PoisonOrbProjectile = "RoR2/Base/ElitePoison/PoisonOrbProjectile.prefab"; public static string PoisonStakeProjectile = "RoR2/Base/ElitePoison/PoisonStakeProjectile.prefab"; public static string mdlUrchinTurret = "RoR2/Base/ElitePoison/mdlUrchinTurret.fbx"; public static string OmniExplosionVFXUrchin = "RoR2/Base/ElitePoison/OmniExplosionVFXUrchin.prefab"; public static string UrchinMinigunVFX = "RoR2/Base/ElitePoison/UrchinMinigunVFX.prefab"; public static string UrchinSeekingGhost = "RoR2/Base/ElitePoison/UrchinSeekingGhost.prefab"; public static string UrchinSeekingProjectile = "RoR2/Base/ElitePoison/UrchinSeekingProjectile.prefab"; public static string UrchinTurretBody = "RoR2/Base/ElitePoison/UrchinTurretBody.prefab"; public static string UrchinTurretMaster = "RoR2/Base/ElitePoison/UrchinTurretMaster.prefab"; public static string BeamSphere = "RoR2/Base/BFG/BeamSphere.prefab"; public static string BeamSphereExplosion = "RoR2/Base/BFG/BeamSphereExplosion.prefab"; public static string BeamSphereGhost = "RoR2/Base/BFG/BeamSphereGhost.prefab"; public static string BeamSphereOrbEffect = "RoR2/Base/BFG/BeamSphereOrbEffect.prefab"; public static string ChargeBFG = "RoR2/Base/BFG/ChargeBFG.prefab"; public static string DisplayBFG = "RoR2/Base/BFG/DisplayBFG.prefab"; public static string mdlBFG = "RoR2/Base/BFG/mdlBFG.fbx"; public static string MuzzleflashBFG = "RoR2/Base/BFG/MuzzleflashBFG.prefab"; public static string PickupBFG = "RoR2/Base/BFG/PickupBFG.prefab"; public static string DisplayGravCube = "RoR2/Base/Blackhole/DisplayGravCube.prefab"; public static string DisplayGravCubeFollower = "RoR2/Base/Blackhole/DisplayGravCubeFollower.prefab"; public static string GravSphere = "RoR2/Base/Blackhole/GravSphere.prefab"; public static string GravSphereTether = "RoR2/Base/Blackhole/GravSphereTether.prefab"; public static string mdlGravCube = "RoR2/Base/Blackhole/mdlGravCube.fbx"; public static string PickupGravCube = "RoR2/Base/Blackhole/PickupGravCube.prefab"; public static string DisplayPotion = "RoR2/Base/BurnNearby/DisplayPotion.prefab"; public static string helfirevfx = "RoR2/Base/BurnNearby/helfire vfx.fbx"; public static string HelfireController = "RoR2/Base/BurnNearby/HelfireController.prefab"; public static string HelfireEffect = "RoR2/Base/BurnNearby/HelfireEffect.prefab"; public static string HelfireIgniteEffect = "RoR2/Base/BurnNearby/HelfireIgniteEffect.prefab"; public static string mdlPotion = "RoR2/Base/BurnNearby/mdlPotion.fbx"; public static string PickupPotion = "RoR2/Base/BurnNearby/PickupPotion.prefab"; public static string CleanseEffect = "RoR2/Base/Cleanse/CleanseEffect.prefab"; public static string DisplayWaterPack = "RoR2/Base/Cleanse/DisplayWaterPack.prefab"; public static string mdlWaterPack = "RoR2/Base/Cleanse/mdlWaterPack.fbx"; public static string PickupWaterPack = "RoR2/Base/Cleanse/PickupWaterPack.prefab"; public static string DisplayMissileRack = "RoR2/Base/CommandMissile/DisplayMissileRack.prefab"; public static string mdlMissileRack = "RoR2/Base/CommandMissile/mdlMissileRack.fbx"; public static string PickupMissileRack = "RoR2/Base/CommandMissile/PickupMissileRack.prefab"; public static string CrippleWard = "RoR2/Base/CrippleWard/CrippleWard.prefab"; public static string DisplayEffigy = "RoR2/Base/CrippleWard/DisplayEffigy.prefab"; public static string mdlEffigy = "RoR2/Base/CrippleWard/mdlEffigy.fbx"; public static string PickupEffigy = "RoR2/Base/CrippleWard/PickupEffigy.prefab"; public static string DisplayNeuralImplant = "RoR2/Base/CritOnUse/DisplayNeuralImplant.prefab"; public static string mdlNeuralImplant = "RoR2/Base/CritOnUse/mdlNeuralImplant.fbx"; public static string PickupNeuralImplant = "RoR2/Base/CritOnUse/PickupNeuralImplant.prefab"; public static string DeathProjectile29 = "RoR2/Base/DeathProjectile/DeathProjectile.prefab"; public static string DeathProjectileTickEffect = "RoR2/Base/DeathProjectile/DeathProjectileTickEffect.prefab"; public static string DisplayDeathProjectile = "RoR2/Base/DeathProjectile/DisplayDeathProjectile.prefab"; public static string mdlDeathProjectile = "RoR2/Base/DeathProjectile/mdlDeathProjectile.fbx"; public static string mdlDeathProjectileDisplay = "RoR2/Base/DeathProjectile/mdlDeathProjectileDisplay.fbx"; public static string PickupDeathProjectile = "RoR2/Base/DeathProjectile/PickupDeathProjectile.prefab"; public static string DisplayRadio = "RoR2/Base/DroneBackup/DisplayRadio.prefab"; public static string mdlRadio = "RoR2/Base/DroneBackup/mdlRadio.fbx"; public static string PickupRadio = "RoR2/Base/DroneBackup/PickupRadio.prefab"; public static string DisplayEgg = "RoR2/Base/FireBallDash/DisplayEgg.prefab"; public static string FireballVehicle = "RoR2/Base/FireBallDash/FireballVehicle.prefab"; public static string FireballVehicleDamageEffect = "RoR2/Base/FireBallDash/FireballVehicleDamageEffect.prefab"; public static string mdlEgg = "RoR2/Base/FireBallDash/mdlEgg.fbx"; public static string PickupEgg = "RoR2/Base/FireBallDash/PickupEgg.prefab"; public static string DisplayFruit = "RoR2/Base/Fruit/DisplayFruit.prefab"; public static string FruitHealEffect = "RoR2/Base/Fruit/FruitHealEffect.prefab"; public static string mdlDisplayFruit = "RoR2/Base/Fruit/mdlDisplayFruit.fbx"; public static string mdlFruit = "RoR2/Base/Fruit/mdlFruit.fbx"; public static string PickupFruit = "RoR2/Base/Fruit/PickupFruit.prefab"; public static string DisplayElephantFigure = "RoR2/Base/GainArmor/DisplayElephantFigure.prefab"; public static string ElephantDefense = "RoR2/Base/GainArmor/ElephantDefense.prefab"; public static string mdlElephantFigure = "RoR2/Base/GainArmor/mdlElephantFigure.fbx"; public static string PickupElephantFigure = "RoR2/Base/GainArmor/PickupElephantFigure.prefab"; public static string DisplayVase = "RoR2/Base/Gateway/DisplayVase.prefab"; public static string mdlVase = "RoR2/Base/Gateway/mdlVase.fbx"; public static string PickupVase = "RoR2/Base/Gateway/PickupVase.prefab"; public static string SpawnGatewayVehicleEffect = "RoR2/Base/Gateway/SpawnGatewayVehicleEffect.prefab"; public static string Zipline = "RoR2/Base/Gateway/Zipline.prefab"; public static string ZiplineEndParticles = "RoR2/Base/Gateway/ZiplineEndParticles.prefab"; public static string ZiplineVehicle = "RoR2/Base/Gateway/ZiplineVehicle.prefab"; public static string DisplayGoldGat = "RoR2/Base/GoldGat/DisplayGoldGat.prefab"; public static string GoldGatController = "RoR2/Base/GoldGat/GoldGatController.prefab"; public static string mdlGoldGat = "RoR2/Base/GoldGat/mdlGoldGat.fbx"; public static string MuzzleflashGoldGat = "RoR2/Base/GoldGat/MuzzleflashGoldGat.prefab"; public static string PickupGoldGat = "RoR2/Base/GoldGat/PickupGoldGat.prefab"; public static string TracerGoldGat = "RoR2/Base/GoldGat/TracerGoldGat.prefab"; public static string DisplayBugWings = "RoR2/Base/Jetpack/DisplayBugWings.prefab"; public static string JetpackController = "RoR2/Base/Jetpack/JetpackController.prefab"; public static string mdlBugChrysalis = "RoR2/Base/Jetpack/mdlBugChrysalis.fbx"; public static string mdlBugWingMotion = "RoR2/Base/Jetpack/mdlBugWingMotion.fbx"; public static string mdlBugWings = "RoR2/Base/Jetpack/mdlBugWings.fbx"; public static string PickupChrysalis = "RoR2/Base/Jetpack/PickupChrysalis.prefab"; public static string DisplayLifestealOnHit = "RoR2/Base/LifestealOnHit/DisplayLifestealOnHit.prefab"; public static string LifeStealOnHitActivation = "RoR2/Base/LifestealOnHit/LifeStealOnHitActivation.prefab"; public static string LifeStealOnHitAura = "RoR2/Base/LifestealOnHit/LifeStealOnHitAura.prefab"; public static string mdlLifestealOnHit = "RoR2/Base/LifestealOnHit/mdlLifestealOnHit.fbx"; public static string mdlLifestealOnHitDisplay = "RoR2/Base/LifestealOnHit/mdlLifestealOnHitDisplay.fbx"; public static string PickupLifestealOnHit = "RoR2/Base/LifestealOnHit/PickupLifestealOnHit.prefab"; public static string DisplayLightningArmLeft = "RoR2/Base/Lightning/DisplayLightningArmLeft.prefab"; public static string DisplayLightningArmLeftVoidSurvivor = "RoR2/Base/Lightning/DisplayLightningArmLeftVoidSurvivor.prefab"; public static string DisplayLightningArmRightBandit2 = "RoR2/Base/Lightning/DisplayLightningArmRight,Bandit2.prefab"; public static string DisplayLightningArmRightChef = "RoR2/Base/Lightning/DisplayLightningArmRight,Chef.prefab"; public static string DisplayLightningArmRightCroco = "RoR2/Base/Lightning/DisplayLightningArmRight,Croco.prefab"; public static string DisplayLightningArmRight = "RoR2/Base/Lightning/DisplayLightningArmRight.prefab"; public static string LightningIndicator = "RoR2/Base/Lightning/LightningIndicator.prefab"; public static string LightningStrikeImpact = "RoR2/Base/Lightning/LightningStrikeImpact.prefab"; public static string LightningStrikeOrbEffect = "RoR2/Base/Lightning/LightningStrikeOrbEffect.prefab"; public static string mdlCapacitor = "RoR2/Base/Lightning/mdlCapacitor.fbx"; public static string PickupCapacitor = "RoR2/Base/Lightning/PickupCapacitor.prefab"; public static string DisplayMeteor = "RoR2/Base/Meteor/DisplayMeteor.prefab"; public static string DisplayMeteorFollower = "RoR2/Base/Meteor/DisplayMeteorFollower.prefab"; public static string mdlMeteor = "RoR2/Base/Meteor/mdlMeteor.fbx"; public static string MeteorStorm = "RoR2/Base/Meteor/MeteorStorm.prefab"; public static string MeteorStrikeImpact = "RoR2/Base/Meteor/MeteorStrikeImpact.prefab"; public static string MeteorStrikePredictionEffect = "RoR2/Base/Meteor/MeteorStrikePredictionEffect.prefab"; public static string PickupMeteor = "RoR2/Base/Meteor/PickupMeteor.prefab"; public static string HealingFollower = "RoR2/Base/PassiveHealing/HealingFollower.prefab"; public static string mdlWoodSprite = "RoR2/Base/PassiveHealing/mdlWoodSprite.fbx"; public static string PickupWoodsprite = "RoR2/Base/PassiveHealing/PickupWoodsprite.prefab"; public static string WoodSpriteHeal = "RoR2/Base/PassiveHealing/WoodSpriteHeal.prefab"; public static string WoodSpriteIndicator = "RoR2/Base/PassiveHealing/WoodSpriteIndicator.prefab"; public static string DisplayBatteryArray = "RoR2/Base/QuestVolatileBattery/DisplayBatteryArray.prefab"; public static string mdlBatteryArray = "RoR2/Base/QuestVolatileBattery/mdlBatteryArray.fbx"; public static string PickupBatteryArray = "RoR2/Base/QuestVolatileBattery/PickupBatteryArray.prefab"; public static string QuestVolatileBatteryAttachment = "RoR2/Base/QuestVolatileBattery/QuestVolatileBatteryAttachment.prefab"; public static string VolatileBatteryExplosion = "RoR2/Base/QuestVolatileBattery/VolatileBatteryExplosion.prefab"; public static string QuestVolatileBatteryWorldPickup = "RoR2/Base/QuestVolatileBattery/QuestVolatileBatteryWorldPickup.prefab"; public static string VolatileBatteryPreDetonation = "RoR2/Base/QuestVolatileBattery/VolatileBatteryPreDetonation.prefab"; public static string DisplayRecycler = "RoR2/Base/Recycle/DisplayRecycler.prefab"; public static string mdlRecycler = "RoR2/Base/Recycle/mdlRecycler.fbx"; public static string OmniRecycleEffect = "RoR2/Base/Recycle/OmniRecycleEffect.prefab"; public static string PickupRecycler = "RoR2/Base/Recycle/PickupRecycler.prefab"; public static string RecyclerBadIndicator = "RoR2/Base/Recycle/RecyclerBadIndicator.prefab"; public static string RecyclerIndicator = "RoR2/Base/Recycle/RecyclerIndicator.prefab"; public static string DisplaySawmerang = "RoR2/Base/Saw/DisplaySawmerang.prefab"; public static string DisplaySawmerangFollower = "RoR2/Base/Saw/DisplaySawmerangFollower.prefab"; public static string mdlSawmerang = "RoR2/Base/Saw/mdlSawmerang.fbx"; public static string OmniImpactVFXSawmerang = "RoR2/Base/Saw/OmniImpactVFXSawmerang.prefab"; public static string PickupSawmerang = "RoR2/Base/Saw/PickupSawmerang.prefab"; public static string Sawmerang = "RoR2/Base/Saw/Sawmerang.prefab"; public static string SawmerangGhost = "RoR2/Base/Saw/SawmerangGhost.prefab"; public static string SawmerangImpact = "RoR2/Base/Saw/SawmerangImpact.prefab"; public static string ChestScanner = "RoR2/Base/Scanner/ChestScanner.prefab"; public static string DisplayScanner = "RoR2/Base/Scanner/DisplayScanner.prefab"; public static string mdlScanner = "RoR2/Base/Scanner/mdlScanner.fbx"; public static string PickupScanner = "RoR2/Base/Scanner/PickupScanner.prefab"; public static string DisplayTeamWarCry = "RoR2/Base/TeamWarCry/DisplayTeamWarCry.prefab"; public static string mdlTeamWarCry = "RoR2/Base/TeamWarCry/mdlTeamWarCry.fbx"; public static string PickupTeamWarCry = "RoR2/Base/TeamWarCry/PickupTeamWarCry.prefab"; public static string TeamWarCryActivation = "RoR2/Base/TeamWarCry/TeamWarCryActivation.prefab"; public static string TeamWarCryAura = "RoR2/Base/TeamWarCry/TeamWarCryAura.prefab"; public static string DisplayTonic = "RoR2/Base/Tonic/DisplayTonic.prefab"; public static string mdlTonic = "RoR2/Base/Tonic/mdlTonic.fbx"; public static string PickupTonic = "RoR2/Base/Tonic/PickupTonic.prefab"; public static string TonicBuffEffect = "RoR2/Base/Tonic/TonicBuffEffect.prefab"; public static string ClassicRun = "RoR2/Base/ClassicRun/ClassicRun.prefab"; public static string ClassicRunInfoHudPanel = "RoR2/Base/ClassicRun/ClassicRunInfoHudPanel.prefab"; public static string EclipseDifficultyMedal = "RoR2/Base/EclipseRun/EclipseDifficultyMedal.prefab"; public static string EclipseRun = "RoR2/Base/EclipseRun/EclipseRun.prefab"; public static string EclipseRunMenu = "RoR2/Base/EclipseRun/EclipseRunMenu.prefab"; public static string TeleportOutCrystalBoom = "RoR2/Base/WeeklyRun/TeleportOutCrystalBoom.prefab"; public static string TimeCrystalBody = "RoR2/Base/WeeklyRun/TimeCrystalBody.prefab"; public static string TimeCrystalDeath = "RoR2/Base/WeeklyRun/TimeCrystalDeath.prefab"; public static string WeeklyRun = "RoR2/Base/WeeklyRun/WeeklyRun.prefab"; public static string WeeklyRunMenu = "RoR2/Base/WeeklyRun/WeeklyRunMenu.prefab"; public static string Barrel1 = "RoR2/Base/Barrel1/Barrel1.prefab"; public static string mdlBarrel1 = "RoR2/Base/Barrel1/mdlBarrel1.fbx"; public static string CasinoChest = "RoR2/Base/CasinoChest/CasinoChest.prefab"; public static string mdlCasinoChest = "RoR2/Base/CasinoChest/mdlCasinoChest.fbx"; public static string mdlCategoryChest = "RoR2/Base/CasinoChest/mdlCategoryChest.fbx"; public static string CategoryChestDamage = "RoR2/Base/CategoryChest/CategoryChestDamage.prefab"; public static string CategoryChestHealing = "RoR2/Base/CategoryChest/CategoryChestHealing.prefab"; public static string CategoryChestUtility = "RoR2/Base/CategoryChest/CategoryChestUtility.prefab"; public static string Chest1 = "RoR2/Base/Chest1/Chest1.prefab"; public static string Chest1Starburst = "RoR2/Base/Chest1/Chest1Starburst.prefab"; public static string ChestUnzip = "RoR2/Base/Chest1/ChestUnzip.prefab"; public static string mdlChest1 = "RoR2/Base/Chest1/mdlChest1.fbx"; public static string Chest1StealthedVariant = "RoR2/Base/Chest1StealthedVariant/Chest1StealthedVariant.prefab"; public static string Chest2 = "RoR2/Base/Chest2/Chest2.prefab"; public static string mdlChest2 = "RoR2/Base/Chest2/mdlChest2.fbx"; public static string Duplicator = "RoR2/Base/Duplicator/Duplicator.prefab"; public static string mdlDuplicator = "RoR2/Base/Duplicator/mdlDuplicator.fbx"; public static string DuplicatorLarge = "RoR2/Base/DuplicatorLarge/DuplicatorLarge.prefab"; public static string DuplicatorMilitary = "RoR2/Base/DuplicatorMilitary/DuplicatorMilitary.prefab"; public static string DuplicatorWild = "RoR2/Base/DuplicatorWild/DuplicatorWild.prefab"; public static string EquipmentBarrel = "RoR2/Base/EquipmentBarrel/EquipmentBarrel.prefab"; public static string mdlEquipmentBarrel = "RoR2/Base/EquipmentBarrel/mdlEquipmentBarrel.fbx"; public static string GoldChest = "RoR2/Base/GoldChest/GoldChest.prefab"; public static string GoldChestStarburst = "RoR2/Base/GoldChest/GoldChestStarburst.prefab"; public static string GoldChestUnzip = "RoR2/Base/GoldChest/GoldChestUnzip.prefab"; public static string mdlGoldChest = "RoR2/Base/GoldChest/mdlGoldChest.fbx"; public static string LunarCauldronGreenToRedVariant = "RoR2/Base/LunarCauldrons/LunarCauldron, GreenToRed Variant.prefab"; public static string LunarCauldronRedToWhiteVariant = "RoR2/Base/LunarCauldrons/LunarCauldron, RedToWhite Variant.prefab"; public static string LunarCauldronWhiteToGreen = "RoR2/Base/LunarCauldrons/LunarCauldron, WhiteToGreen.prefab"; public static string LunarChest = "RoR2/Base/LunarChest/LunarChest.prefab"; public static string LunarChestStarburst = "RoR2/Base/LunarChest/LunarChestStarburst.prefab"; public static string mdlLunarChest = "RoR2/Base/LunarChest/mdlLunarChest.fbx"; public static string LunarRecycler = "RoR2/Base/LunarRecycler/LunarRecycler.prefab"; public static string LunarRecyclerFX = "RoR2/Base/LunarRecycler/LunarRecyclerFX.prefab"; public static string LunarRerollEffect = "RoR2/Base/LunarRecycler/LunarRerollEffect.prefab"; public static string mdlLunarRecycler = "RoR2/Base/LunarRecycler/mdlLunarRecycler.fbx"; public static string LunarShopTerminal = "RoR2/Base/LunarShopTerminal/LunarShopTerminal.prefab"; public static string mdlMultiShopEquipmentTerminal = "RoR2/Base/MultiShopEquipmentTerminal/mdlMultiShopEquipmentTerminal.fbx"; public static string MultiShopEquipmentTerminal = "RoR2/Base/MultiShopEquipmentTerminal/MultiShopEquipmentTerminal.prefab"; public static string mdlMultiShopLargeTerminal = "RoR2/Base/MultiShopLargeTerminal/mdlMultiShopLargeTerminal.fbx"; public static string MultiShopLargeTerminal = "RoR2/Base/MultiShopLargeTerminal/MultiShopLargeTerminal.prefab"; public static string mdlMultiShopTerminal = "RoR2/Base/MultiShopTerminal/mdlMultiShopTerminal.fbx"; public static string MultiShopTerminal = "RoR2/Base/MultiShopTerminal/MultiShopTerminal.prefab"; public static string ShopTerminal = "RoR2/Base/MultiShopTerminal/ShopTerminal.prefab"; public static string NewtStatue = "RoR2/Base/NewtStatue/NewtStatue.prefab"; public static string NullSafeWard = "RoR2/Base/NullSafeWard/NullSafeWard.prefab"; public static string PortalArena = "RoR2/Base/PortalArena/PortalArena.prefab"; public static string PortalArtifactworld = "RoR2/Base/PortalArtifactworld/PortalArtifactworld.prefab"; public static string PortalGoldshores = "RoR2/Base/PortalGoldshores/PortalGoldshores.prefab"; public static string PortalMS = "RoR2/Base/PortalMS/PortalMS.prefab"; public static string PortalShop = "RoR2/Base/PortalShop/PortalShop.prefab"; public static string ActivateRadarTowerEffect = "RoR2/Base/RadarTower/ActivateRadarTowerEffect.prefab"; public static string mdlRadarTower = "RoR2/Base/RadarTower/mdlRadarTower.fbx"; public static string RadarTower = "RoR2/Base/RadarTower/RadarTower.prefab"; public static string mdlScrapper = "RoR2/Base/Scrapper/mdlScrapper.fbx"; public static string Scrapper = "RoR2/Base/Scrapper/Scrapper.prefab"; public static string ScrapperPickerPanel = "RoR2/Base/Scrapper/ScrapperPickerPanel.prefab"; public static string mdlShrineBlood = "RoR2/Base/ShrineBlood/mdlShrineBlood.fbx"; public static string mdlShrineBloodopt = "RoR2/Base/ShrineBlood/mdlShrineBlood_opt.fbx"; public static string ShrineBlood = "RoR2/Base/ShrineBlood/ShrineBlood.prefab"; public static string mdlShrineBloodSandy = "RoR2/Base/ShrineBlood/mdlShrineBloodSandy.fbx"; public static string ShrineBloodSandyVariant = "RoR2/Base/ShrineBlood/ShrineBloodSandy Variant.prefab"; public static string ShrineBloodSnowyVariant = "RoR2/Base/ShrineBlood/ShrineBloodSnowy Variant.prefab"; public static string mdlShrineBoss = "RoR2/Base/ShrineBoss/mdlShrineBoss.fbx"; public static string mdlShrineBossopt = "RoR2/Base/ShrineBoss/mdlShrineBoss_opt.fbx"; public static string ShrineBoss = "RoR2/Base/ShrineBoss/ShrineBoss.prefab"; public static string mdlShrineBossSandy = "RoR2/Base/ShrineBoss/mdlShrineBossSandy.fbx"; public static string ShrineBossSandyVariant = "RoR2/Base/ShrineBoss/ShrineBossSandy Variant.prefab"; public static string ShrineBossSnowyVariant = "RoR2/Base/ShrineBoss/ShrineBossSnowy Variant.prefab"; public static string ShrineBossSymbol = "RoR2/Base/ShrineBoss/ShrineBossSymbol.prefab"; public static string mdlShrineChance = "RoR2/Base/ShrineChance/mdlShrineChance.fbx"; public static string mdlShrineChanceopt = "RoR2/Base/ShrineChance/mdlShrineChance_opt.fbx"; public static string ShrineChance = "RoR2/Base/ShrineChance/ShrineChance.prefab"; public static string mdlShrineChanceSandy = "RoR2/Base/ShrineChance/mdlShrineChanceSandy.fbx"; public static string ShrineChanceSandyVariant = "RoR2/Base/ShrineChance/ShrineChanceSandy Variant.prefab"; public static string ShrineChanceSnowyVariant = "RoR2/Base/ShrineChance/ShrineChanceSnowy Variant.prefab"; public static string mdlShrineCleanse = "RoR2/Base/ShrineCleanse/mdlShrineCleanse.fbx"; public static string mdlShrineCleanseCollision = "RoR2/Base/ShrineCleanse/mdlShrineCleanse_Collision.fbx"; public static string mdlShrineCleanseopt = "RoR2/Base/ShrineCleanse/mdlShrineCleanse_opt.fbx"; public static string ShrineCleanse = "RoR2/Base/ShrineCleanse/ShrineCleanse.prefab"; public static string mdlShrineCleanseSandy = "RoR2/Base/ShrineCleanse/mdlShrineCleanseSandy.fbx"; public static string ShrineCleanseSandyVariant = "RoR2/Base/ShrineCleanse/ShrineCleanseSandy Variant.prefab"; public static string ShrineCleanseSnowyVariant = "RoR2/Base/ShrineCleanse/ShrineCleanseSnowy Variant.prefab"; public static string CombatShrineCombatSquad = "RoR2/Base/ShrineCombat/CombatShrineCombatSquad.prefab"; public static string CombatShrineSpawnEffect = "RoR2/Base/ShrineCombat/CombatShrineSpawnEffect.prefab"; public static string mdlShrineCombat = "RoR2/Base/ShrineCombat/mdlShrineCombat.fbx"; public static string mdlShrineCombatopt = "RoR2/Base/ShrineCombat/mdlShrineCombat_opt.fbx"; public static string ShrineCombat = "RoR2/Base/ShrineCombat/ShrineCombat.prefab"; public static string mdlShrineCombatSandy = "RoR2/Base/ShrineCombat/mdlShrineCombatSandy.fbx"; public static string ShrineCombatSandyVariant = "RoR2/Base/ShrineCombat/ShrineCombatSandy Variant.prefab"; public static string ShrineCombatSnowyVariant = "RoR2/Base/ShrineCombat/ShrineCombatSnowy Variant.prefab"; public static string ShrineGoldshoresAccess = "RoR2/Base/ShrineGoldshoresAccess/ShrineGoldshoresAccess.prefab"; public static string mdlShrineHealing = "RoR2/Base/ShrineHealing/mdlShrineHealing.fbx"; public static string mdlShrineHealingopt = "RoR2/Base/ShrineHealing/mdlShrineHealing_opt.fbx"; public static string ShrineHealing = "RoR2/Base/ShrineHealing/ShrineHealing.prefab"; public static string ShrineHealingWard = "RoR2/Base/ShrineHealing/ShrineHealingWard.prefab"; public static string mdlShrineRestack = "RoR2/Base/ShrineRestack/mdlShrineRestack.fbx"; public static string ShrineRestack = "RoR2/Base/ShrineRestack/ShrineRestack.prefab"; public static string mdlShrineRestackSandy = "RoR2/Base/ShrineRestack/mdlShrineRestackSandy.fbx"; public static string ShrineRestackSandyVariant = "RoR2/Base/ShrineRestack/ShrineRestackSandy Variant.prefab"; public static string ShrineRestackSnowyVariant = "RoR2/Base/ShrineRestack/ShrineRestackSnowy Variant.prefab"; public static string lunarteleporter = "RoR2/Base/Teleporters/lunar teleporter.fbx"; public static string LunarProngShift = "RoR2/Base/Teleporters/LunarProngShift.prefab"; public static string LunarTeleporterVariant = "RoR2/Base/Teleporters/LunarTeleporter Variant.prefab"; public static string LunarTeleporterProngCollision = "RoR2/Base/Teleporters/LunarTeleporterProngCollision.prefab"; public static string LunarTeleporterProngs = "RoR2/Base/Teleporters/LunarTeleporterProngs.prefab"; public static string PurchaseLock = "RoR2/Base/Teleporters/PurchaseLock.prefab"; public static string mdlTeleporter1 = "RoR2/Base/Teleporters/mdlTeleporter1.fbx"; public static string mdlTeleporter1opt = "RoR2/Base/Teleporters/mdlTeleporter1_opt.fbx"; public static string mdlTeleporter1Collision = "RoR2/Base/Teleporters/mdlTeleporter1Collision.fbx"; public static string mdlTeleporter1ProngMesh = "RoR2/Base/Teleporters/mdlTeleporter1ProngMesh.fbx"; public static string mdlTeleporterBeacon = "RoR2/Base/Teleporters/mdlTeleporterBeacon.fbx"; public static string Teleporter1 = "RoR2/Base/Teleporters/Teleporter1.prefab"; public static string TeleporterChargingPositionIndicator = "RoR2/Base/Teleporters/TeleporterChargingPositionIndicator.prefab"; public static string ForcedBFGPickup = "RoR2/Base/TimedChest/ForcedBFGPickup.prefab"; public static string mdlTimedChest = "RoR2/Base/TimedChest/mdlTimedChest.fbx"; public static string TimedChest = "RoR2/Base/TimedChest/TimedChest.prefab"; public static string mdlMultiShopTerminalCenter = "RoR2/Base/TripleShop/mdlMultiShopTerminalCenter.fbx"; public static string TripleShop = "RoR2/Base/TripleShop/TripleShop.prefab"; public static string TripleShopEquipment = "RoR2/Base/TripleShopEquipment/TripleShopEquipment.prefab"; public static string mdlMultiShopLargeTerminalCenter = "RoR2/Base/TripleShopLarge/mdlMultiShopLargeTerminalCenter.fbx"; public static string TripleShopLarge = "RoR2/Base/TripleShopLarge/TripleShopLarge.prefab"; public static string mdlEscapePod = "RoR2/Base/SurvivorPod/mdlEscapePod.fbx"; public static string mdlEscapePodExhaustVFX = "RoR2/Base/SurvivorPod/mdlEscapePodExhaustVFX.fbx"; public static string PodGroundImpact = "RoR2/Base/SurvivorPod/PodGroundImpact.prefab"; public static string SurvivorPod = "RoR2/Base/SurvivorPod/SurvivorPod.prefab"; public static string SurvivorPodBatteryPanel = "RoR2/Base/SurvivorPod/SurvivorPodBatteryPanel.prefab"; public static string DisplayAlienHead = "RoR2/Base/AlienHead/DisplayAlienHead.prefab"; public static string mdlAlienHead = "RoR2/Base/AlienHead/mdlAlienHead.fbx"; public static string PickupAlienHead = "RoR2/Base/AlienHead/PickupAlienHead.prefab"; public static string DisplayRepulsionArmorPlate = "RoR2/Base/ArmorPlate/DisplayRepulsionArmorPlate.prefab"; public static string mdlRepulsionArmorPlate = "RoR2/Base/ArmorPlate/mdlRepulsionArmorPlate.fbx"; public static string PickupRepulsionArmorPlate = "RoR2/Base/ArmorPlate/PickupRepulsionArmorPlate.prefab"; public static string DisplayWarhammer = "RoR2/Base/ArmorReductionOnHit/DisplayWarhammer.prefab"; public static string mdlWarhammer = "RoR2/Base/ArmorReductionOnHit/mdlWarhammer.fbx"; public static string PickupWarhammer = "RoR2/Base/ArmorReductionOnHit/PickupWarhammer.prefab"; public static string PulverizedEffect = "RoR2/Base/ArmorReductionOnHit/PulverizedEffect.prefab"; public static string mdlArtifactKey = "RoR2/Base/ArtifactKey/mdlArtifactKey.fbx"; public static string PickupArtifactKey = "RoR2/Base/ArtifactKey/PickupArtifactKey.prefab"; public static string DisplayWolfPelt = "RoR2/Base/AttackSpeedOnCrit/DisplayWolfPelt.prefab"; public static string mdlWolfPelt = "RoR2/Base/AttackSpeedOnCrit/mdlWolfPelt.fbx"; public static string PickupWolfPelt = "RoR2/Base/AttackSpeedOnCrit/PickupWolfPelt.prefab"; public static string WolfProcEffect = "RoR2/Base/AttackSpeedOnCrit/WolfProcEffect.prefab"; public static string DisplayFossil = "RoR2/Base/AutoCastEquipment/DisplayFossil.prefab"; public static string mdlFossil = "RoR2/Base/AutoCastEquipment/mdlFossil.fbx"; public static string PickupFossil = "RoR2/Base/AutoCastEquipment/PickupFossil.prefab"; public static string AmmoPack = "RoR2/Base/Bandolier/AmmoPack.prefab"; public static string AmmoPackPickupEffect = "RoR2/Base/Bandolier/AmmoPackPickupEffect.prefab"; public static string DisplayBandolier = "RoR2/Base/Bandolier/DisplayBandolier.prefab"; public static string mdlBandolier = "RoR2/Base/Bandolier/mdlBandolier.fbx"; public static string mdlBandolierAmmoPack = "RoR2/Base/Bandolier/mdlBandolierAmmoPack.fbx"; public static string mdlBandolierShell = "RoR2/Base/Bandolier/mdlBandolierShell.fbx"; public static string PickupBandolier = "RoR2/Base/Bandolier/PickupBandolier.prefab"; public static string DisplayBrooch = "RoR2/Base/BarrierOnKill/DisplayBrooch.prefab"; public static string mdlBrooch = "RoR2/Base/BarrierOnKill/mdlBrooch.fbx"; public static string PickupBrooch = "RoR2/Base/BarrierOnKill/PickupBrooch.prefab"; public static string DisplayAegis = "RoR2/Base/BarrierOnOverHeal/DisplayAegis.prefab"; public static string mdlAegis = "RoR2/Base/BarrierOnOverHeal/mdlAegis.fbx"; public static string PickupAegis = "RoR2/Base/BarrierOnOverHeal/PickupAegis.prefab"; public static string BearProc = "RoR2/Base/Bear/BearProc.prefab"; public static string DisplayBear = "RoR2/Base/Bear/DisplayBear.prefab"; public static string DisplayBearSit = "RoR2/Base/Bear/DisplayBearSit.prefab"; public static string mdlBear = "RoR2/Base/Bear/mdlBear.fbx"; public static string PickupBear = "RoR2/Base/Bear/PickupBear.prefab"; public static string BeetleGuardAllyBody = "RoR2/Base/BeetleGland/BeetleGuardAllyBody.prefab"; public static string BeetleGuardAllyMaster = "RoR2/Base/BeetleGland/BeetleGuardAllyMaster.prefab"; public static string DisplayBeetleGland = "RoR2/Base/BeetleGland/DisplayBeetleGland.prefab"; public static string mdlBeetleGland = "RoR2/Base/BeetleGland/mdlBeetleGland.fbx"; public static string PickupBeetleGland = "RoR2/Base/BeetleGland/PickupBeetleGland.prefab"; public static string DisplayBehemoth = "RoR2/Base/Behemoth/DisplayBehemoth.prefab"; public static string mdlBehemoth = "RoR2/Base/Behemoth/mdlBehemoth.fbx"; public static string PickupBehemoth = "RoR2/Base/Behemoth/PickupBehemoth.prefab"; public static string DisplayTriTip = "RoR2/Base/BleedOnHit/DisplayTriTip.prefab"; public static string mdlTriTip = "RoR2/Base/BleedOnHit/mdlTriTip.fbx"; public static string PickupTriTip = "RoR2/Base/BleedOnHit/PickupTriTip.prefab"; public static string BleedOnHitAndExplodeExplosion = "RoR2/Base/BleedOnHitAndExplode/BleedOnHitAndExplode_Explosion.prefab"; public static string BleedOnHitAndExplodeImpact = "RoR2/Base/BleedOnHitAndExplode/BleedOnHitAndExplode_Impact.prefab"; public static string BleedOnHitAndExplodeDelay = "RoR2/Base/BleedOnHitAndExplode/BleedOnHitAndExplodeDelay.prefab"; public static string DisplayBleedOnHitAndExplode = "RoR2/Base/BleedOnHitAndExplode/DisplayBleedOnHitAndExplode.prefab"; public static string mdlBleedOnHitAndExplode = "RoR2/Base/BleedOnHitAndExplode/mdlBleedOnHitAndExplode.fbx"; public static string PickupBleedOnHitAndExplode = "RoR2/Base/BleedOnHitAndExplode/PickupBleedOnHitAndExplode.prefab"; public static string BonusMoneyPack = "RoR2/Base/BonusGoldPackOnKill/BonusMoneyPack.prefab"; public static string DisplayTome = "RoR2/Base/BonusGoldPackOnKill/DisplayTome.prefab"; public static string mdlTome = "RoR2/Base/BonusGoldPackOnKill/mdlTome.fbx"; public static string MoneyPackPickupEffect = "RoR2/Base/BonusGoldPackOnKill/MoneyPackPickupEffect.prefab"; public static string PickupTome = "RoR2/Base/BonusGoldPackOnKill/PickupTome.prefab"; public static string DisplayAPRound = "RoR2/Base/BossDamageBonus/DisplayAPRound.prefab"; public static string ImpactBossDamageBonus = "RoR2/Base/BossDamageBonus/ImpactBossDamageBonus.prefab"; public static string mdlAPRounds = "RoR2/Base/BossDamageBonus/mdlAPRounds.fbx"; public static string PickupAPRounds = "RoR2/Base/BossDamageBonus/PickupAPRounds.prefab"; public static string BounceOrbEffect = "RoR2/Base/BounceNearby/BounceOrbEffect.prefab"; public static string DisplayHook = "RoR2/Base/BounceNearby/DisplayHook.prefab"; public static string DisplayHookHead = "RoR2/Base/BounceNearby/DisplayHookHead.prefab"; public static string mdlDisplayHook = "RoR2/Base/BounceNearby/mdlDisplayHook.fbx"; public static string mdlDisplayHookHead = "RoR2/Base/BounceNearby/mdlDisplayHookHead.fbx"; public static string mdlHook = "RoR2/Base/BounceNearby/mdlHook.fbx"; public static string mdlHookProjectile = "RoR2/Base/BounceNearby/mdlHookProjectile.fbx"; public static string PickupHook = "RoR2/Base/BounceNearby/PickupHook.prefab"; public static string captaindefensedrone = "RoR2/Base/CaptainDefenseMatrix/captain defense drone.fbx"; public static string CaptainDefenseMatrixItemBodyAttachment = "RoR2/Base/CaptainDefenseMatrix/CaptainDefenseMatrixItemBodyAttachment.prefab"; public static string PickupCaptainDefenseMatrix = "RoR2/Base/CaptainDefenseMatrix/PickupCaptainDefenseMatrix.prefab"; public static string TracerCaptainDefenseMatrix = "RoR2/Base/CaptainDefenseMatrix/TracerCaptainDefenseMatrix.prefab"; public static string ChainLightningOrbEffect = "RoR2/Base/ChainLightning/ChainLightningOrbEffect.prefab"; public static string DisplayUkulele = "RoR2/Base/ChainLightning/DisplayUkulele.prefab"; public static string mdlUkulele = "RoR2/Base/ChainLightning/mdlUkulele.fbx"; public static string mdlUkulele2 = "RoR2/Base/ChainLightning/mdlUkulele2.fbx"; public static string PickupUkulele = "RoR2/Base/ChainLightning/PickupUkulele.prefab"; public static string CloverEffect = "RoR2/Base/Clover/CloverEffect.prefab"; public static string DisplayClover = "RoR2/Base/Clover/DisplayClover.prefab"; public static string mdlClover = "RoR2/Base/Clover/mdlClover.fbx"; public static string mdlCloverLeaf = "RoR2/Base/Clover/mdlCloverLeaf.fbx"; public static string PickupClover = "RoR2/Base/Clover/PickupClover.prefab"; public static string DisplayGlasses = "RoR2/Base/CritGlasses/DisplayGlasses.prefab"; public static string mdlGlasses = "RoR2/Base/CritGlasses/mdlGlasses.fbx"; public static string PickupGlasses = "RoR2/Base/CritGlasses/PickupGlasses.prefab"; public static string DisplayCrowbar = "RoR2/Base/Crowbar/DisplayCrowbar.prefab"; public static string ImpactCrowbar = "RoR2/Base/Crowbar/ImpactCrowbar.prefab"; public static string mdlCrowbar = "RoR2/Base/Crowbar/mdlCrowbar.fbx"; public static string PickupCrowbar = "RoR2/Base/Crowbar/PickupCrowbar.prefab"; public static string DaggerImpact = "RoR2/Base/Dagger/DaggerImpact.prefab"; public static string DaggerProjectile = "RoR2/Base/Dagger/DaggerProjectile.prefab"; public static string DaggerProjectileGhost = "RoR2/Base/Dagger/DaggerProjectileGhost.prefab"; public static string DisplayDagger = "RoR2/Base/Dagger/DisplayDagger.prefab"; public static string mdlDagger = "RoR2/Base/Dagger/mdlDagger.fbx"; public static string mdlDaggerDisplay = "RoR2/Base/Dagger/mdlDaggerDisplay.fbx"; public static string mdlDaggerProc = "RoR2/Base/Dagger/mdlDaggerProc.fbx"; public static string PickupDagger = "RoR2/Base/Dagger/PickupDagger.prefab"; public static string DeathMarkEffect = "RoR2/Base/DeathMark/DeathMarkEffect.prefab"; public static string DisplayDeathMark = "RoR2/Base/DeathMark/DisplayDeathMark.prefab"; public static string mdlDeathMark = "RoR2/Base/DeathMark/mdlDeathMark.fbx"; public static string PickupDeathMark = "RoR2/Base/DeathMark/PickupDeathMark.prefab"; public static string DisplayFireRing = "RoR2/Base/ElementalRings/DisplayFireRing.prefab"; public static string DisplayIceRing = "RoR2/Base/ElementalRings/DisplayIceRing.prefab"; public static string fireringeffects = "RoR2/Base/ElementalRings/fire ring effects.fbx"; public static string FireTornado = "RoR2/Base/ElementalRings/FireTornado.prefab"; public static string FireTornadoGhost = "RoR2/Base/ElementalRings/FireTornadoGhost.prefab"; public static string iceringeffects = "RoR2/Base/ElementalRings/ice ring effects.fbx"; public static string IceRingExplosion = "RoR2/Base/ElementalRings/IceRingExplosion.prefab"; public static string mdlRingSet = "RoR2/Base/ElementalRings/mdlRingSet.fbx"; public static string PickupFireRing = "RoR2/Base/ElementalRings/PickupFireRing.prefab"; public static string PickupIceRing = "RoR2/Base/ElementalRings/PickupIceRing.prefab"; public static string DisplayWarHorn = "RoR2/Base/EnergizedOnEquipmentUse/DisplayWarHorn.prefab"; public static string EnergizedEffect = "RoR2/Base/EnergizedOnEquipmentUse/EnergizedEffect.prefab"; public static string mdlWarHorn = "RoR2/Base/EnergizedOnEquipmentUse/mdlWarHorn.fbx"; public static string PickupWarHorn = "RoR2/Base/EnergizedOnEquipmentUse/PickupWarHorn.prefab"; public static string DisplayBattery = "RoR2/Base/EquipmentMagazine/DisplayBattery.prefab"; public static string mdlBattery = "RoR2/Base/EquipmentMagazine/mdlBattery.fbx"; public static string PickupBattery = "RoR2/Base/EquipmentMagazine/PickupBattery.prefab"; public static string PickupDoubleMag = "RoR2/Base/EquipmentMagazine/PickupDoubleMag.prefab"; public static string DisplayGuillotine = "RoR2/Base/ExecuteLowHealthElite/DisplayGuillotine.prefab"; public static string mdlGuillotine = "RoR2/Base/ExecuteLowHealthElite/mdlGuillotine.fbx"; public static string OmniImpactExecute = "RoR2/Base/ExecuteLowHealthElite/OmniImpactExecute.prefab"; public static string PickupGuillotine = "RoR2/Base/ExecuteLowHealthElite/PickupGuillotine.prefab"; public static string DisplayWilloWisp = "RoR2/Base/ExplodeOnDeath/DisplayWilloWisp.prefab"; public static string mdlGlassJar = "RoR2/Base/ExplodeOnDeath/mdlGlassJar.fbx"; public static string mdlWilloWisp = "RoR2/Base/ExplodeOnDeath/mdlWilloWisp.fbx"; public static string PickupWilloWisp = "RoR2/Base/ExplodeOnDeath/PickupWilloWisp.prefab"; public static string WilloWispDelay = "RoR2/Base/ExplodeOnDeath/WilloWispDelay.prefab"; public static string WilloWispExplosion = "RoR2/Base/ExplodeOnDeath/WilloWispExplosion.prefab"; public static string DisplayHippo = "RoR2/Base/ExtraLife/DisplayHippo.prefab"; public static string hippoeffects = "RoR2/Base/ExtraLife/hippo effects.fbx"; public static string HippoRezEffect = "RoR2/Base/ExtraLife/HippoRezEffect.prefab"; public static string mdlHippo = "RoR2/Base/ExtraLife/mdlHippo.fbx"; public static string PickupHippo = "RoR2/Base/ExtraLife/PickupHippo.prefab"; public static string BootCharging = "RoR2/Base/FallBoots/BootCharging.prefab"; public static string BootIsReady = "RoR2/Base/FallBoots/BootIsReady.prefab"; public static string BootJump = "RoR2/Base/FallBoots/BootJump.prefab"; public static string BootShockwave = "RoR2/Base/FallBoots/BootShockwave.prefab"; public static string BootTrigger = "RoR2/Base/FallBoots/BootTrigger.prefab"; public static string DisplayGravBoots = "RoR2/Base/FallBoots/DisplayGravBoots.prefab"; public static string HeadstompersController = "RoR2/Base/FallBoots/HeadstompersController.prefab"; public static string mdlGravityBoots = "RoR2/Base/FallBoots/mdlGravityBoots.fbx"; public static string PickupGravBoots = "RoR2/Base/FallBoots/PickupGravBoots.prefab"; public static string DisplayFeather = "RoR2/Base/Feather/DisplayFeather.prefab"; public static string FeatherEffect = "RoR2/Base/Feather/FeatherEffect.prefab"; public static string mdlFeather = "RoR2/Base/Feather/mdlFeather.fbx"; public static string mdlFeatherPickup = "RoR2/Base/Feather/mdlFeatherPickup.fbx"; public static string PickupFeather = "RoR2/Base/Feather/PickupFeather.prefab"; public static string DisplayFireballsOnHit = "RoR2/Base/FireballsOnHit/DisplayFireballsOnHit.prefab"; public static string FireMeatBall = "RoR2/Base/FireballsOnHit/FireMeatBall.prefab"; public static string FireMeatBallExplosion = "RoR2/Base/FireballsOnHit/FireMeatBallExplosion.prefab"; public static string FireMeatBallGhost = "RoR2/Base/FireballsOnHit/FireMeatBallGhost.prefab"; public static string FireMeatBallPool = "RoR2/Base/FireballsOnHit/FireMeatBallPool.prefab"; public static string mdlFireballsOnHit = "RoR2/Base/FireballsOnHit/mdlFireballsOnHit.fbx"; public static string MuzzleflashFireMeatBall = "RoR2/Base/FireballsOnHit/MuzzleflashFireMeatBall.prefab"; public static string PickupFireballsOnHit = "RoR2/Base/FireballsOnHit/PickupFireballsOnHit.prefab"; public static string DisplayFirework = "RoR2/Base/Firework/DisplayFirework.prefab"; public static string FireworkExplosion2 = "RoR2/Base/Firework/FireworkExplosion2.prefab"; public static string FireworkGhost = "RoR2/Base/Firework/FireworkGhost.prefab"; public static string FireworkLauncher = "RoR2/Base/Firework/FireworkLauncher.prefab"; public static string FireworkLight = "RoR2/Base/Firework/FireworkLight.prefab"; public static string FireworkProjectile = "RoR2/Base/Firework/FireworkProjectile.prefab"; public static string mdlFireworkProjectile = "RoR2/Base/Firework/mdlFireworkProjectile.fbx"; public static string mdlFireworks = "RoR2/Base/Firework/mdlFireworks.fbx"; public static string mdlFireworksShortstick = "RoR2/Base/Firework/mdlFireworksShortstick.fbx"; public static string PickupFirework = "RoR2/Base/Firework/PickupFirework.prefab"; public static string DisplaySteakCurved = "RoR2/Base/FlatHealth/DisplaySteakCurved.prefab"; public static string DisplaySteakFlat = "RoR2/Base/FlatHealth/DisplaySteakFlat.prefab"; public static string mdlSteak = "RoR2/Base/FlatHealth/mdlSteak.fbx"; public static string PickupSteak = "RoR2/Base/FlatHealth/PickupSteak.prefab"; public static string DisplayFocusedConvergence = "RoR2/Base/FocusConvergence/DisplayFocusedConvergence.prefab"; public static string DisplayFocusedConvergenceFollower = "RoR2/Base/FocusConvergence/DisplayFocusedConvergenceFollower.prefab"; public static string focusedconvergence = "RoR2/Base/FocusConvergence/focusedconvergence.fbx"; public static string PickupFocusedConvergence = "RoR2/Base/FocusConvergence/PickupFocusedConvergence.prefab"; public static string DisplayMask = "RoR2/Base/GhostOnKill/DisplayMask.prefab"; public static string mdlMask = "RoR2/Base/GhostOnKill/mdlMask.fbx"; public static string PickupMask = "RoR2/Base/GhostOnKill/PickupMask.prefab"; public static string DisplayBoneCrown = "RoR2/Base/GoldOnHit/DisplayBoneCrown.prefab"; public static string mdlBoneCrown = "RoR2/Base/GoldOnHit/mdlBoneCrown.fbx"; public static string PickupBoneCrown = "RoR2/Base/GoldOnHit/PickupBoneCrown.prefab"; public static string DisplaySkullcrown = "RoR2/Base/HeadHunter/DisplaySkullcrown.prefab"; public static string mdlSkullcrown = "RoR2/Base/HeadHunter/mdlSkullcrown.fbx"; public static string PickupSkullcrown = "RoR2/Base/HeadHunter/PickupSkullcrown.prefab"; public static string DisplayScythe = "RoR2/Base/HealOnCrit/DisplayScythe.prefab"; public static string mdlScythe = "RoR2/Base/HealOnCrit/mdlScythe.fbx"; public static string PickupScythe = "RoR2/Base/HealOnCrit/PickupScythe.prefab"; public static string DisplaySnail = "RoR2/Base/HealWhileSafe/DisplaySnail.prefab"; public static string mdlSnail = "RoR2/Base/HealWhileSafe/mdlSnail.fbx"; public static string PickupSnail = "RoR2/Base/HealWhileSafe/PickupSnail.prefab"; public static string DisplayHoof = "RoR2/Base/Hoof/DisplayHoof.prefab"; public static string mdlHoof = "RoR2/Base/Hoof/mdlHoof.fbx"; public static string PickupHoof = "RoR2/Base/Hoof/PickupHoof.prefab"; public static string DisplayFrostRelic = "RoR2/Base/Icicle/DisplayFrostRelic.prefab"; public static string DisplayFrostRelicFollower = "RoR2/Base/Icicle/DisplayFrostRelicFollower.prefab"; public static string DisplayIcicle = "RoR2/Base/Icicle/DisplayIcicle.prefab"; public static string IcicleAura = "RoR2/Base/Icicle/IcicleAura.prefab"; public static string mdlFrostRelic = "RoR2/Base/Icicle/mdlFrostRelic.fbx"; public static string mdlIcicle = "RoR2/Base/Icicle/mdlIcicle.fbx"; public static string PickupFrostRelic = "RoR2/Base/Icicle/PickupFrostRelic.prefab"; public static string PickupIcicle = "RoR2/Base/Icicle/PickupIcicle.prefab"; public static string DisplayGasoline = "RoR2/Base/IgniteOnKill/DisplayGasoline.prefab"; public static string IgniteExplosionVFX = "RoR2/Base/IgniteOnKill/IgniteExplosionVFX.prefab"; public static string mdlGasoline = "RoR2/Base/IgniteOnKill/mdlGasoline.fbx"; public static string PickupGasoline = "RoR2/Base/IgniteOnKill/PickupGasoline.prefab"; public static string DisplayAntler = "RoR2/Base/IncreaseHealing/DisplayAntler.prefab"; public static string mdlAntler = "RoR2/Base/IncreaseHealing/mdlAntler.fbx"; public static string PickupAntler = "RoR2/Base/IncreaseHealing/PickupAntler.prefab"; public static string DisplayInfusion = "RoR2/Base/Infusion/DisplayInfusion.prefab"; public static string InfusionOrbEffect = "RoR2/Base/Infusion/InfusionOrbEffect.prefab"; public static string InfusionOrbFlash = "RoR2/Base/Infusion/InfusionOrbFlash.prefab"; public static string mdlInfusionDisplay = "RoR2/Base/Infusion/mdlInfusionDisplay.fbx"; public static string mdlInfusionPickup = "RoR2/Base/Infusion/mdlInfusionPickup.fbx"; public static string PickupInfusion = "RoR2/Base/Infusion/PickupInfusion.prefab"; public static string DoppelgangerEffect = "RoR2/Base/InvadingDoppelganger/DoppelgangerEffect.prefab"; public static string BoostJumpEffect = "RoR2/Base/JumpBoost/BoostJumpEffect.prefab"; public static string DisplayWaxBird = "RoR2/Base/JumpBoost/DisplayWaxBird.prefab"; public static string DisplayWaxBirdEasyPlacement = "RoR2/Base/JumpBoost/DisplayWaxBirdEasyPlacement.prefab"; public static string mdlWaxBird = "RoR2/Base/JumpBoost/mdlWaxBird.fbx"; public static string PickupWaxBird = "RoR2/Base/JumpBoost/PickupWaxBird.prefab"; public static string DisplayBrainstalk = "RoR2/Base/KillEliteFrenzy/DisplayBrainstalk.prefab"; public static string mdlBrainstalk = "RoR2/Base/KillEliteFrenzy/mdlBrainstalk.fbx"; public static string NoCooldownEffect = "RoR2/Base/KillEliteFrenzy/NoCooldownEffect.prefab"; public static string PickupBrainstalk = "RoR2/Base/KillEliteFrenzy/PickupBrainstalk.prefab"; public static string DisplayKnurl = "RoR2/Base/Knurl/DisplayKnurl.prefab"; public static string mdlKnurl = "RoR2/Base/Knurl/mdlKnurl.fbx"; public static string PickupKnurl = "RoR2/Base/Knurl/PickupKnurl.prefab"; public static string DisplayLaserTurbine = "RoR2/Base/LaserTurbine/DisplayLaserTurbine.prefab"; public static string LaserTurbineBomb = "RoR2/Base/LaserTurbine/LaserTurbineBomb.prefab"; public static string LaserTurbineBombExplosion = "RoR2/Base/LaserTurbine/LaserTurbineBombExplosion.prefab"; public static string LaserTurbineBombGhost = "RoR2/Base/LaserTurbine/LaserTurbineBombGhost.prefab"; public static string LaserTurbineController = "RoR2/Base/LaserTurbine/LaserTurbineController.prefab"; public static string TargetingLaserTurbine = "RoR2/Base/LaserTurbine/TargetingLaserTurbine.prefab"; public static string TracerLaserTurbine = "RoR2/Base/LaserTurbine/TracerLaserTurbine.prefab"; public static string TracerLaserTurbineReturn = "RoR2/Base/LaserTurbine/TracerLaserTurbineReturn.prefab"; public static string mdlLaserDisk = "RoR2/Base/LaserTurbine/mdlLaserDisk.fbx"; public static string PickupLaserTurbine = "RoR2/Base/LaserTurbine/PickupLaserTurbine.prefab"; public static string ChargedPerforator = "RoR2/Base/LightningStrikeOnHit/ChargedPerforator.fbx"; public static string DisplayChargedPerforator = "RoR2/Base/LightningStrikeOnHit/DisplayChargedPerforator.prefab"; public static string PickupChargedPerforator = "RoR2/Base/LightningStrikeOnHit/PickupChargedPerforator.prefab"; public static string PickupLightningStrikeOnHit = "RoR2/Base/LightningStrikeOnHit/PickupLightningStrikeOnHit.prefab"; public static string SimpleLightningStrikeImpact = "RoR2/Base/LightningStrikeOnHit/SimpleLightningStrikeImpact.prefab"; public static string SimpleLightningStrikeOrbEffect = "RoR2/Base/LightningStrikeOnHit/SimpleLightningStrikeOrbEffect.prefab"; public static string mdlStarSeed = "RoR2/Base/LunarBadLuck/mdlStarSeed.fbx"; public static string PickupStarSeed = "RoR2/Base/LunarBadLuck/PickupStarSeed.prefab"; public static string DisplayLunarDagger = "RoR2/Base/LunarDagger/DisplayLunarDagger.prefab"; public static string mdlLunarDagger = "RoR2/Base/LunarDagger/mdlLunarDagger.fbx"; public static string PickupLunarDagger = "RoR2/Base/LunarDagger/PickupLunarDagger.prefab"; public static string DisplayBirdEye = "RoR2/Base/LunarSkillReplacements/DisplayBirdEye.prefab"; public static string mdlBirdEye = "RoR2/Base/LunarSkillReplacements/mdlBirdEye.fbx"; public static string PickupBirdEye = "RoR2/Base/LunarSkillReplacements/PickupBirdEye.prefab"; public static string LunarNeedleDamageEffect = "RoR2/Base/LunarSkillReplacements/LunarNeedleDamageEffect.prefab"; public static string LunarNeedleExplosionEffect = "RoR2/Base/LunarSkillReplacements/LunarNeedleExplosionEffect.prefab"; public static string LunarNeedleGhost = "RoR2/Base/LunarSkillReplacements/LunarNeedleGhost.prefab"; public static string LunarNeedleProjectile = "RoR2/Base/LunarSkillReplacements/LunarNeedleProjectile.prefab"; public static string MuzzleflashLunarNeedle = "RoR2/Base/LunarSkillReplacements/MuzzleflashLunarNeedle.prefab"; public static string DisplayBirdClaw = "RoR2/Base/LunarSkillReplacements/DisplayBirdClaw.prefab"; public static string LunarSecondaryRootEffect = "RoR2/Base/LunarSkillReplacements/LunarSecondaryRootEffect.prefab"; public static string mdlBirdClaw = "RoR2/Base/LunarSkillReplacements/mdlBirdClaw.fbx"; public static string PickupBirdClaw = "RoR2/Base/LunarSkillReplacements/PickupBirdClaw.prefab"; public static string ChargeLunarSecondary = "RoR2/Base/LunarSkillReplacements/ChargeLunarSecondary.prefab"; public static string LunarSecondaryExplosion = "RoR2/Base/LunarSkillReplacements/LunarSecondaryExplosion.prefab"; public static string LunarSecondaryGhost = "RoR2/Base/LunarSkillReplacements/LunarSecondaryGhost.prefab"; public static string LunarSecondaryProjectile = "RoR2/Base/LunarSkillReplacements/LunarSecondaryProjectile.prefab"; public static string MuzzleflashLunarSecondary = "RoR2/Base/LunarSkillReplacements/MuzzleflashLunarSecondary.prefab"; public static string DisplayBirdHeart = "RoR2/Base/LunarSkillReplacements/DisplayBirdHeart.prefab"; public static string DisplayBirdHeartFollower = "RoR2/Base/LunarSkillReplacements/DisplayBirdHeartFollower.prefab"; public static string LunarDetonatorEffect = "RoR2/Base/LunarSkillReplacements/LunarDetonatorEffect.prefab"; public static string LunarDetonatorPassiveAttachment = "RoR2/Base/LunarSkillReplacements/LunarDetonatorPassiveAttachment.prefab"; public static string mdlBirdHeart = "RoR2/Base/LunarSkillReplacements/mdlBirdHeart.fbx"; public static string PickupBirdHeart = "RoR2/Base/LunarSkillReplacements/PickupBirdHeart.prefab"; public static string LunarDetonatorConsume = "RoR2/Base/LunarSkillReplacements/LunarDetonatorConsume.prefab"; public static string LunarDetonatorOrbEffect = "RoR2/Base/LunarSkillReplacements/LunarDetonatorOrbEffect.prefab"; public static string CrowstormCoreVFX = "RoR2/Base/LunarSkillReplacements/CrowstormCoreVFX.prefab"; public static string DisplayBirdFoot = "RoR2/Base/LunarSkillReplacements/DisplayBirdFoot.prefab"; public static string mdlBirdFoot = "RoR2/Base/LunarSkillReplacements/mdlBirdFoot.fbx"; public static string PickupBirdFoot = "RoR2/Base/LunarSkillReplacements/PickupBirdFoot.prefab"; public static string OmniExplosionCrowstorm = "RoR2/Base/LunarSkillReplacements/OmniExplosionCrowstorm.prefab"; public static string DisplayBeads = "RoR2/Base/LunarTrinket/DisplayBeads.prefab"; public static string mdlBeads = "RoR2/Base/LunarTrinket/mdlBeads.fbx"; public static string mdlBeadsDisplay = "RoR2/Base/LunarTrinket/mdlBeadsDisplay.fbx"; public static string PickupBeads = "RoR2/Base/LunarTrinket/PickupBeads.prefab"; public static string DisplayMedkit = "RoR2/Base/Medkit/DisplayMedkit.prefab"; public static string mdlMedkit = "RoR2/Base/Medkit/mdlMedkit.fbx"; public static string MedkitHealEffect = "RoR2/Base/Medkit/MedkitHealEffect.prefab"; public static string PickupMedkit = "RoR2/Base/Medkit/PickupMedkit.prefab"; public static string DisplayMissileLauncher = "RoR2/Base/Missile/DisplayMissileLauncher.prefab"; public static string mdlMissileLauncher = "RoR2/Base/Missile/mdlMissileLauncher.fbx"; public static string missileVFX = "RoR2/Base/Missile/missile VFX.fbx"; public static string PickupMissileLauncher = "RoR2/Base/Missile/PickupMissileLauncher.prefab"; public static string DisplayMonstersOnShrineUse = "RoR2/Base/MonstersOnShrineUse/DisplayMonstersOnShrineUse.prefab"; public static string mdlMonstersOnShrineUse = "RoR2/Base/MonstersOnShrineUse/mdlMonstersOnShrineUse.fbx"; public static string MonstersOnShrineUseEncounter = "RoR2/Base/MonstersOnShrineUse/MonstersOnShrineUseEncounter.prefab"; public static string MonstersOnShrineUseSpawnEffect = "RoR2/Base/MonstersOnShrineUse/MonstersOnShrineUseSpawnEffect.prefab"; public static string PickupMonstersOnShrineUse = "RoR2/Base/MonstersOnShrineUse/PickupMonstersOnShrineUse.prefab"; public static string DisplayMushroom = "RoR2/Base/Mushroom/DisplayMushroom.prefab"; public static string mdlMushroom = "RoR2/Base/Mushroom/mdlMushroom.fbx"; public static string MushroomWard = "RoR2/Base/Mushroom/MushroomWard.prefab"; public static string PickupMushroom = "RoR2/Base/Mushroom/PickupMushroom.prefab"; public static string DiamondDamageBonusEffect = "RoR2/Base/NearbyDamageBonus/DiamondDamageBonusEffect.prefab"; public static string DisplayDiamond = "RoR2/Base/NearbyDamageBonus/DisplayDiamond.prefab"; public static string mdlDiamond = "RoR2/Base/NearbyDamageBonus/mdlDiamond.fbx"; public static string NearbyDamageBonusIndicator = "RoR2/Base/NearbyDamageBonus/NearbyDamageBonusIndicator.prefab"; public static string PickupDiamond = "RoR2/Base/NearbyDamageBonus/PickupDiamond.prefab"; public static string DevilOrbEffect = "RoR2/Base/NovaOnHeal/DevilOrbEffect.prefab"; public static string DisplayDevilHorns = "RoR2/Base/NovaOnHeal/DisplayDevilHorns.prefab"; public static string mdlDevilHorn = "RoR2/Base/NovaOnHeal/mdlDevilHorn.fbx"; public static string mdlDevilOrb = "RoR2/Base/NovaOnHeal/mdlDevilOrb.fbx"; public static string PickupDevilHorns = "RoR2/Base/NovaOnHeal/PickupDevilHorns.prefab"; public static string PoisonNovaProc = "RoR2/Base/NovaOnHeal/PoisonNovaProc.prefab"; public static string DisplayJellyGuts = "RoR2/Base/NovaOnLowHealth/DisplayJellyGuts.prefab"; public static string mdlJellyGuts = "RoR2/Base/NovaOnLowHealth/mdlJellyGuts.fbx"; public static string PickupJellyGuts = "RoR2/Base/NovaOnLowHealth/PickupJellyGuts.prefab"; public static string VagrantNovaItemBodyAttachment = "RoR2/Base/NovaOnLowHealth/VagrantNovaItemBodyAttachment.prefab"; public static string DisplayParentEgg = "RoR2/Base/ParentEgg/DisplayParentEgg.prefab"; public static string mdlParentEgg = "RoR2/Base/ParentEgg/mdlParentEgg.fbx"; public static string PickupParentEgg = "RoR2/Base/ParentEgg/PickupParentEgg.prefab"; public static string DisplayPearl = "RoR2/Base/Pearl/DisplayPearl.prefab"; public static string mdlPearl = "RoR2/Base/Pearl/mdlPearl.fbx"; public static string mdlPearlopt = "RoR2/Base/Pearl/mdlPearl_opt.fbx"; public static string PickupPearl = "RoR2/Base/Pearl/PickupPearl.prefab"; public static string DisplayShieldGenerator = "RoR2/Base/PersonalShield/DisplayShieldGenerator.prefab"; public static string mdlShieldGenerator = "RoR2/Base/PersonalShield/mdlShieldGenerator.fbx"; public static string PickupShieldGenerator = "RoR2/Base/PersonalShield/PickupShieldGenerator.prefab"; public static string DisplayStealthkit = "RoR2/Base/Phasing/DisplayStealthkit.prefab"; public static string mdlStealthkit = "RoR2/Base/Phasing/mdlStealthkit.fbx"; public static string PickupStealthkit = "RoR2/Base/Phasing/PickupStealthkit.prefab"; public static string ProcStealthkit = "RoR2/Base/Phasing/ProcStealthkit.prefab"; public static string DeskplantWard = "RoR2/Base/Plant/DeskplantWard.prefab"; public static string DisplayInterstellarDeskPlant = "RoR2/Base/Plant/DisplayInterstellarDeskPlant.prefab"; public static string InterstellarDeskPlant = "RoR2/Base/Plant/InterstellarDeskPlant.prefab"; public static string InterstellarDeskPlantGroundEffects = "RoR2/Base/Plant/InterstellarDeskPlantGroundEffects.prefab"; public static string mdlInterstellarDeskPlant = "RoR2/Base/Plant/mdlInterstellarDeskPlant.fbx"; public static string PickupInterstellarDeskPlant = "RoR2/Base/Plant/PickupInterstellarDeskPlant.prefab"; public static string DamageZoneWard = "RoR2/Base/RandomDamageZone/DamageZoneWard.prefab"; public static string DisplayRandomDamageZone = "RoR2/Base/RandomDamageZone/DisplayRandomDamageZone.prefab"; public static string mdlRandomDamageZone = "RoR2/Base/RandomDamageZone/mdlRandomDamageZone.fbx"; public static string PickupRandomDamageZone = "RoR2/Base/RandomDamageZone/PickupRandomDamageZone.prefab"; public static string RandomDamageBuffEffect = "RoR2/Base/RandomDamageZone/RandomDamageBuffEffect.prefab"; public static string DisplayCorpseflower = "RoR2/Base/RepeatHeal/DisplayCorpseflower.prefab"; public static string mdlCorpseflower = "RoR2/Base/RepeatHeal/mdlCorpseflower.fbx"; public static string PickupCorpseflower = "RoR2/Base/RepeatHeal/PickupCorpseflower.prefab"; public static string DisplayEmpathyChip = "RoR2/Base/RoboBallBuddy/DisplayEmpathyChip.prefab"; public static string mdlEmpathyChip = "RoR2/Base/RoboBallBuddy/mdlEmpathyChip.fbx"; public static string mdlEmpathyChipPickup = "RoR2/Base/RoboBallBuddy/mdlEmpathyChipPickup.fbx"; public static string PickupEmpathyChip = "RoR2/Base/RoboBallBuddy/PickupEmpathyChip.prefab"; public static string mdlRoboBallFriendGreenFoliage = "RoR2/Base/RoboBallBuddy/mdlRoboBallFriendGreenFoliage.fbx"; public static string RoboBallGreenBuddyBody = "RoR2/Base/RoboBallBuddy/RoboBallGreenBuddyBody.prefab"; public static string RoboBallGreenBuddyMaster = "RoR2/Base/RoboBallBuddy/RoboBallGreenBuddyMaster.prefab"; public static string mdlRoboBallFriendScarf = "RoR2/Base/RoboBallBuddy/mdlRoboBallFriendScarf.fbx"; public static string RoboBallRedBuddyBody = "RoR2/Base/RoboBallBuddy/RoboBallRedBuddyBody.prefab"; public static string RoboBallRedBuddyMaster = "RoR2/Base/RoboBallBuddy/RoboBallRedBuddyMaster.prefab"; public static string mdlScrapBox = "RoR2/Base/Scrap/mdlScrapBox.fbx"; public static string PickupScrap = "RoR2/Base/Scrap/PickupScrap.prefab"; public static string DisplayDoubleMag = "RoR2/Base/SecondarySkillMagazine/DisplayDoubleMag.prefab"; public static string mdlDoubleMagazine = "RoR2/Base/SecondarySkillMagazine/mdlDoubleMagazine.fbx"; public static string DisplaySeed = "RoR2/Base/Seed/DisplaySeed.prefab"; public static string mdlSeed = "RoR2/Base/Seed/mdlSeed.fbx"; public static string PickupSeed = "RoR2/Base/Seed/PickupSeed.prefab"; public static string DisplayShieldBug = "RoR2/Base/ShieldOnly/DisplayShieldBug.prefab"; public static string mdlShieldBug = "RoR2/Base/ShieldOnly/mdlShieldBug.fbx"; public static string mdlShieldBugAntenna = "RoR2/Base/ShieldOnly/mdlShieldBugAntenna.fbx"; public static string PickupShieldBug = "RoR2/Base/ShieldOnly/PickupShieldBug.prefab"; public static string DisplayShinyPearl = "RoR2/Base/ShinyPearl/DisplayShinyPearl.prefab"; public static string PickupShinyPearl = "RoR2/Base/ShinyPearl/PickupShinyPearl.prefab"; public static string DisplayTeslaCoil = "RoR2/Base/ShockNearby/DisplayTeslaCoil.prefab"; public static string mdlTesla = "RoR2/Base/ShockNearby/mdlTesla.fbx"; public static string PickupTeslaCoil = "RoR2/Base/ShockNearby/PickupTeslaCoil.prefab"; public static string TeslaFieldBuffEffect = "RoR2/Base/ShockNearby/TeslaFieldBuffEffect.prefab"; public static string TeslaOrbEffect = "RoR2/Base/ShockNearby/TeslaOrbEffect.prefab"; public static string DisplaySiphonOnLowHealth = "RoR2/Base/SiphonOnLowHealth/DisplaySiphonOnLowHealth.prefab"; public static string mdlSiphonOnLowHealth = "RoR2/Base/SiphonOnLowHealth/mdlSiphonOnLowHealth.fbx"; public static string PickupSiphonOnLowHealth = "RoR2/Base/SiphonOnLowHealth/PickupSiphonOnLowHealth.prefab"; public static string SiphonNearbyBodyAttachment = "RoR2/Base/SiphonOnLowHealth/SiphonNearbyBodyAttachment.prefab"; public static string SiphonOrbEffect = "RoR2/Base/SiphonOnLowHealth/SiphonOrbEffect.prefab"; public static string SiphonTetherHealing = "RoR2/Base/SiphonOnLowHealth/SiphonTetherHealing.prefab"; public static string SiphonTetherVFX = "RoR2/Base/SiphonOnLowHealth/SiphonTetherVFX.prefab"; public static string DisplayBauble = "RoR2/Base/SlowOnHit/DisplayBauble.prefab"; public static string DisplayBaubleEasyPlacement = "RoR2/Base/SlowOnHit/DisplayBaubleEasyPlacement.prefab"; public static string mdlBauble = "RoR2/Base/SlowOnHit/mdlBauble.fbx"; public static string PickupBauble = "RoR2/Base/SlowOnHit/PickupBauble.prefab"; public static string SlowDownTime = "RoR2/Base/SlowOnHit/SlowDownTime.prefab"; public static string TimeBubbleWard = "RoR2/Base/SlowOnHit/TimeBubbleWard.prefab"; public static string BucklerDefense = "RoR2/Base/SprintArmor/BucklerDefense.prefab"; public static string DisplayBuckler = "RoR2/Base/SprintArmor/DisplayBuckler.prefab"; public static string mdlBuckler = "RoR2/Base/SprintArmor/mdlBuckler.fbx"; public static string PickupBuckler = "RoR2/Base/SprintArmor/PickupBuckler.prefab"; public static string DisplaySoda = "RoR2/Base/SprintBonus/DisplaySoda.prefab"; public static string mdlSoda = "RoR2/Base/SprintBonus/mdlSoda.fbx"; public static string PickupSoda = "RoR2/Base/SprintBonus/PickupSoda.prefab"; public static string DisplayWhip = "RoR2/Base/SprintOutOfCombat/DisplayWhip.prefab"; public static string mdlWhip = "RoR2/Base/SprintOutOfCombat/mdlWhip.fbx"; public static string PickupWhip = "RoR2/Base/SprintOutOfCombat/PickupWhip.prefab"; public static string SprintActivate = "RoR2/Base/SprintOutOfCombat/SprintActivate.prefab"; public static string DisplayBrokenMask = "RoR2/Base/SprintWisp/DisplayBrokenMask.prefab"; public static string mdlBrokenMask = "RoR2/Base/SprintWisp/mdlBrokenMask.fbx"; public static string PickupBrokenMask = "RoR2/Base/SprintWisp/PickupBrokenMask.prefab"; public static string WispOrbEffect = "RoR2/Base/SprintWisp/WispOrbEffect.prefab"; public static string DisplaySquidTurret = "RoR2/Base/Squid/DisplaySquidTurret.prefab"; public static string mdlSquidPickup = "RoR2/Base/Squid/mdlSquid_Pickup.fbx"; public static string mdlSquidTurret = "RoR2/Base/Squid/mdlSquidTurret.fbx"; public static string mdlSquidTurretaimHorizontal = "RoR2/Base/Squid/mdlSquidTurret@aimHorizontal.FBX"; public static string mdlSquidTurretaimVertical = "RoR2/Base/Squid/mdlSquidTurret@aimVertical.FBX"; public static string mdlSquidTurretDeath = "RoR2/Base/Squid/mdlSquidTurret@Death.FBX"; public static string mdlSquidTurretFire = "RoR2/Base/Squid/mdlSquidTurret@Fire.FBX"; public static string mdlSquidTurretIdle = "RoR2/Base/Squid/mdlSquidTurret@Idle.FBX"; public static string mdlSquidTurretSpawn = "RoR2/Base/Squid/mdlSquidTurret@Spawn.FBX"; public static string mdlSquidTurretHeadfbx = "RoR2/Base/Squid/mdlSquidTurretHeadfbx.fbx"; public static string PickupSquidTurret = "RoR2/Base/Squid/PickupSquidTurret.prefab"; public static string MuzzleflashSquid = "RoR2/Base/Squid/MuzzleflashSquid.prefab"; public static string SquidOrbEffect = "RoR2/Base/Squid/SquidOrbEffect.prefab"; public static string SquidTurretHitEffect = "RoR2/Base/Squid/SquidTurretHitEffect.prefab"; public static string SquidTurretBody = "RoR2/Base/Squid/SquidTurretBody.prefab"; public static string SquidTurretMaster = "RoR2/Base/Squid/SquidTurretMaster.prefab"; public static string BehemothVFX = "RoR2/Base/StickyBomb/BehemothVFX.prefab"; public static string DisplayStickyBomb = "RoR2/Base/StickyBomb/DisplayStickyBomb.prefab"; public static string mdlStickybomb = "RoR2/Base/StickyBomb/mdlStickybomb.fbx"; public static string PickupStickyBomb = "RoR2/Base/StickyBomb/PickupStickyBomb.prefab"; public static string StickyBomb12 = "RoR2/Base/StickyBomb/StickyBomb.prefab"; public static string StickyBombGhost = "RoR2/Base/StickyBomb/StickyBombGhost.prefab"; public static string DisplayStunGrenade = "RoR2/Base/StunChanceOnHit/DisplayStunGrenade.prefab"; public static string ImpactStunGrenade = "RoR2/Base/StunChanceOnHit/ImpactStunGrenade.prefab"; public static string mdlStunGrenade = "RoR2/Base/StunChanceOnHit/mdlStunGrenade.fbx"; public static string PickupStunGrenade = "RoR2/Base/StunChanceOnHit/PickupStunGrenade.prefab"; public static string DisplaySyringe = "RoR2/Base/Syringe/DisplaySyringe.prefab"; public static string DisplaySyringeCluster = "RoR2/Base/Syringe/DisplaySyringeCluster.prefab"; public static string mdlSyringe = "RoR2/Base/Syringe/mdlSyringe.fbx"; public static string mdlSyringeCluster = "RoR2/Base/Syringe/mdlSyringeCluster.fbx"; public static string PickupSyringeCluster = "RoR2/Base/Syringe/PickupSyringeCluster.prefab"; public static string DisplayTalisman = "RoR2/Base/Talisman/DisplayTalisman.prefab"; public static string DisplayTalismanFollower = "RoR2/Base/Talisman/DisplayTalismanFollower.prefab"; public static string mdlTalisman = "RoR2/Base/Talisman/mdlTalisman.fbx"; public static string PickupTalisman = "RoR2/Base/Talisman/PickupTalisman.prefab"; public static string DisplayRazorwireCoiled = "RoR2/Base/Thorns/DisplayRazorwireCoiled.prefab"; public static string DisplayRazorwireLeft = "RoR2/Base/Thorns/DisplayRazorwireLeft.prefab"; public static string DisplayRazorwireLeftVoidSurvivor = "RoR2/Base/Thorns/DisplayRazorwireLeftVoidSurvivor.prefab"; public static string DisplayRazorwireRight = "RoR2/Base/Thorns/DisplayRazorwireRight.prefab"; public static string mdlRazorwire = "RoR2/Base/Thorns/mdlRazorwire.fbx"; public static string PickupRazorwire = "RoR2/Base/Thorns/PickupRazorwire.prefab"; public static string razorwirepickup = "RoR2/Base/Thorns/razorwire pickup.fbx"; public static string RazorwireOrbEffect = "RoR2/Base/Thorns/RazorwireOrbEffect.prefab"; public static string DisplayGoldHeart = "RoR2/Base/TitanGoldDuringTP/DisplayGoldHeart.prefab"; public static string mdlGoldHeart = "RoR2/Base/TitanGoldDuringTP/mdlGoldHeart.fbx"; public static string PickupGoldHeart = "RoR2/Base/TitanGoldDuringTP/PickupGoldHeart.prefab"; public static string DisplayToothMeshLarge = "RoR2/Base/Tooth/DisplayToothMeshLarge.prefab"; public static string DisplayToothMeshSmall1 = "RoR2/Base/Tooth/DisplayToothMeshSmall1.prefab"; public static string DisplayToothMeshSmall2 = "RoR2/Base/Tooth/DisplayToothMeshSmall2.prefab"; public static string DisplayToothNecklaceDecal = "RoR2/Base/Tooth/DisplayToothNecklaceDecal.prefab"; public static string HealPack = "RoR2/Base/Tooth/HealPack.prefab"; public static string HealthOrbFlash = "RoR2/Base/Tooth/HealthOrbFlash.prefab"; public static string mdlToothNecklace = "RoR2/Base/Tooth/mdlToothNecklace.fbx"; public static string mdlToothNecklaceDisplay = "RoR2/Base/Tooth/mdlToothNecklaceDisplay.fbx"; public static string PickupToothNecklace = "RoR2/Base/Tooth/PickupToothNecklace.prefab"; public static string DisplayGlowFlower = "RoR2/Base/TPHealingNova/DisplayGlowFlower.prefab"; public static string mdlGlowFlower = "RoR2/Base/TPHealingNova/mdlGlowFlower.fbx"; public static string PickupGlowFlower = "RoR2/Base/TPHealingNova/PickupGlowFlower.prefab"; public static string TeleporterHealNovaGenerator = "RoR2/Base/TPHealingNova/TeleporterHealNovaGenerator.prefab"; public static string ChargeTPHealingNova = "RoR2/Base/TPHealingNova/ChargeTPHealingNova.prefab"; public static string TeleporterHealNovaPulse = "RoR2/Base/TPHealingNova/TeleporterHealNovaPulse.prefab"; public static string DisplayKey = "RoR2/Base/TreasureCache/DisplayKey.prefab"; public static string Lockbox = "RoR2/Base/TreasureCache/Lockbox.prefab"; public static string mdlKey = "RoR2/Base/TreasureCache/mdlKey.fbx"; public static string mdlKeyLockbox = "RoR2/Base/TreasureCache/mdlKeyLockbox.fbx"; public static string PickupKey = "RoR2/Base/TreasureCache/PickupKey.prefab"; public static string DisplayAfterburner = "RoR2/Base/UtilitySkillMagazine/DisplayAfterburner.prefab"; public static string DisplayAfterburnerShoulderRing = "RoR2/Base/UtilitySkillMagazine/DisplayAfterburnerShoulderRing.prefab"; public static string mdlAfterburner = "RoR2/Base/UtilitySkillMagazine/mdlAfterburner.fbx"; public static string mdlAfterburnerShoulderRing = "RoR2/Base/UtilitySkillMagazine/mdlAfterburnerShoulderRing.fbx"; public static string PickupAfterburner = "RoR2/Base/UtilitySkillMagazine/PickupAfterburner.prefab"; public static string DisplayPauldron = "RoR2/Base/WarCryOnMultiKill/DisplayPauldron.prefab"; public static string mdlPauldron = "RoR2/Base/WarCryOnMultiKill/mdlPauldron.fbx"; public static string PickupPauldron = "RoR2/Base/WarCryOnMultiKill/PickupPauldron.prefab"; public static string WarCryEffect = "RoR2/Base/WarCryOnMultiKill/WarCryEffect.prefab"; public static string DisplayWarbanner = "RoR2/Base/WardOnLevel/DisplayWarbanner.prefab"; public static string mdlWarbanner = "RoR2/Base/WardOnLevel/mdlWarbanner.fbx"; public static string mdlWarbannerWrapped = "RoR2/Base/WardOnLevel/mdlWarbannerWrapped.fbx"; public static string PickupWarbanner = "RoR2/Base/WardOnLevel/PickupWarbanner.prefab"; public static string WarbannerBuffEffect = "RoR2/Base/WardOnLevel/WarbannerBuffEffect.prefab"; public static string WarbannerWard = "RoR2/Base/WardOnLevel/WarbannerWard.prefab"; public static string PickupLunarCoin = "RoR2/Base/LunarCoin/PickupLunarCoin.prefab"; public static string mdlQuestionMark = "RoR2/Base/Mystery/mdlQuestionMark.fbx"; public static string PickupMystery = "RoR2/Base/Mystery/PickupMystery.prefab"; public static string PlatformManager = "RoR2/Base/PlatformManager.prefab"; public static string ArenaDioramaDisplay = "RoR2/Base/arena/ArenaDioramaDisplay.prefab"; public static string ArenaRoundEncounter = "RoR2/Base/arena/ArenaRoundEncounter.prefab"; public static string arenaterrainflattened = "RoR2/Base/arena/arena terrain flattened.fbx"; public static string arenaterrain = "RoR2/Base/arena/arena terrain.fbx"; public static string arenaterrainopt = "RoR2/Base/arena/arena terrain_opt.fbx"; public static string Quad = "RoR2/Base/arena/Quad.FBX"; public static string spmArenaKelpTree = "RoR2/Base/arena/spmArenaKelpTree.spm"; public static string spmArenaKelpTreeopt = "RoR2/Base/arena/spmArenaKelpTree_opt.spm"; public static string ArenaCrabFoam = "RoR2/Base/arena/Arena_CrabFoam.prefab"; public static string ArenaHeatvent = "RoR2/Base/arena/Arena_Heatvent.prefab"; public static string ArenaNullifierGemProp = "RoR2/Base/arena/Arena_NullifierGemProp.prefab"; public static string ArenaNullifierMolt = "RoR2/Base/arena/Arena_NullifierMolt.prefab"; public static string ArenaRockFix = "RoR2/Base/arena/Arena_RockFix.prefab"; public static string ArenaSkybox = "RoR2/Base/arena/Arena_Skybox.prefab"; public static string ArenaStalagmiteBig = "RoR2/Base/arena/Arena_StalagmiteBig.prefab"; public static string ArenaStalagmiteHuge = "RoR2/Base/arena/Arena_StalagmiteHuge.prefab"; public static string ArenaTerrain = "RoR2/Base/arena/Arena_Terrain.prefab"; public static string ArenaBarrier = "RoR2/Base/arena/ArenaBarrier.prefab"; public static string ArenaFogDamager = "RoR2/Base/arena/ArenaFogDamager.prefab"; public static string ArenaMissionController = "RoR2/Base/arena/ArenaMissionController.prefab"; public static string BBBoulderMediumRound1 = "RoR2/Base/arena/BBBoulderMediumRound1.prefab"; public static string GPRockSlab = "RoR2/Base/arena/GPRockSlab.prefab"; public static string GPTerrainColumn = "RoR2/Base/arena/GPTerrainColumn.prefab"; public static string arenaprops = "RoR2/Base/arena/arena props.fbx"; public static string arenapropsopt = "RoR2/Base/arena/arena props_opt.fbx"; public static string ArenaEnemySpawnZone = "RoR2/Base/arena/ArenaEnemySpawnZone.prefab"; public static string mdlArtifactArrowhead = "RoR2/Base/artifactworld/mdlArtifactArrowhead.fbx"; public static string mdlArtifactBloodyCube = "RoR2/Base/artifactworld/mdlArtifactBloodyCube.fbx"; public static string mdlArtifactConcentricCircles = "RoR2/Base/artifactworld/mdlArtifactConcentricCircles.fbx"; public static string mdlArtifactCrown = "RoR2/Base/artifactworld/mdlArtifactCrown.fbx"; public static string mdlArtifactCubeAndCylinder = "RoR2/Base/artifactworld/mdlArtifactCubeAndCylinder.fbx"; public static string mdlArtifactDisease = "RoR2/Base/artifactworld/mdlArtifactDisease.fbx"; public static string mdlArtifactDoubleSphere = "RoR2/Base/artifactworld/mdlArtifactDoubleSphere.fbx"; public static string mdlArtifactDualArc = "RoR2/Base/artifactworld/mdlArtifactDualArc.fbx"; public static string mdlArtifactManyCube = "RoR2/Base/artifactworld/mdlArtifactManyCube.fbx"; public static string mdlArtifactNestedCube = "RoR2/Base/artifactworld/mdlArtifactNestedCube.fbx"; public static string mdlArtifactOpenBox = "RoR2/Base/artifactworld/mdlArtifactOpenBox.fbx"; public static string mdlArtifactShatteredSphere = "RoR2/Base/artifactworld/mdlArtifactShatteredSphere.fbx"; public static string mdlArtifactSimpleCube = "RoR2/Base/artifactworld/mdlArtifactSimpleCube.fbx"; public static string mdlArtifactSimpleTriangle = "RoR2/Base/artifactworld/mdlArtifactSimpleTriangle.fbx"; public static string mdlArtifactSpikeFloor = "RoR2/Base/artifactworld/mdlArtifactSpikeFloor.fbx"; public static string mdlArtifactSpikyBall = "RoR2/Base/artifactworld/mdlArtifactSpikyBall.fbx"; public static string mdlArtifactSpiral = "RoR2/Base/artifactworld/mdlArtifactSpiral.fbx"; public static string mdlArtifactSwarm = "RoR2/Base/artifactworld/mdlArtifactSwarm.fbx"; public static string mdlArtifactWorldDisplayCollisions = "RoR2/Base/artifactworld/mdlArtifactWorldDisplayCollisions.fbx"; public static string megateleporter = "RoR2/Base/artifactworld/mega teleporter.fbx"; public static string ArtifactworldDioramaDisplay = "RoR2/Base/artifactworld/ArtifactworldDioramaDisplay.prefab"; public static string artifactworldprops = "RoR2/Base/artifactworld/artifactworld props.fbx"; public static string AWBasicBridge1 = "RoR2/Base/artifactworld/AW Basic Bridge 1.prefab"; public static string AWBasicIsland1 = "RoR2/Base/artifactworld/AW Basic Island 1.prefab"; public static string AWBasicIsland2 = "RoR2/Base/artifactworld/AW Basic Island 2.prefab"; public static string AWIslandConnection1 = "RoR2/Base/artifactworld/AW Island Connection 1.prefab"; public static string AWIslandConnection2 = "RoR2/Base/artifactworld/AW Island Connection 2.prefab"; public static string AWIslandConnection3 = "RoR2/Base/artifactworld/AW Island Connection 3.prefab"; public static string AWIslandConnection4 = "RoR2/Base/artifactworld/AW Island Connection 4.prefab"; public static string AWIslandConnection5 = "RoR2/Base/artifactworld/AW Island Connection 5.prefab"; public static string AWIslandConnection6 = "RoR2/Base/artifactworld/AW Island Connection 6.prefab"; public static string AWStaircase = "RoR2/Base/artifactworld/AW Staircase.prefab"; public static string AWConnector = "RoR2/Base/artifactworld/AW_Connector.prefab"; public static string AWCube8x8x1 = "RoR2/Base/artifactworld/AW_Cube_8x8x1.prefab"; public static string AWCube05x05x05 = "RoR2/Base/artifactworld/AW_Cube0.5x0.5x0.5.prefab"; public static string AWCube1x05x1 = "RoR2/Base/artifactworld/AW_Cube1x0.5x1.prefab"; public static string AWCube1x1x1 = "RoR2/Base/artifactworld/AW_Cube1x1x1.prefab"; public static string AWCube1x2x1 = "RoR2/Base/artifactworld/AW_Cube1x2x1.prefab"; public static string AWCube1x3x1 = "RoR2/Base/artifactworld/AW_Cube1x3x1.prefab"; public static string AWCube2x3x1 = "RoR2/Base/artifactworld/AW_Cube2x3x1.prefab"; public static string AWCube4x4x1 = "RoR2/Base/artifactworld/AW_Cube4x4x1.prefab"; public static string AWGeyser = "RoR2/Base/artifactworld/AWGeyser.prefab"; public static string AWPot1 = "RoR2/Base/artifactworld/AWPot1.prefab"; public static string AWPotStacked = "RoR2/Base/artifactworld/AWPotStacked.prefab"; public static string ArtifactFormulaDisplayBottomHalf = "RoR2/Base/artifactworld/ArtifactFormulaDisplay (Bottom Half).prefab"; public static string ArtifactFormulaDisplayTopHalf = "RoR2/Base/artifactworld/ArtifactFormulaDisplay (Top Half).prefab"; public static string ArtifactFormulaDisplay = "RoR2/Base/artifactworld/ArtifactFormulaDisplay.prefab"; public static string ArtifactFormulaDisplayCarvedLeft = "RoR2/Base/artifactworld/ArtifactFormulaDisplayCarvedLeft.prefab"; public static string ArtifactFormulaDisplayCarvedRight = "RoR2/Base/artifactworld/ArtifactFormulaDisplayCarvedRight.prefab"; public static string ArtifactWorldSkybox = "RoR2/Base/artifactworld/ArtifactWorldSkybox.prefab"; public static string FlashTrialEffect = "RoR2/Base/artifactworld/FlashTrialEffect.prefab"; public static string mdlArtifactFormulaHolder = "RoR2/Base/artifactworld/mdlArtifactFormulaHolder.fbx"; public static string mdlArtifactFormulaHolderCarved = "RoR2/Base/artifactworld/mdlArtifactFormulaHolderCarved.fbx"; public static string spmAWGrass = "RoR2/Base/artifactworld/spmAWGrass.spm"; public static string spmAWGrassopt = "RoR2/Base/artifactworld/spmAWGrass_opt.spm"; public static string bazaarancients = "RoR2/Base/bazaar/bazaar ancients.fbx"; public static string LockedNullifier = "RoR2/Base/bazaar/LockedNullifier.prefab"; public static string LightInfectionSmallMesh = "RoR2/Base/bazaar/LightInfectionSmallMesh.prefab"; public static string bazaarterrain = "RoR2/Base/bazaar/bazaar terrain.fbx"; public static string bazaarterrainopt = "RoR2/Base/bazaar/bazaar terrain_opt.fbx"; public static string bazaarwater = "RoR2/Base/bazaar/bazaar water.fbx"; public static string BazaarWaterfallAdditive = "RoR2/Base/bazaar/BazaarWaterfall,Additive.prefab"; public static string BazaarWaterfallOpaque = "RoR2/Base/bazaar/BazaarWaterfall,Opaque.prefab"; public static string BazaarBarrel = "RoR2/Base/bazaar/Bazaar_Barrel.prefab"; public static string BazaarBoulder = "RoR2/Base/bazaar/Bazaar_Boulder.prefab"; public static string BazaarCaveCeilingLarge = "RoR2/Base/bazaar/Bazaar_CaveCeilingLarge.prefab"; public static string BazaarCaveInitialPath = "RoR2/Base/bazaar/Bazaar_CaveInitialPath.prefab"; public static string BazaarCaveMain = "RoR2/Base/bazaar/Bazaar_CaveMain.prefab"; public static string BazaarCaveWall = "RoR2/Base/bazaar/Bazaar_CaveWall.prefab"; public static string BazaarCaveWallCorner = "RoR2/Base/bazaar/Bazaar_CaveWallCorner.prefab"; public static string BazaarCrystal = "RoR2/Base/bazaar/Bazaar_Crystal.prefab"; public static string BazaarCrystalLight = "RoR2/Base/bazaar/Bazaar_CrystalLight.prefab"; public static string BazaarGenericIce = "RoR2/Base/bazaar/Bazaar_GenericIce.prefab"; public static string BazaarHangingCloth = "RoR2/Base/bazaar/Bazaar_HangingCloth.prefab"; public static string BazaarHangingLight = "RoR2/Base/bazaar/Bazaar_HangingLight.prefab"; public static string BazaarLight = "RoR2/Base/bazaar/Bazaar_Light.prefab"; public static string BazaarLooseRocks = "RoR2/Base/bazaar/Bazaar_LooseRocks.prefab"; public static string BazaarLunarChest = "RoR2/Base/bazaar/Bazaar_LunarChest.prefab"; public static string BazaarLunarInfectionLarge = "RoR2/Base/bazaar/Bazaar_LunarInfectionLarge.prefab"; public static string BazaarLunarInfectionSingle = "RoR2/Base/bazaar/Bazaar_LunarInfectionSingle.prefab"; public static string BazaarLunarInfectionSmall = "RoR2/Base/bazaar/Bazaar_LunarInfectionSmall.prefab"; public static string BazaarLunarTable = "RoR2/Base/bazaar/Bazaar_LunarTable.prefab"; public static string BazaarNewtStatue = "RoR2/Base/bazaar/Bazaar_NewtStatue.prefab"; public static string BazaarPebble = "RoR2/Base/bazaar/Bazaar_Pebble.prefab"; public static string BazaarPillarSkinnyShort = "RoR2/Base/bazaar/Bazaar_PillarSkinnyShort.prefab"; public static string BazaarPillarSkinnyTall = "RoR2/Base/bazaar/Bazaar_PillarSkinnyTall.prefab"; public static string BazaarPillarThickShort = "RoR2/Base/bazaar/Bazaar_PillarThickShort.prefab"; public static string BazaarPlatform = "RoR2/Base/bazaar/Bazaar_Platform.prefab"; public static string BazaarShatteredGlass = "RoR2/Base/bazaar/Bazaar_ShatteredGlass.prefab"; public static string BazaarStalagmiteClusterBig = "RoR2/Base/bazaar/Bazaar_StalagmiteClusterBig.prefab"; public static string BazaarStalagmiteClusterHuge = "RoR2/Base/bazaar/Bazaar_StalagmiteClusterHuge.prefab"; public static string BazaarVase = "RoR2/Base/bazaar/Bazaar_Vase.prefab"; public static string BazaarWoodColumn = "RoR2/Base/bazaar/Bazaar_WoodColumn.prefab"; public static string BazaarWoodColumnFullEntryway = "RoR2/Base/bazaar/Bazaar_WoodColumnFullEntryway.prefab"; public static string BazaarWoodColumnWithAngle = "RoR2/Base/bazaar/Bazaar_WoodColumnWithAngle.prefab"; public static string BazaarWoodFlooring = "RoR2/Base/bazaar/Bazaar_WoodFlooring.prefab"; public static string SeerStation = "RoR2/Base/bazaar/SeerStation.prefab"; public static string BabyFlower = "RoR2/Base/bazaar/BabyFlower.prefab"; public static string bazaarprops = "RoR2/Base/bazaar/bazaar props.fbx"; public static string bazaarpropsopt = "RoR2/Base/bazaar/bazaar props_opt.fbx"; public static string BazaarUpgrade = "RoR2/Base/bazaar/BazaarUpgrade.prefab"; public static string mdlBazaarBabyFlower = "RoR2/Base/bazaar/mdlBazaarBabyFlower.fbx"; public static string mdlBazaarBlueprintTable = "RoR2/Base/bazaar/mdlBazaarBlueprintTable.fbx"; public static string mdlBazaarBlueprintTableopt = "RoR2/Base/bazaar/mdlBazaarBlueprintTable_opt.fbx"; public static string mdlBazaarCauldron = "RoR2/Base/bazaar/mdlBazaarCauldron.fbx"; public static string mdlBazaarCauldronopt = "RoR2/Base/bazaar/mdlBazaarCauldron_opt.fbx"; public static string mdlBazaarLunarTable = "RoR2/Base/bazaar/mdlBazaarLunarTable.fbx"; public static string mdlBazaarLunarTableopt = "RoR2/Base/bazaar/mdlBazaarLunarTable_opt.fbx"; public static string mdlBazaarUpgrade = "RoR2/Base/bazaar/mdlBazaarUpgrade.fbx"; public static string mdlNewtStatue = "RoR2/Base/bazaar/mdlNewtStatue.fbx"; public static string mdlNewtStatueopt = "RoR2/Base/bazaar/mdlNewtStatue_opt.fbx"; public static string blackbeachPOIManager = "RoR2/Base/blackbeach/blackbeach_POIManager.prefab"; public static string BlackbeachDioramaDisplay = "RoR2/Base/blackbeach/BlackbeachDioramaDisplay.prefab"; public static string bbSimpleGrass = "RoR2/Base/blackbeach/bbSimpleGrass.fbx"; public static string bbSimpleGrassopt = "RoR2/Base/blackbeach/bbSimpleGrass_opt.fbx"; public static string bbSimpleGrassPrefab = "RoR2/Base/blackbeach/bbSimpleGrassPrefab.prefab"; public static string spmBbBigFern1 = "RoR2/Base/blackbeach/spmBbBigFern1.spm"; public static string spmBbBigFern1opt = "RoR2/Base/blackbeach/spmBbBigFern1_opt.spm"; public static string spmBbBigFern1Young = "RoR2/Base/blackbeach/spmBbBigFern1Young.spm"; public static string spmBbBigFern1Youngopt = "RoR2/Base/blackbeach/spmBbBigFern1Young_opt.spm"; public static string spmBbBirch = "RoR2/Base/blackbeach/spmBbBirch.spm"; public static string spmBbConif = "RoR2/Base/blackbeach/spmBbConif.prefab"; public static string spmBbConif7 = "RoR2/Base/blackbeach/spmBbConif.spm"; public static string spmBbConifopt = "RoR2/Base/blackbeach/spmBbConif_opt.prefab"; public static string spmBbConifopt10 = "RoR2/Base/blackbeach/spmBbConif_opt.spm"; public static string spmBbConifDistant = "RoR2/Base/blackbeach/spmBbConifDistant.prefab"; public static string spmBbConifYoung = "RoR2/Base/blackbeach/spmBbConifYoung.spm"; public static string spmBbDryBush = "RoR2/Base/blackbeach/spmBbDryBush.spm"; public static string spmBbDryBushopt = "RoR2/Base/blackbeach/spmBbDryBush_opt.spm"; public static string spmBbFern1Old = "RoR2/Base/blackbeach/spmBbFern1Old.spm"; public static string spmBbFern1Oldopt = "RoR2/Base/blackbeach/spmBbFern1Old_opt.spm"; public static string spmBbFern2 = "RoR2/Base/blackbeach/spmBbFern2.spm"; public static string spmBbFern2opt = "RoR2/Base/blackbeach/spmBbFern2_opt.spm"; public static string spmBbFern3 = "RoR2/Base/blackbeach/spmBbFern3.spm"; public static string spmBbFern3opt = "RoR2/Base/blackbeach/spmBbFern3_opt.spm"; public static string spmBbFern3Directional = "RoR2/Base/blackbeach/spmBbFern3Directional.spm"; public static string spmBbFern3Directionalopt = "RoR2/Base/blackbeach/spmBbFern3Directional_opt.spm"; public static string spmBbFoxtrot = "RoR2/Base/blackbeach/spmBbFoxtrot.spm"; public static string spmBbFoxtrotopt = "RoR2/Base/blackbeach/spmBbFoxtrot_opt.spm"; public static string spmBbGrass1 = "RoR2/Base/blackbeach/spmBbGrass1.spm"; public static string spmBbGrass1opt = "RoR2/Base/blackbeach/spmBbGrass1_opt.spm"; public static string spmBbIvy1 = "RoR2/Base/blackbeach/spmBbIvy1.spm"; public static string spmBbIvy1opt = "RoR2/Base/blackbeach/spmBbIvy1_opt.spm"; public static string spmBbVine1 = "RoR2/Base/blackbeach/spmBbVine1.spm"; public static string spmBbVine1opt = "RoR2/Base/blackbeach/spmBbVine1_opt.spm"; public static string bbDistantPillar = "RoR2/Base/blackbeach/bbDistantPillar.fbx"; public static string bbDistantPillaropt = "RoR2/Base/blackbeach/bbDistantPillar_opt.fbx"; public static string BBRockyTerrainBlender1 = "RoR2/Base/blackbeach/BBRockyTerrainBlender1.prefab"; public static string BBSkybox = "RoR2/Base/blackbeach/BBSkybox.prefab"; public static string blackbeachIslandBridge = "RoR2/Base/blackbeach/blackbeachIslandBridge.fbx"; public static string blackbeachIslandBridgeopt = "RoR2/Base/blackbeach/blackbeachIslandBridge_opt.fbx"; public static string blackbeachTerrain = "RoR2/Base/blackbeach/blackbeachTerrain.fbx"; public static string blackbeachTerrainopt = "RoR2/Base/blackbeach/blackbeachTerrain_opt.fbx"; public static string blackbeachTerrainFull = "RoR2/Base/blackbeach/blackbeachTerrainFull.fbx"; public static string blackbeachTerrainFullopt = "RoR2/Base/blackbeach/blackbeachTerrainFull_opt.fbx"; public static string mdlBBBoulderMediumFlat1 = "RoR2/Base/blackbeach/mdlBBBoulderMediumFlat1.fbx"; public static string mdlBBBoulderMediumFlat1opt = "RoR2/Base/blackbeach/mdlBBBoulderMediumFlat1_opt.fbx"; public static string mdlBBBoulderMediumRound1 = "RoR2/Base/blackbeach/mdlBBBoulderMediumRound1.fbx"; public static string mdlBBBoulderMediumRound1Collision = "RoR2/Base/blackbeach/mdlBBBoulderMediumRound1_Collision.fbx"; public static string mdlBBBoulderMediumRound1opt = "RoR2/Base/blackbeach/mdlBBBoulderMediumRound1_opt.fbx"; public static string mdlBBCliffLarge1 = "RoR2/Base/blackbeach/mdlBBCliffLarge1.fbx"; public static string mdlBBCliffLarge1opt = "RoR2/Base/blackbeach/mdlBBCliffLarge1_opt.fbx"; public static string mdlBBCliffLarge2 = "RoR2/Base/blackbeach/mdlBBCliffLarge2.fbx"; public static string mdlBBCliffLarge2opt = "RoR2/Base/blackbeach/mdlBBCliffLarge2_opt.fbx"; public static string mdlBBCliffMedium1 = "RoR2/Base/blackbeach/mdlBBCliffMedium1.fbx"; public static string PebbleBlackbeach = "RoR2/Base/blackbeach/PebbleBlackbeach.prefab"; public static string bbDistantPillar35 = "RoR2/Base/blackbeach/bbDistantPillar.prefab"; public static string blackbeachIslandBridge16 = "RoR2/Base/blackbeach/blackbeachIslandBridge.prefab"; public static string blackbeachTerrainFull6 = "RoR2/Base/blackbeach/blackbeachTerrainFull.prefab"; public static string mdlBBBoulderMediumFlat10 = "RoR2/Base/blackbeach/mdlBBBoulderMediumFlat1.prefab"; public static string mdlBBBoulderMediumRound124 = "RoR2/Base/blackbeach/mdlBBBoulderMediumRound1.prefab"; public static string mdlBBCliffLarge122 = "RoR2/Base/blackbeach/mdlBBCliffLarge1.prefab"; public static string mdlBBCliffLarge229 = "RoR2/Base/blackbeach/mdlBBCliffLarge2.prefab"; public static string mdlColossusHead119 = "RoR2/Base/blackbeach/mdlColossusHead1.prefab"; public static string bbDistantBridge = "RoR2/Base/blackbeach/bbDistantBridge.fbx"; public static string BbRuinArchLOD0 = "RoR2/Base/blackbeach/BbRuinArch_LOD0.fbx"; public static string BbRuinArchLOD0opt = "RoR2/Base/blackbeach/BbRuinArch_LOD0_opt.fbx"; public static string BbRuinBowl = "RoR2/Base/blackbeach/BbRuinBowl.prefab"; public static string BbRuinBowlLOD0 = "RoR2/Base/blackbeach/BbRuinBowl_LOD0.fbx"; public static string bbRuinColumn2 = "RoR2/Base/blackbeach/bbRuinColumn2.fbx"; public static string BbRuinGateLOD0 = "RoR2/Base/blackbeach/BbRuinGate_LOD0.fbx"; public static string BbRuinGateLOD0opt = "RoR2/Base/blackbeach/BbRuinGate_LOD0_opt.fbx"; public static string BbRuinMarkerLOD0 = "RoR2/Base/blackbeach/BbRuinMarker_LOD0.fbx"; public static string BbRuinPillar1LOD0 = "RoR2/Base/blackbeach/BbRuinPillar1_LOD0.fbx"; public static string BbRuinPillar1LOD0opt = "RoR2/Base/blackbeach/BbRuinPillar1_LOD0_opt.fbx"; public static string BbRuinStep1LOD0 = "RoR2/Base/blackbeach/BbRuinStep1_LOD0.fbx"; public static string BbRuinStep1LOD0opt = "RoR2/Base/blackbeach/BbRuinStep1_LOD0_opt.fbx"; public static string BbRuinTempleLOD0 = "RoR2/Base/blackbeach/BbRuinTemple_LOD0.fbx"; public static string BbRuinTile1LOD0 = "RoR2/Base/blackbeach/BbRuinTile1_LOD0.fbx"; public static string mdlColumn1Bridge = "RoR2/Base/blackbeach/mdlColumn1Bridge.fbx"; public static string BbRuinArchLOD026 = "RoR2/Base/blackbeach/BbRuinArch_LOD0.prefab"; public static string BbRuinGateDoor1LOD0 = "RoR2/Base/blackbeach/BbRuinGateDoor1_LOD0.prefab"; public static string BbRuinGateDoor2LOD0 = "RoR2/Base/blackbeach/BbRuinGateDoor2_LOD0.prefab"; public static string BbRuinGateOpen = "RoR2/Base/blackbeach/BbRuinGateOpen.prefab"; public static string BbRuinPillar1LOD021 = "RoR2/Base/blackbeach/BbRuinPillar1_LOD0.prefab"; public static string BbRuinStep1LOD08 = "RoR2/Base/blackbeach/BbRuinStep1_LOD0.prefab"; public static string blackbeach2POIManager = "RoR2/Base/blackbeach2/blackbeach2_POIManager.prefab"; public static string blackbeach2AirNode = "RoR2/Base/blackbeach2/blackbeach2AirNode.prefab"; public static string blackbeach2GroundNode = "RoR2/Base/blackbeach2/blackbeach2GroundNode.prefab"; public static string blackbeach2terrain = "RoR2/Base/blackbeach2/blackbeach2_terrain.fbx"; public static string blackBeachGuide = "RoR2/Base/blackbeach2/blackBeachGuide.fbx"; public static string Extras = "RoR2/Base/blackbeach2/Extras.fbx"; public static string blackbeach2terrain22 = "RoR2/Base/blackbeach2/blackbeach2_terrain.prefab"; public static string crystalworldprops = "RoR2/Base/crystalworld/crystalworld props.fbx"; public static string DCPPInTunnels = "RoR2/Base/dampcave/DCPPInTunnels.prefab"; public static string dampcavecoralprops = "RoR2/Base/dampcave/dampcave coral props.fbx"; public static string dampcavecoralpropsopt = "RoR2/Base/dampcave/dampcave coral props_opt.fbx"; public static string dampcaveheatventprops = "RoR2/Base/dampcave/dampcave heatvent props.fbx"; public static string dampcaveheatventpropsopt = "RoR2/Base/dampcave/dampcave heatvent props_opt.fbx"; public static string dampcaveskybox = "RoR2/Base/dampcave/dampcave skybox.fbx"; public static string dampcaveskyboxopt = "RoR2/Base/dampcave/dampcave skybox_opt.fbx"; public static string dampcaveterrain = "RoR2/Base/dampcave/dampcave terrain.fbx"; public static string dampcaveterrainopt = "RoR2/Base/dampcave/dampcave terrain_opt.fbx"; public static string spmDCGrass = "RoR2/Base/dampcave/spmDCGrass.spm"; public static string spmDCGrassopt = "RoR2/Base/dampcave/spmDCGrass_opt.spm"; public static string spmDCFern1 = "RoR2/Base/dampcave/spmDCFern1.spm"; public static string spmDCFern1opt = "RoR2/Base/dampcave/spmDCFern1_opt.spm"; public static string DCCoralPropMedium = "RoR2/Base/dampcave/DCCoralPropMedium.prefab"; public static string DCCoralPropMediumActive = "RoR2/Base/dampcave/DCCoralPropMediumActive.prefab"; public static string DCCrystalClusterVariant = "RoR2/Base/dampcave/DCCrystalCluster Variant.prefab"; public static string DCCrystalLarge = "RoR2/Base/dampcave/DCCrystalLarge.prefab"; public static string DCGiantRockSlab = "RoR2/Base/dampcave/DCGiantRockSlab.prefab"; public static string DCGiantStoneSlab1 = "RoR2/Base/dampcave/DCGiantStoneSlab1.prefab"; public static string DCGiantStoneSlab2 = "RoR2/Base/dampcave/DCGiantStoneSlab2.prefab"; public static string DCHeatvent1Off = "RoR2/Base/dampcave/DCHeatvent1Off.prefab"; public static string DCHeroBackWall = "RoR2/Base/dampcave/DCHeroBackWall.prefab"; public static string DCHeroCaveCeiling = "RoR2/Base/dampcave/DCHeroCaveCeiling.prefab"; public static string DCHeroCaveWalls = "RoR2/Base/dampcave/DCHeroCaveWalls.prefab"; public static string DCHeroFloor = "RoR2/Base/dampcave/DCHeroFloor.prefab"; public static string DCHeroPillarCluster = "RoR2/Base/dampcave/DCHeroPillarCluster.prefab"; public static string DCHeroSmallWall = "RoR2/Base/dampcave/DCHeroSmallWall.prefab"; public static string DCHeroSwitchbackWalls = "RoR2/Base/dampcave/DCHeroSwitchbackWalls.prefab"; public static string DCMetalSplatDecal = "RoR2/Base/dampcave/DCMetalSplatDecal.prefab"; public static string DCSkyboxWall1 = "RoR2/Base/dampcave/DCSkyboxWall1.prefab"; public static string DCStalagmiteClusterBig = "RoR2/Base/dampcave/DCStalagmiteClusterBig.prefab"; public static string DCTerrainBackwall = "RoR2/Base/dampcave/DCTerrainBackwall.prefab"; public static string DCTerrainColumn1 = "RoR2/Base/dampcave/DCTerrainColumn1.prefab"; public static string DCTerrainColumnThickShortVariant = "RoR2/Base/dampcave/DCTerrainColumnThickShort Variant.prefab"; public static string dampcavegiantchains = "RoR2/Base/dampcave/dampcave giant chains.fbx"; public static string dampcavegiantchainsopt = "RoR2/Base/dampcave/dampcave giant chains_opt.fbx"; public static string dampcavelemmyprops = "RoR2/Base/dampcave/dampcave lemmy props.fbx"; public static string dampcavelemmypropsopt = "RoR2/Base/dampcave/dampcave lemmy props_opt.fbx"; public static string DCGiantChainVariation1 = "RoR2/Base/dampcave/DCGiantChainVariation1.prefab"; public static string DCGiantChainVariation3 = "RoR2/Base/dampcave/DCGiantChainVariation3.prefab"; public static string DCGiantChainVariationWithCrystalVariant = "RoR2/Base/dampcave/DCGiantChainVariationWithCrystal Variant.prefab"; public static string DCHangingLightSmallLongChain = "RoR2/Base/dampcave/DCHangingLightSmallLongChain.prefab"; public static string DCHangingLightSmallShortChainVariant = "RoR2/Base/dampcave/DCHangingLightSmallShortChain Variant.prefab"; public static string DCRuinGate = "RoR2/Base/dampcave/DCRuinGate.prefab"; public static string DCRuinMarker = "RoR2/Base/dampcave/DCRuinMarker.prefab"; public static string DCRuinPillarCollision = "RoR2/Base/dampcave/DCRuinPillarCollision.prefab"; public static string DampcaveDioramaDisplay = "RoR2/Base/dampcavesimple/DampcaveDioramaDisplay.prefab"; public static string dampcavesimplePOIManager = "RoR2/Base/dampcavesimple/dampcavesimple_POIManager.prefab"; public static string DCPebble = "RoR2/Base/dampcavesimple/DCPebble.prefab"; public static string DCPebbleCrystal = "RoR2/Base/dampcavesimple/DCPebbleCrystal.prefab"; public static string DCBoulderMedium = "RoR2/Base/dampcavesimple/DCBoulderMedium.prefab"; public static string DCHeatvent1OnVariant = "RoR2/Base/dampcavesimple/DCHeatvent1On Variant.prefab"; public static string DCHeroPillar = "RoR2/Base/dampcavesimple/DCHeroPillar.prefab"; public static string DCSkyboxCeiling1 = "RoR2/Base/dampcavesimple/DCSkyboxCeiling1.prefab"; public static string DCStalagmiteSingle = "RoR2/Base/dampcavesimple/DCStalagmiteSingle.prefab"; public static string DCTerrainColumnSkinnyShort = "RoR2/Base/dampcavesimple/DCTerrainColumnSkinnyShort.prefab"; public static string DCTerrainColumnSkinnyTallVariant = "RoR2/Base/dampcavesimple/DCTerrainColumnSkinnyTall Variant.prefab"; public static string DCGiantChainStoppers = "RoR2/Base/dampcavesimple/DCGiantChainStoppers.prefab"; public static string DCGiantChainVariation2 = "RoR2/Base/dampcavesimple/DCGiantChainVariation2.prefab"; public static string WeatherEclipse = "RoR2/Base/eclipseworld/Weather, Eclipse.prefab"; public static string foggyswampPOIManager = "RoR2/Base/foggyswamp/foggyswamp_POIManager.prefab"; public static string FoggyswampDioramaDisplay = "RoR2/Base/foggyswamp/FoggyswampDioramaDisplay.prefab"; public static string FSPortalCard = "RoR2/Base/foggyswamp/FSPortalCard.prefab"; public static string foggyswampterrain = "RoR2/Base/foggyswamp/foggyswamp terrain.fbx"; public static string foggyswampterrainopt = "RoR2/Base/foggyswamp/foggyswamp terrain_opt.fbx"; public static string bbCloverfieldLarge = "RoR2/Base/foggyswamp/bbCloverfieldLarge.spm"; public static string bbCloverfieldLargeopt = "RoR2/Base/foggyswamp/bbCloverfieldLarge_opt.spm"; public static string bbCloverfieldLargeSparse = "RoR2/Base/foggyswamp/bbCloverfieldLargeSparse.spm"; public static string bbCloverfieldLargeSparseopt = "RoR2/Base/foggyswamp/bbCloverfieldLargeSparse_opt.spm"; public static string FSGlowingCloverfieldLargeSparse = "RoR2/Base/foggyswamp/FSGlowingCloverfieldLargeSparse.spm"; public static string FSGlowingCloverfieldLargeSparseopt = "RoR2/Base/foggyswamp/FSGlowingCloverfieldLargeSparse_opt.spm"; public static string spmDanglingMossCluster = "RoR2/Base/foggyswamp/spmDanglingMossCluster.spm"; public static string spmDanglingMossClusteropt = "RoR2/Base/foggyswamp/spmDanglingMossCluster_opt.spm"; public static string spmDanglingMossSpread = "RoR2/Base/foggyswamp/spmDanglingMossSpread.spm"; public static string spmDanglingMossSpreadopt = "RoR2/Base/foggyswamp/spmDanglingMossSpread_opt.spm"; public static string foggyswampbasetreeref = "RoR2/Base/foggyswamp/foggyswamp base tree ref.spm"; public static string spmFSFern3 = "RoR2/Base/foggyswamp/spmFSFern3.spm"; public static string spmFSFern3opt = "RoR2/Base/foggyswamp/spmFSFern3_opt.spm"; public static string spmFSFoxtrot = "RoR2/Base/foggyswamp/spmFSFoxtrot.spm"; public static string spmFSFoxtrotopt = "RoR2/Base/foggyswamp/spmFSFoxtrot_opt.spm"; public static string FStreetrunks = "RoR2/Base/foggyswamp/FS tree trunks.fbx"; public static string FStreetrunksopt = "RoR2/Base/foggyswamp/FS tree trunks_opt.fbx"; public static string FSBoulderMedium = "RoR2/Base/foggyswamp/FSBoulderMedium.prefab"; public static string FSPebble = "RoR2/Base/foggyswamp/FSPebble.prefab"; public static string FSTerrainBlender = "RoR2/Base/foggyswamp/FSTerrainBlender.prefab"; public static string FCTerrainCluster1 = "RoR2/Base/foggyswamp/FCTerrainCluster1.prefab"; public static string FCTerrainCluster2 = "RoR2/Base/foggyswamp/FCTerrainCluster2.prefab"; public static string FCTerrainCluster3 = "RoR2/Base/foggyswamp/FCTerrainCluster3.prefab"; public static string FSFloor = "RoR2/Base/foggyswamp/FSFloor.prefab"; public static string FSSkyboxFloor = "RoR2/Base/foggyswamp/FSSkyboxFloor.prefab"; public static string FSTreeTrunkEnormousCollision = "RoR2/Base/foggyswamp/FSTreeTrunkEnormousCollision.prefab"; public static string FSTreeTrunkEnormousNoCollisionSkybox = "RoR2/Base/foggyswamp/FSTreeTrunkEnormousNoCollisionSkybox.prefab"; public static string FSTreeTrunkLongCollision = "RoR2/Base/foggyswamp/FSTreeTrunkLongCollision.prefab"; public static string FSTreeTrunkLongNoCollision = "RoR2/Base/foggyswamp/FSTreeTrunkLongNoCollision.prefab"; public static string FSTreeTrunkMediumCollision = "RoR2/Base/foggyswamp/FSTreeTrunkMediumCollision.prefab"; public static string FSTreeTrunkStumpCollision = "RoR2/Base/foggyswamp/FSTreeTrunkStumpCollision.prefab"; public static string FSTreeTrunkStumpLarge = "RoR2/Base/foggyswamp/FSTreeTrunkStumpLarge.prefab"; public static string FSTreeTrunkStumpNoCollision = "RoR2/Base/foggyswamp/FSTreeTrunkStumpNoCollision.prefab"; public static string FSWallMeshHero = "RoR2/Base/foggyswamp/FSWallMeshHero.prefab"; public static string foggyswampprops = "RoR2/Base/foggyswamp/foggyswamp props.fbx"; public static string foggyswamppropsopt = "RoR2/Base/foggyswamp/foggyswamp props_opt.fbx"; public static string FSGiantRuinDoorCollision = "RoR2/Base/foggyswamp/FSGiantRuinDoorCollision.prefab"; public static string FSGiantRuinFrameCollision = "RoR2/Base/foggyswamp/FSGiantRuinFrameCollision.prefab"; public static string FSGiantRuinFrameDoorCollision = "RoR2/Base/foggyswamp/FSGiantRuinFrameDoorCollision.prefab"; public static string FSRuinPillarCollision = "RoR2/Base/foggyswamp/FSRuinPillarCollision.prefab"; public static string FSRuinRingCollision = "RoR2/Base/foggyswamp/FSRuinRingCollision.prefab"; public static string FSRuinRingNoCollision = "RoR2/Base/foggyswamp/FSRuinRingNoCollision.prefab"; public static string frozenwallPOIManager = "RoR2/Base/frozenwall/frozenwall_POIManager.prefab"; public static string FrozenwallDioramaDisplay = "RoR2/Base/frozenwall/FrozenwallDioramaDisplay.prefab"; public static string humancloth = "RoR2/Base/frozenwall/human cloth.fbx"; public static string humanclothopt = "RoR2/Base/frozenwall/human cloth_opt.fbx"; public static string humanfencing = "RoR2/Base/frozenwall/human fencing.fbx"; public static string humanfencingopt = "RoR2/Base/frozenwall/human fencing_opt.fbx"; public static string humanprops = "RoR2/Base/frozenwall/human props.fbx"; public static string humanpropsopt = "RoR2/Base/frozenwall/human props_opt.fbx"; public static string humanshippingcontainer = "RoR2/Base/frozenwall/human shippingcontainer.fbx"; public static string humanshippingcontaineropt = "RoR2/Base/frozenwall/human shippingcontainer_opt.fbx"; public static string HumanWalkPlank1 = "RoR2/Base/frozenwall/HumanWalkPlank1.prefab"; public static string HumanWalkPlankSet = "RoR2/Base/frozenwall/HumanWalkPlankSet.prefab"; public static string mdlHumanFan = "RoR2/Base/frozenwall/mdlHumanFan.fbx"; public static string mdlHumanSkeleton = "RoR2/Base/frozenwall/mdlHumanSkeleton.fbx"; public static string mdlHumanSkeletonopt = "RoR2/Base/frozenwall/mdlHumanSkeleton_opt.fbx"; public static string spmFWPine1 = "RoR2/Base/frozenwall/spmFWPine1.spm"; public static string spmFWPine1opt = "RoR2/Base/frozenwall/spmFWPine1_opt.spm"; public static string spmFWPine1prefab = "RoR2/Base/frozenwall/spmFWPine1_prefab.prefab"; public static string spmFWPine1prefabopt = "RoR2/Base/frozenwall/spmFWPine1_prefab_opt.prefab"; public static string frozenwallglacierchunks = "RoR2/Base/frozenwall/frozenwall glacier chunks.fbx"; public static string frozenwallglacierchunksopt = "RoR2/Base/frozenwall/frozenwall glacier chunks_opt.fbx"; public static string frozenwallterrainmerged = "RoR2/Base/frozenwall/frozenwall terrain merged.fbx"; public static string frozenwallterrainmergedopt = "RoR2/Base/frozenwall/frozenwall terrain merged_opt.fbx"; public static string frozenwallterrain = "RoR2/Base/frozenwall/frozenwall terrain.fbx"; public static string FWDistantCloud = "RoR2/Base/frozenwall/FWDistantCloud.prefab"; public static string mdlFWSkyboxModels = "RoR2/Base/frozenwall/mdlFWSkyboxModels.fbx"; public static string FWBarrier1Wide = "RoR2/Base/frozenwall/FW_Barrier1Wide.prefab"; public static string FWBarrier2Wide = "RoR2/Base/frozenwall/FW_Barrier2Wide.prefab"; public static string FWCanister = "RoR2/Base/frozenwall/FW_Canister.prefab"; public static string FWCellTowerSnowy = "RoR2/Base/frozenwall/FW_CellTowerSnowy.prefab"; public static string FWChainLink = "RoR2/Base/frozenwall/FW_ChainLink.prefab"; public static string FWChainLinkCrushed = "RoR2/Base/frozenwall/FW_ChainLinkCrushed.prefab"; public static string FWCrate = "RoR2/Base/frozenwall/FW_Crate.prefab"; public static string FWCrate2 = "RoR2/Base/frozenwall/FW_Crate2.prefab"; public static string FWDistantGlacier1 = "RoR2/Base/frozenwall/FW_DistantGlacier1.prefab"; public static string FWDistantGlacier2 = "RoR2/Base/frozenwall/FW_DistantGlacier2.prefab"; public static string FWFloatingIsland1 = "RoR2/Base/frozenwall/FW_FloatingIsland1.prefab"; public static string FWGlacierChunk1 = "RoR2/Base/frozenwall/FW_GlacierChunk1.prefab"; public static string FWGlacierChunk2 = "RoR2/Base/frozenwall/FW_GlacierChunk2.prefab"; public static string FWGlacierChunk3 = "RoR2/Base/frozenwall/FW_GlacierChunk3.prefab"; public static string FWGlacierClusterLarge = "RoR2/Base/frozenwall/FW_GlacierClusterLarge.prefab"; public static string FWGlacierClusterMedium = "RoR2/Base/frozenwall/FW_GlacierClusterMedium.prefab"; public static string FWGrass = "RoR2/Base/frozenwall/FW_Grass.prefab"; public static string FWGround = "RoR2/Base/frozenwall/FW_Ground.prefab"; public static string FWGroundStairs = "RoR2/Base/frozenwall/FW_GroundStairs.prefab"; public static string FWHumanFan = "RoR2/Base/frozenwall/FW_HumanFan.prefab"; public static string FWLight2Off = "RoR2/Base/frozenwall/FW_Light2Off.prefab"; public static string FWLight2On = "RoR2/Base/frozenwall/FW_Light2On.prefab"; public static string FWLight3 = "RoR2/Base/frozenwall/FW_Light3.prefab"; public static string FWPillar = "RoR2/Base/frozenwall/FW_Pillar.prefab"; public static string FWPillarSkinnyShort = "RoR2/Base/frozenwall/FW_PillarSkinnyShort.prefab"; public static string FWPillarSkinnyTall = "RoR2/Base/frozenwall/FW_PillarSkinnyTall.prefab"; public static string FWShippingContainer = "RoR2/Base/frozenwall/FW_ShippingContainer.prefab"; public static string FWShippingContainerCombined = "RoR2/Base/frozenwall/FW_ShippingContainerCombined.prefab"; public static string FWShippingContainerDoor = "RoR2/Base/frozenwall/FW_ShippingContainerDoor.prefab"; public static string FWShippingContainerDoorSnow = "RoR2/Base/frozenwall/FW_ShippingContainerDoorSnow.prefab"; public static string FWShippingContainerSnow = "RoR2/Base/frozenwall/FW_ShippingContainerSnow.prefab"; public static string FWSkeletonRagdoll = "RoR2/Base/frozenwall/FW_SkeletonRagdoll.prefab"; public static string FWSnowPile = "RoR2/Base/frozenwall/FW_SnowPile.prefab"; public static string FWStalactiteClusterBig = "RoR2/Base/frozenwall/FW_StalactiteClusterBig.prefab"; public static string FWStalactiteClusterHuge = "RoR2/Base/frozenwall/FW_StalactiteClusterHuge.prefab"; public static string FWStalactiteClusterSmall = "RoR2/Base/frozenwall/FW_StalactiteClusterSmall.prefab"; public static string FWStalagmiteClusterBig = "RoR2/Base/frozenwall/FW_StalagmiteClusterBig.prefab"; public static string FWStalagmiteClusterHuge = "RoR2/Base/frozenwall/FW_StalagmiteClusterHuge.prefab"; public static string FWStalagmiteClusterSmall = "RoR2/Base/frozenwall/FW_StalagmiteClusterSmall.prefab"; public static string FWTerrainGameplaySpace = "RoR2/Base/frozenwall/FW_TerrainGameplaySpace.prefab"; public static string FWWaterContainer = "RoR2/Base/frozenwall/FW_WaterContainer.prefab"; public static string ActivateGoldBeacon = "RoR2/Base/goldshores/ActivateGoldBeacon.prefab"; public static string GoldshoresBeacon = "RoR2/Base/goldshores/GoldshoresBeacon.prefab"; public static string GoldshoresDiorama = "RoR2/Base/goldshores/GoldshoresDiorama.prefab"; public static string GoldshoresArmorRemoval = "RoR2/Base/goldshores/GoldshoresArmorRemoval.prefab"; public static string GoldshoresMissionController = "RoR2/Base/goldshores/GoldshoresMissionController.prefab"; public static string CaveStalagmiteClusterBig = "RoR2/Base/goldshores/CaveStalagmiteClusterBig.prefab"; public static string goldshoresgoldnuggets = "RoR2/Base/goldshores/goldshores gold nuggets.fbx"; public static string goldshoresgoldnuggetsopt = "RoR2/Base/goldshores/goldshores gold nuggets_opt.fbx"; public static string goldshoresterrain = "RoR2/Base/goldshores/goldshores terrain.fbx"; public static string goldshoresterrainopt = "RoR2/Base/goldshores/goldshores terrain_opt.fbx"; public static string GoldNuggetLarge = "RoR2/Base/goldshores/GoldNuggetLarge.prefab"; public static string GoldNuggetMedium = "RoR2/Base/goldshores/GoldNuggetMedium.prefab"; public static string goldshoreMainIslandMesh = "RoR2/Base/goldshores/goldshoreMainIslandMesh.prefab"; public static string GoldshoresSkybox = "RoR2/Base/goldshores/GoldshoresSkybox.prefab"; public static string GoldshoresStalagmite = "RoR2/Base/goldshores/GoldshoresStalagmite.prefab"; public static string goldshoreSubmergedIslandMesh = "RoR2/Base/goldshores/goldshoreSubmergedIslandMesh.prefab"; public static string GoldshoreGolemStatue = "RoR2/Base/goldshores/GoldshoreGolemStatue.prefab"; public static string goldshoresobjective = "RoR2/Base/goldshores/goldshores objective.fbx"; public static string goldshoresobjectiveopt = "RoR2/Base/goldshores/goldshores objective_opt.fbx"; public static string GSRuinedRingNoCollisionVariant = "RoR2/Base/goldshores/GSRuinedRing, No Collision Variant.prefab"; public static string GSRuinedRingNoCollisionPartiallyRepairedVariant = "RoR2/Base/goldshores/GSRuinedRing, No Collision, Partially Repaired Variant.prefab"; public static string GSRuinedRing = "RoR2/Base/goldshores/GSRuinedRing.prefab"; public static string GSRuinedRingBroken = "RoR2/Base/goldshores/GSRuinedRingBroken.prefab"; public static string GSRuinedRingChains = "RoR2/Base/goldshores/GSRuinedRingChains.prefab"; public static string TitanGoldBossEncounter = "RoR2/Base/goldshores/TitanGoldBossEncounter.prefab"; public static string spmGPFlower = "RoR2/Base/golemplains/spmGPFlower.spm"; public static string spmGPFloweropt = "RoR2/Base/golemplains/spmGPFlower_opt.spm"; public static string spmGPGrass = "RoR2/Base/golemplains/spmGPGrass.spm"; public static string spmGPGrassopt = "RoR2/Base/golemplains/spmGPGrass_opt.spm"; public static string golemplainsPOIManager = "RoR2/Base/golemplains/golemplains_POIManager.prefab"; public static string GolemplainsDioramaDisplay = "RoR2/Base/golemplains/GolemplainsDioramaDisplay.prefab"; public static string HOLDERCards = "RoR2/Base/golemplains/HOLDER_ Cards.prefab"; public static string HOLDERCardsopt = "RoR2/Base/golemplains/HOLDER_ Cards_opt.prefab"; public static string golemplainsrocks = "RoR2/Base/golemplains/golemplains rocks.fbx"; public static string golemplainsrocksopt = "RoR2/Base/golemplains/golemplains rocks_opt.fbx"; public static string golemplainsterrain = "RoR2/Base/golemplains/golemplains terrain.fbx"; public static string golemplainsterrainopt = "RoR2/Base/golemplains/golemplains terrain_opt.fbx"; public static string GPTerrainBlender1 = "RoR2/Base/golemplains/GPTerrainBlender1.prefab"; public static string GPGiantRockSlab = "RoR2/Base/golemplains/GPGiantRockSlab.prefab"; public static string GPTerrainBackwall = "RoR2/Base/golemplains/GPTerrainBackwall.prefab"; public static string GPTerrainColumn23 = "RoR2/Base/golemplains/GPTerrainColumn.prefab"; public static string GPTerrainMesh = "RoR2/Base/golemplains/GPTerrainMesh.prefab"; public static string GPTerrainMeshDistant = "RoR2/Base/golemplains/GPTerrainMeshDistant.prefab"; public static string golemplainsprops = "RoR2/Base/golemplains/golemplains props.fbx"; public static string golemplainspropsopt = "RoR2/Base/golemplains/golemplains props_opt.fbx"; public static string GPRuinBlockFull = "RoR2/Base/golemplains/GPRuinBlockFull.prefab"; public static string GPRuinBlockHalf = "RoR2/Base/golemplains/GPRuinBlockHalf.prefab"; public static string GPRuinBlockQuarter = "RoR2/Base/golemplains/GPRuinBlockQuarter.prefab"; public static string GPRuinCircle1 = "RoR2/Base/golemplains/GPRuinCircle1.prefab"; public static string GPRuinedRing1 = "RoR2/Base/golemplains/GPRuinedRing1.prefab"; public static string GPRuinedRing1Half = "RoR2/Base/golemplains/GPRuinedRing1Half.prefab"; public static string GPRuinedRing1Shattered1 = "RoR2/Base/golemplains/GPRuinedRing1Shattered1.prefab"; public static string GPRuinedRing1Shattered2 = "RoR2/Base/golemplains/GPRuinedRing1Shattered2.prefab"; public static string GPRuinedRing1Shattered3 = "RoR2/Base/golemplains/GPRuinedRing1Shattered3.prefab"; public static string GPRuinedRing2 = "RoR2/Base/golemplains/GPRuinedRing2.prefab"; public static string GPRuinedRing2Half = "RoR2/Base/golemplains/GPRuinedRing2Half.prefab"; public static string GPRuinGrateBlock = "RoR2/Base/golemplains/GPRuinGrateBlock.prefab"; public static string WeatherGolemplains = "RoR2/Base/golemplains/Weather, Golemplains.prefab"; public static string WeatherGolemplainsopt = "RoR2/Base/golemplains/Weather, Golemplains_opt.prefab"; public static string golemplains2POIManager = "RoR2/Base/golemplains2/golemplains2_POIManager.prefab"; public static string golemplains2AirNode = "RoR2/Base/golemplains2/golemplains2AirNode.prefab"; public static string golemplains2GroundNode = "RoR2/Base/golemplains2/golemplains2GroundNode.prefab"; public static string Extras18 = "RoR2/Base/golemplains2/Extras.fbx"; public static string golemplains2terrain = "RoR2/Base/golemplains2/golemplains2_terrain.fbx"; public static string golemplains2terrainopt = "RoR2/Base/golemplains2/golemplains2_terrain_opt.fbx"; public static string GPBBBoulder = "RoR2/Base/golemplains2/GP_BBBoulder.prefab"; public static string GPRockSlab14 = "RoR2/Base/golemplains2/GP_RockSlab.prefab"; public static string GPTerrainDistant = "RoR2/Base/golemplains2/GP_Terrain Distant.prefab"; public static string GPTerrainNortheast = "RoR2/Base/golemplains2/GP_Terrain Northeast.prefab"; public static string GPTerrainNorthwest = "RoR2/Base/golemplains2/GP_Terrain Northwest.prefab"; public static string GPTerrainWest = "RoR2/Base/golemplains2/GP_Terrain West.prefab"; public static string GPTerrainColumn22 = "RoR2/Base/golemplains2/GP_TerrainColumn.prefab"; public static string GPTerrainMesh20 = "RoR2/Base/golemplains2/GP_TerrainMesh.prefab"; public static string GPWallNorth = "RoR2/Base/golemplains2/GP_Wall North.prefab"; public static string ClayGooOrbEffect = "RoR2/Base/goolake/ClayGooOrbEffect.prefab"; public static string ClayGooOrbImpact = "RoR2/Base/goolake/ClayGooOrbImpact.prefab"; public static string spmGlBamboo1 = "RoR2/Base/goolake/spmGlBamboo1.spm"; public static string spmGlBamboo1opt = "RoR2/Base/goolake/spmGlBamboo1_opt.spm"; public static string spmGlBamboo1Large = "RoR2/Base/goolake/spmGlBamboo1Large.spm"; public static string spmGlBamboo1Largeopt = "RoR2/Base/goolake/spmGlBamboo1Large_opt.spm"; public static string spmGlCactusBush1 = "RoR2/Base/goolake/spmGlCactusBush1.spm"; public static string spmGlCactusBush1opt = "RoR2/Base/goolake/spmGlCactusBush1_opt.spm"; public static string spmGlGrass1 = "RoR2/Base/goolake/spmGlGrass1.spm"; public static string spmGlGrass1opt = "RoR2/Base/goolake/spmGlGrass1_opt.spm"; public static string GLRuinGate = "RoR2/Base/goolake/GLRuinGate.prefab"; public static string GLUndergroundPPVolume = "RoR2/Base/goolake/GLUndergroundPPVolume.prefab"; public static string goolakePOIManager = "RoR2/Base/goolake/goolake_POIManager.prefab"; public static string GoolakeDioramaDisplay = "RoR2/Base/goolake/GoolakeDioramaDisplay.prefab"; public static string LandInGoo = "RoR2/Base/goolake/LandInGoo.prefab"; public static string LemurianBruiserMasterFire = "RoR2/Base/goolake/LemurianBruiserMasterFire.prefab"; public static string LemurianBruiserMasterIce = "RoR2/Base/goolake/LemurianBruiserMasterIce.prefab"; public static string goolakeriver = "RoR2/Base/goolake/goolake river.fbx"; public static string goolakeriveropt = "RoR2/Base/goolake/goolake river_opt.fbx"; public static string mdlGLSandDune1 = "RoR2/Base/goolake/mdlGLSandDune1.fbx"; public static string mdlGlWaterfall = "RoR2/Base/goolake/mdlGlWaterfall.fbx"; public static string mdlGooLake = "RoR2/Base/goolake/mdlGooLake.fbx"; public static string mdlGoolakeTerrain = "RoR2/Base/goolake/mdlGoolakeTerrain.fbx"; public static string mdlGoolakeTerrainopt = "RoR2/Base/goolake/mdlGoolakeTerrain_opt.fbx"; public static string GLAqueductCap = "RoR2/Base/goolake/GL_AqueductCap.prefab"; public static string GLAqueductFullLong = "RoR2/Base/goolake/GL_AqueductFullLong.prefab"; public static string GLAqueductPartial = "RoR2/Base/goolake/GL_AqueductPartial.prefab"; public static string GLBBBoulder = "RoR2/Base/goolake/GL_BBBoulder.prefab"; public static string GLEelSkeleton = "RoR2/Base/goolake/GL_EelSkeleton.prefab"; public static string GLGrass = "RoR2/Base/goolake/GL_Grass.prefab"; public static string GLPebble = "RoR2/Base/goolake/GL_Pebble.prefab"; public static string GLSandDune = "RoR2/Base/goolake/GL_SandDune.prefab"; public static string GLSandstonePillars = "RoR2/Base/goolake/GL_SandstonePillars.prefab"; public static string GLSmallBridge = "RoR2/Base/goolake/GL_SmallBridge.prefab"; public static string GLTerrain = "RoR2/Base/goolake/GL_Terrain.prefab"; public static string GLWaterfall = "RoR2/Base/goolake/GL_Waterfall.prefab"; public static string goolakedestructibles = "RoR2/Base/goolake/goolake destructibles.fbx"; public static string goolakedestructiblesopt = "RoR2/Base/goolake/goolake destructibles_opt.fbx"; public static string goolakepressureplates = "RoR2/Base/goolake/goolake pressure plates.fbx"; public static string mdlAqueductCap = "RoR2/Base/goolake/mdlAqueductCap.fbx"; public static string mdlAqueductCapopt = "RoR2/Base/goolake/mdlAqueductCap_opt.fbx"; public static string mdlGlAqueductFullLong = "RoR2/Base/goolake/mdlGlAqueductFullLong.fbx"; public static string mdlGlAqueductFullLongopt = "RoR2/Base/goolake/mdlGlAqueductFullLong_opt.fbx"; public static string mdlGlAqueductPartial = "RoR2/Base/goolake/mdlGlAqueductPartial.fbx"; public static string mdlGlAqueductPartialopt = "RoR2/Base/goolake/mdlGlAqueductPartial_opt.fbx"; public static string mdlGlDam = "RoR2/Base/goolake/mdlGlDam.fbx"; public static string mdlGlEelSkeleton = "RoR2/Base/goolake/mdlGlEelSkeleton.fbx"; public static string mdlGlEelSkeletonopt = "RoR2/Base/goolake/mdlGlEelSkeleton_opt.fbx"; public static string mdlGlFlag = "RoR2/Base/goolake/mdlGlFlag.fbx"; public static string mdlGlSandstonePillars = "RoR2/Base/goolake/mdlGlSandstonePillars.fbx"; public static string mdlGlSandstonePillarsopt = "RoR2/Base/goolake/mdlGlSandstonePillars_opt.fbx"; public static string mdlGlSmallBridge = "RoR2/Base/goolake/mdlGlSmallBridge.fbx"; public static string mdlGlSmallBridgeopt = "RoR2/Base/goolake/mdlGlSmallBridge_opt.fbx"; public static string GLPressurePlate = "RoR2/Base/goolake/GLPressurePlate.prefab"; public static string GLRuinStep = "RoR2/Base/goolake/GLRuinStep.prefab"; public static string GLRuinTile = "RoR2/Base/goolake/GLRuinTile.prefab"; public static string GLWarningFlag = "RoR2/Base/goolake/GLWarningFlag.prefab"; public static string ColonyShipJetFX = "RoR2/Base/intro/Colony Ship Jet FX.prefab"; public static string colonyship = "RoR2/Base/intro/colony ship.fbx"; public static string cutsceneintro = "RoR2/Base/intro/cutscene intro.fbx"; public static string ColonyShipVariant = "RoR2/Base/intro/Colony Ship Variant.prefab"; public static string CutsceneSpaceSkybox = "RoR2/Base/intro/Cutscene Space Skybox.prefab"; public static string CutscenePlanet = "RoR2/Base/intro/CutscenePlanet.prefab"; public static string CutscenePlanetBackdrop = "RoR2/Base/intro/CutscenePlanetBackdrop.prefab"; public static string LimboDioramaDisplay = "RoR2/Base/limbo/LimboDioramaDisplay.prefab"; public static string LimboTotem = "RoR2/Base/limbo/LimboTotem.prefab"; public static string ScavLunarEncounter = "RoR2/Base/limbo/ScavLunarEncounter.prefab"; public static string HANDTeaser = "RoR2/Base/lobby/HANDTeaser.prefab"; public static string logbookPPLocal = "RoR2/Base/logbook/logbookPPLocal.prefab"; public static string Deadmando1 = "RoR2/Base/moon/Deadmando1.prefab"; public static string Deadmando2 = "RoR2/Base/moon/Deadmando2.prefab"; public static string Deadmando3 = "RoR2/Base/moon/Deadmando3.prefab"; public static string Deadmando4 = "RoR2/Base/moon/Deadmando4.prefab"; public static string Deadmando5 = "RoR2/Base/moon/Deadmando5.prefab"; public static string deadmandos = "RoR2/Base/moon/deadmandos.fbx"; public static string deadmandosopt = "RoR2/Base/moon/deadmandos_opt.fbx"; public static string MoonExitArenaOrb = "RoR2/Base/moon/MoonExitArenaOrb.prefab"; public static string MoonExitArenaOrbEffect = "RoR2/Base/moon/MoonExitArenaOrbEffect.prefab"; public static string AbyssSpike = "RoR2/Base/moon/AbyssSpike.prefab"; public static string MoonPortalCardLight = "RoR2/Base/moon/MoonPortalCard, Light.prefab"; public static string BrotherAxe = "RoR2/Base/moon/BrotherAxe.prefab"; public static string BrotherHalberd = "RoR2/Base/moon/BrotherHalberd.prefab"; public static string BrotherHammer = "RoR2/Base/moon/BrotherHammer.prefab"; public static string BrotherSword = "RoR2/Base/moon/BrotherSword.prefab"; public static string MoonPillarBusted1 = "RoR2/Base/moon/Moon_Pillar_Busted1.prefab"; public static string MoonPillarBusted2 = "RoR2/Base/moon/Moon_Pillar_Busted2.prefab"; public static string MoonPillarBusted3 = "RoR2/Base/moon/Moon_Pillar_Busted3.prefab"; public static string WeaponRackSingle = "RoR2/Base/moon/WeaponRackSingle.prefab"; public static string WeaponRackWide = "RoR2/Base/moon/WeaponRackWide.prefab"; public static string bustedmoonpillars = "RoR2/Base/moon/busted_moon_pillars.fbx"; public static string lunararenaweapons = "RoR2/Base/moon/lunar_arena_weapons.fbx"; public static string lunararenaweaponsopt = "RoR2/Base/moon/lunar_arena_weapons_opt.fbx"; public static string mdlLunarBloodArena = "RoR2/Base/moon/mdlLunarBloodArena.fbx"; public static string mdlLunarBloodArenaopt = "RoR2/Base/moon/mdlLunarBloodArena_opt.fbx"; public static string mdlLunarBloodArenaRoof = "RoR2/Base/moon/mdlLunarBloodArenaRoof.fbx"; public static string mdlBazaarLightLarge = "RoR2/Base/moon/mdlBazaarLightLarge.fbx"; public static string mdlChainConnectorPlatform = "RoR2/Base/moon/mdlChain_Connector_Platform.fbx"; public static string mdlChainConnectorPlatformopt = "RoR2/Base/moon/mdlChain_Connector_Platform_opt.fbx"; public static string mdlGreenhouseChain = "RoR2/Base/moon/mdlGreenhouseChain.fbx"; public static string mdlGreenhouseChainopt = "RoR2/Base/moon/mdlGreenhouseChain_opt.fbx"; public static string mdlGreenhouseChainAttachUp = "RoR2/Base/moon/mdlGreenhouseChainAttachUp.fbx"; public static string mdlGreenhouseChainEnd = "RoR2/Base/moon/mdlGreenhouseChainEnd.fbx"; public static string mdlGreenhouseChainFallen = "RoR2/Base/moon/mdlGreenhouseChainFallen.fbx"; public static string mdlGreenhouseChainHang = "RoR2/Base/moon/mdlGreenhouseChainHang.fbx"; public static string mdlGreenhouseChainShorter = "RoR2/Base/moon/mdlGreenhouseChainShorter.fbx"; public static string mdlGreenhouseChainStraightHangLong = "RoR2/Base/moon/mdlGreenhouseChainStraightHangLong.fbx"; public static string mdlGreenhouseChainStraightHangShort = "RoR2/Base/moon/mdlGreenhouseChainStraightHangShort.fbx"; public static string mdlGreenhouseChainThinHang = "RoR2/Base/moon/mdlGreenhouseChainThinHang.fbx"; public static string mdlGreenhousePots = "RoR2/Base/moon/mdlGreenhousePots.fbx"; public static string mdlGreenhousePotsopt = "RoR2/Base/moon/mdlGreenhousePots_opt.fbx"; public static string mdlMoonWallGodray = "RoR2/Base/moon/mdlMoon_Wall_Godray.fbx"; public static string MoonPotWide = "RoR2/Base/moon/MoonPotWide.prefab"; public static string ChainConnectorPlatform = "RoR2/Base/moon/Chain_Connector_Platform.prefab"; public static string GreenhouseChain = "RoR2/Base/moon/GreenhouseChain.prefab"; public static string GreenhouseChainAttachUp = "RoR2/Base/moon/GreenhouseChainAttachUp.prefab"; public static string GreenhouseChainEnd = "RoR2/Base/moon/GreenhouseChainEnd.prefab"; public static string GreenhouseChainFallen = "RoR2/Base/moon/GreenhouseChainFallen.prefab"; public static string GreenhouseChainShorter = "RoR2/Base/moon/GreenhouseChainShorter.prefab"; public static string GreenhouseChainStraightHangLong = "RoR2/Base/moon/GreenhouseChainStraightHangLong.prefab"; public static string GreenhouseChainStraightHangShort = "RoR2/Base/moon/GreenhouseChainStraightHangShort.prefab"; public static string GreenhouseChainStraightHangShortBlock = "RoR2/Base/moon/GreenhouseChainStraightHangShortBlock.prefab"; public static string mdlGreenhouseChainAttachUpVariant = "RoR2/Base/moon/mdlGreenhouseChainAttachUp Variant.prefab"; public static string mdlGreenhouseChainEndVariant = "RoR2/Base/moon/mdlGreenhouseChainEnd Variant.prefab"; public static string mdlGreenhouseChainShorterVariant = "RoR2/Base/moon/mdlGreenhouseChainShorter Variant.prefab"; public static string TallMoonPot = "RoR2/Base/moon/TallMoonPot.prefab"; public static string TallMoonPotShards1 = "RoR2/Base/moon/TallMoonPotShards1.prefab"; public static string TallMoonPotShards2 = "RoR2/Base/moon/TallMoonPotShards2.prefab"; public static string WideMoonPotShards1 = "RoR2/Base/moon/WideMoonPotShards1.prefab"; public static string WideMoonPotShards2 = "RoR2/Base/moon/WideMoonPotShards2.prefab"; public static string Moon = "RoR2/Base/moon/Moon.fbx"; public static string HGQ1Bridge = "RoR2/Base/moon/HG_Q1_Bridge.fbx"; public static string HGQ1InnerRingTerrainMain = "RoR2/Base/moon/HG_Q1_InnerRing_Terrain_Main.fbx"; public static string HGQ1InnerRingTerrainMainopt = "RoR2/Base/moon/HG_Q1_InnerRing_Terrain_Main_opt.fbx"; public static string HGQ1InnerRingTerrainSmall = "RoR2/Base/moon/HG_Q1_InnerRing_Terrain_Small.fbx"; public static string HGQ1InnerRingTerrainSmallopt = "RoR2/Base/moon/HG_Q1_InnerRing_Terrain_Small_opt.fbx"; public static string HGQ1MiddleRingTerrain001 = "RoR2/Base/moon/HG_Q1_MiddleRing_Terrain_001.fbx"; public static string HGQ1MiddleRingTerrain002 = "RoR2/Base/moon/HG_Q1_MiddleRing_Terrain_002.fbx"; public static string HGQ1MiddleRingTerrain002opt = "RoR2/Base/moon/HG_Q1_MiddleRing_Terrain_002_opt.fbx"; public static string HGQ1OuterRingCave = "RoR2/Base/moon/HG_Q1_OuterRing_Cave.fbx"; public static string HGQ1OuterRingCaveopt = "RoR2/Base/moon/HG_Q1_OuterRing_Cave_opt.fbx"; public static string HGQ1OuterRingTerrain001 = "RoR2/Base/moon/HG_Q1_OuterRing_Terrain_001.fbx"; public static string HGQ1OuterRingTerrain001opt = "RoR2/Base/moon/HG_Q1_OuterRing_Terrain_001_opt.fbx"; public static string Q1Bridge = "RoR2/Base/moon/Q1_Bridge.fbx"; public static string Q1InnerRingTerrainMain = "RoR2/Base/moon/Q1_InnerRing_Terrain_Main.fbx"; public static string Q1InnerRingTerrainSmall = "RoR2/Base/moon/Q1_InnerRing_Terrain_Small.fbx"; public static string Q1MiddleRingTerrain001 = "RoR2/Base/moon/Q1_MiddleRing_Terrain_001.fbx"; public static string Q1MiddleRingTerrain002 = "RoR2/Base/moon/Q1_MiddleRing_Terrain_002.fbx"; public static string Q1OuterRingCave = "RoR2/Base/moon/Q1_OuterRing_Cave.fbx"; public static string Q1OuterRingTerrain001 = "RoR2/Base/moon/Q1_OuterRing_Terrain_001.fbx"; public static string Q1Tower = "RoR2/Base/moon/Q1_Tower.fbx"; public static string HGQ2InnerRingTerrain001 = "RoR2/Base/moon/HG_Q2_InnerRing_Terrain_001.fbx"; public static string HGQ2InnerRingTerrain001opt = "RoR2/Base/moon/HG_Q2_InnerRing_Terrain_001_opt.fbx"; public static string HGQ2InnerRingTerrain002 = "RoR2/Base/moon/HG_Q2_InnerRing_Terrain_002.fbx"; public static string HGQ2InnerRingTerrain002opt = "RoR2/Base/moon/HG_Q2_InnerRing_Terrain_002_opt.fbx"; public static string HGQ2MiddleRingCurvedPath001 = "RoR2/Base/moon/HG_Q2_MiddleRing_CurvedPath_001.fbx"; public static string HGQ2MiddleRingTerrain001 = "RoR2/Base/moon/HG_Q2_MiddleRing_Terrain_001.fbx"; public static string HGQ2MiddleRingTerrain001opt = "RoR2/Base/moon/HG_Q2_MiddleRing_Terrain_001_opt.fbx"; public static string HGQ2MiddleRingTerrain002 = "RoR2/Base/moon/HG_Q2_MiddleRing_Terrain_002.fbx"; public static string HGQ2MiddleRingTerrain003 = "RoR2/Base/moon/HG_Q2_MiddleRing_Terrain_003.fbx"; public static string HGQ2OuterRingPillar001 = "RoR2/Base/moon/HG_Q2_OuterRing_Pillar_001.fbx"; public static string HGQ2OuterRingTerrain001 = "RoR2/Base/moon/HG_Q2_OuterRing_Terrain_001.fbx"; public static string HGQ2OuterRingTerrain001opt = "RoR2/Base/moon/HG_Q2_OuterRing_Terrain_001_opt.fbx"; public static string HGQ2OuterRingTerrain002 = "RoR2/Base/moon/HG_Q2_OuterRing_Terrain_002.fbx"; public static string HGQ2OuterRingTerrain002opt = "RoR2/Base/moon/HG_Q2_OuterRing_Terrain_002_opt.fbx"; public static string Q2InnerRingTerrain001 = "RoR2/Base/moon/Q2_InnerRing_Terrain_001.fbx"; public static string Q2InnerRingTerrain002 = "RoR2/Base/moon/Q2_InnerRing_Terrain_002.fbx"; public static string Q2MiddleRingCurvedPath001 = "RoR2/Base/moon/Q2_MiddleRing_CurvedPath_001.fbx"; public static string Q2MiddleRingTerrain001 = "RoR2/Base/moon/Q2_MiddleRing_Terrain_001.fbx"; public static string Q2MiddleRingTerrain002 = "RoR2/Base/moon/Q2_MiddleRing_Terrain_002.fbx"; public static string Q2MiddleRingTerrain003 = "RoR2/Base/moon/Q2_MiddleRing_Terrain_003.fbx"; public static string Q2OuterRingPillar001 = "RoR2/Base/moon/Q2_OuterRing_Pillar_001.fbx"; public static string Q2OuterRingTerrain001 = "RoR2/Base/moon/Q2_OuterRing_Terrain_001.fbx"; public static string Q2OuterRingTerrain002 = "RoR2/Base/moon/Q2_OuterRing_Terrain_002.fbx"; public static string HGQ3InnerRingTerrain001 = "RoR2/Base/moon/HG_Q3_InnerRing_Terrain_001.fbx"; public static string HGQ3InnerRingTerrain001opt = "RoR2/Base/moon/HG_Q3_InnerRing_Terrain_001_opt.fbx"; public static string HGQ3InnerRingTerrain002 = "RoR2/Base/moon/HG_Q3_InnerRing_Terrain_002.fbx"; public static string HGQ3InnerRingTerrain002opt = "RoR2/Base/moon/HG_Q3_InnerRing_Terrain_002_opt.fbx"; public static string HGQ3InnerRingTerrain003 = "RoR2/Base/moon/HG_Q3_InnerRing_Terrain_003.fbx"; public static string HGQ3InnerRingTerrain003opt = "RoR2/Base/moon/HG_Q3_InnerRing_Terrain_003_opt.fbx"; public static string HGQ3MiddleRingTerrain001 = "RoR2/Base/moon/HG_Q3_MiddleRing_Terrain_001.fbx"; public static string HGQ3MiddleRingTerrain001opt = "RoR2/Base/moon/HG_Q3_MiddleRing_Terrain_001_opt.fbx"; public static string HGQ3MiddleRingTerrain002 = "RoR2/Base/moon/HG_Q3_MiddleRing_Terrain_002.fbx"; public static string HGQ3MiddleRingTerrain002opt = "RoR2/Base/moon/HG_Q3_MiddleRing_Terrain_002_opt.fbx"; public static string HGQ3OuterRingTerrain001 = "RoR2/Base/moon/HG_Q3_OuterRing_Terrain_001.fbx"; public static string HGQ3OuterRingTerrain001opt = "RoR2/Base/moon/HG_Q3_OuterRing_Terrain_001_opt.fbx"; public static string HGQ3Rock001 = "RoR2/Base/moon/HG_Q3_Rock_001.fbx"; public static string Q3InnerRingTerrain001 = "RoR2/Base/moon/Q3_InnerRing_Terrain_001.fbx"; public static string Q3InnerRingTerrain002 = "RoR2/Base/moon/Q3_InnerRing_Terrain_002.fbx"; public static string Q3InnerRingTerrain003 = "RoR2/Base/moon/Q3_InnerRing_Terrain_003.fbx"; public static string Q3MiddleRingTerrain001 = "RoR2/Base/moon/Q3_MiddleRing_Terrain_001.fbx"; public static string Q3MiddleRingTerrain002 = "RoR2/Base/moon/Q3_MiddleRing_Terrain_002.fbx"; public static string Q3OuterRingTerrain001 = "RoR2/Base/moon/Q3_OuterRing_Terrain_001.fbx"; public static string Q3Pillar001 = "RoR2/Base/moon/Q3_Pillar_001.fbx"; public static string Q3Pillar002 = "RoR2/Base/moon/Q3_Pillar_002.fbx"; public static string Q3Rock001 = "RoR2/Base/moon/Q3_Rock_001.fbx"; public static string HGQ4InnerRingTerrain001 = "RoR2/Base/moon/HG_Q4_InnerRing_Terrain_001.fbx"; public static string HGQ4InnerRingTerrain002 = "RoR2/Base/moon/HG_Q4_InnerRing_Terrain_002.fbx"; public static string HGQ4InnerRingTerrain003 = "RoR2/Base/moon/HG_Q4_InnerRing_Terrain_003.fbx"; public static string HGQ4InnerRingTerrain004 = "RoR2/Base/moon/HG_Q4_InnerRing_Terrain_004.fbx"; public static string HGQ4MiddleRingTerrain001 = "RoR2/Base/moon/HG_Q4_MiddleRing_Terrain_001.fbx"; public static string HGQ4MiddleRingTerrain002 = "RoR2/Base/moon/HG_Q4_MiddleRing_Terrain_002.fbx"; public static string HGQ4MiddleRingTerrain003 = "RoR2/Base/moon/HG_Q4_MiddleRing_Terrain_003.fbx"; public static string HGQ4OuterRingCave001 = "RoR2/Base/moon/HG_Q4_OuterRing_Cave_001.fbx"; public static string Q4InnerRingTerrain001 = "RoR2/Base/moon/Q4_InnerRing_Terrain_001.fbx"; public static string Q4InnerRingTerrain002 = "RoR2/Base/moon/Q4_InnerRing_Terrain_002.fbx"; public static string Q4InnerRingTerrain003 = "RoR2/Base/moon/Q4_InnerRing_Terrain_003.fbx"; public static string Q4InnerRingTerrain004 = "RoR2/Base/moon/Q4_InnerRing_Terrain_004.fbx"; public static string Q4MiddleRingTerrain001 = "RoR2/Base/moon/Q4_MiddleRing_Terrain_001.fbx"; public static string Q4MiddleRingTerrain002 = "RoR2/Base/moon/Q4_MiddleRing_Terrain_002.fbx"; public static string Q4MiddleRingTerrain003 = "RoR2/Base/moon/Q4_MiddleRing_Terrain_003.fbx"; public static string Q4OuterRingCave001 = "RoR2/Base/moon/Q4_OuterRing_Cave_001.fbx"; public static string Q4Pillar001 = "RoR2/Base/moon/Q4_Pillar_001.fbx"; public static string Q4Ruins001 = "RoR2/Base/moon/Q4_Ruins_001.fbx"; public static string Q4Ruins002 = "RoR2/Base/moon/Q4_Ruins_002.fbx"; public static string Q4Ruins003 = "RoR2/Base/moon/Q4_Ruins_003.fbx"; public static string Q4Ruins004 = "RoR2/Base/moon/Q4_Ruins_004.fbx"; public static string Q4Ruins005 = "RoR2/Base/moon/Q4_Ruins_005.fbx"; public static string Q4Ruins006 = "RoR2/Base/moon/Q4_Ruins_006.fbx"; public static string Q4Ruins007 = "RoR2/Base/moon/Q4_Ruins_007.fbx"; public static string Q4Ruins008 = "RoR2/Base/moon/Q4_Ruins_008.fbx"; public static string mdlQuarryDeposit = "RoR2/Base/moon/mdlQuarryDeposit.fbx"; public static string mdlQuarryEntry = "RoR2/Base/moon/mdlQuarryEntry.fbx"; public static string mdlQuarryEntryopt = "RoR2/Base/moon/mdlQuarryEntry_opt.fbx"; public static string mdlQuarryFoggyFloor = "RoR2/Base/moon/mdlQuarryFoggyFloor.fbx"; public static string mdlQuarryFoggyFlooropt = "RoR2/Base/moon/mdlQuarryFoggyFloor_opt.fbx"; public static string mdlQuarryFogPlane = "RoR2/Base/moon/mdlQuarryFogPlane.fbx"; public static string mdlQuarryFogPlane23 = "RoR2/Base/moon/mdlQuarryFogPlane.prefab"; public static string QuarryDeposit = "RoR2/Base/moon/QuarryDeposit.prefab"; public static string QuarryEntry = "RoR2/Base/moon/QuarryEntry.prefab"; public static string QuarryFoggyFloor = "RoR2/Base/moon/QuarryFoggyFloor.prefab"; public static string QuarryRubbleRockMedium = "RoR2/Base/moon/QuarryRubbleRockMedium.prefab"; public static string sizetest = "RoR2/Base/moon/size_test.fbx"; public static string HGQ1InnerRingTerrainMain13 = "RoR2/Base/moon/HG_Q1_InnerRing_Terrain_Main.prefab"; public static string HGQ1InnerRingTerrainSmall24 = "RoR2/Base/moon/HG_Q1_InnerRing_Terrain_Small.prefab"; public static string HGQ1MiddleRingTerrain0027 = "RoR2/Base/moon/HG_Q1_MiddleRing_Terrain_002.prefab"; public static string HGQ1OuterRingCave17 = "RoR2/Base/moon/HG_Q1_OuterRing_Cave.prefab"; public static string HGQ1OuterRingTerrain00126 = "RoR2/Base/moon/HG_Q1_OuterRing_Terrain_001.prefab"; public static string HGQ2InnerRingTerrain00135 = "RoR2/Base/moon/HG_Q2_InnerRing_Terrain_001.prefab"; public static string HGQ2InnerRingTerrain00211 = "RoR2/Base/moon/HG_Q2_InnerRing_Terrain_002.prefab"; public static string HGQ2MiddleRingTerrain00133 = "RoR2/Base/moon/HG_Q2_MiddleRing_Terrain_001.prefab"; public static string HGQ2OuterRingTerrain00112 = "RoR2/Base/moon/HG_Q2_OuterRing_Terrain_001.prefab"; public static string HGQ3InnerRingTerrain0017 = "RoR2/Base/moon/HG_Q3_InnerRing_Terrain_001.prefab"; public static string HGQ3InnerRingTerrain00222 = "RoR2/Base/moon/HG_Q3_InnerRing_Terrain_002.prefab"; public static string HGQ3InnerRingTerrain00324 = "RoR2/Base/moon/HG_Q3_InnerRing_Terrain_003.prefab"; public static string HGQ3MiddleRingTerrain00117 = "RoR2/Base/moon/HG_Q3_MiddleRing_Terrain_001.prefab"; public static string HGQ3MiddleRingTerrain0025 = "RoR2/Base/moon/HG_Q3_MiddleRing_Terrain_002.prefab"; public static string HGQ3OuterRingTerrain00118 = "RoR2/Base/moon/HG_Q3_OuterRing_Terrain_001.prefab"; public static string LunarBloodArena = "RoR2/Base/moon/LunarBloodArena.prefab"; public static string LunarBloodArenaRoof = "RoR2/Base/moon/LunarBloodArenaRoof.prefab"; public static string MoonBridgeCornerTerrain = "RoR2/Base/moon/Moon_Bridge_Corner_Terrain.prefab"; public static string MoonArenaBaseLayerBowl = "RoR2/Base/moon/MoonArenaBaseLayerBowl.prefab"; public static string MoonArenaBaseLayerOctagon001 = "RoR2/Base/moon/MoonArenaBaseLayerOctagon.001.prefab"; public static string MoonArenaBaseLayerOctagon = "RoR2/Base/moon/MoonArenaBaseLayerOctagon.prefab"; public static string MoonArenaBaseLayerRoof = "RoR2/Base/moon/MoonArenaBaseLayerRoof.prefab"; public static string MoonDistantDunes = "RoR2/Base/moon/MoonDistantDunes.prefab"; public static string MoonTempleIsland = "RoR2/Base/moon/MoonTempleIsland.prefab"; public static string SilverWireLength1 = "RoR2/Base/moon/SilverWireLength1.prefab"; public static string TempleBase = "RoR2/Base/moon/TempleBase.prefab"; public static string TowerTerrain = "RoR2/Base/moon/Tower_Terrain.prefab"; public static string HGTowerterrain = "RoR2/Base/moon/HG_Tower_terrain.fbx"; public static string HGTowerterrainopt = "RoR2/Base/moon/HG_Tower_terrain_opt.fbx"; public static string mdldiscplatform = "RoR2/Base/moon/mdl_disc_platform.fbx"; public static string mdldiscplatformopt = "RoR2/Base/moon/mdl_disc_platform_opt.fbx"; public static string mdlLunarRotatingFlame = "RoR2/Base/moon/mdlLunarRotatingFlame.fbx"; public static string mdlPlatformColumnLow = "RoR2/Base/moon/mdlPlatform_Column_Low.fbx"; public static string mdlPlatformColumnLowCollision = "RoR2/Base/moon/mdlPlatform_Column_Low_Collision.fbx"; public static string mdlPlatformColumnLowopt = "RoR2/Base/moon/mdlPlatform_Column_Low_opt.fbx"; public static string mdlPlatformColumnLowStraight = "RoR2/Base/moon/mdlPlatform_Column_Low_Straight.fbx"; public static string mdlPlatformColumnLowStraightCollision = "RoR2/Base/moon/mdlPlatform_Column_Low_Straight_Collision.fbx"; public static string mdlrootstructure = "RoR2/Base/moon/mdlroot_structure.fbx"; public static string mdlrootstructureopt = "RoR2/Base/moon/mdlroot_structure_opt.fbx"; public static string mdlrootstructureVFX = "RoR2/Base/moon/mdlroot_structure_VFX.fbx"; public static string MoonStatuesofProvidence = "RoR2/Base/moon/Moon Statues of Providence.fbx"; public static string ArchQ1 = "RoR2/Base/moon/Arch_Q1.fbx"; public static string ArchQ2 = "RoR2/Base/moon/Arch_Q2.fbx"; public static string ArchQ3 = "RoR2/Base/moon/Arch_Q3.fbx"; public static string HGRock001 = "RoR2/Base/moon/HG_Rock_001.fbx"; public static string HGRock001opt = "RoR2/Base/moon/HG_Rock_001_opt.fbx"; public static string Rock001 = "RoR2/Base/moon/Rock_001.fbx"; public static string Tower001 = "RoR2/Base/moon/Tower_001.fbx"; public static string Towermain = "RoR2/Base/moon/Tower_main.fbx"; public static string Towerterrain = "RoR2/Base/moon/Tower_terrain.fbx"; public static string Wall001 = "RoR2/Base/moon/Wall_001.fbx"; public static string DiskPlatform = "RoR2/Base/moon/Disk_Platform.prefab"; public static string HGQ3Rock0013 = "RoR2/Base/moon/HG_Q3_Rock_001.prefab"; public static string HGRock00116 = "RoR2/Base/moon/HG_Rock_001.prefab"; public static string mdlProvidenceStatue = "RoR2/Base/moon/mdlProvidenceStatue.prefab"; public static string mdlProvidenceStatueSword = "RoR2/Base/moon/mdlProvidenceStatue_Sword.prefab"; public static string PlatformColumn = "RoR2/Base/moon/Platform_Column.prefab"; public static string PlatformColumnStraight = "RoR2/Base/moon/Platform_Column_Straight.prefab"; public static string ProvidenceStatueSmashed3B = "RoR2/Base/moon/ProvidenceStatue_Smashed_3B.prefab"; public static string ProvidenceStatueSmashed1A = "RoR2/Base/moon/ProvidenceStatue_Smashed1A.prefab"; public static string ProvidenceStatueSmashed1B = "RoR2/Base/moon/ProvidenceStatue_Smashed1B.prefab"; public static string ProvidenceStatueSmashed1C = "RoR2/Base/moon/ProvidenceStatue_Smashed1C.prefab"; public static string ProvidenceStatueSmashed2A = "RoR2/Base/moon/ProvidenceStatue_Smashed2A.prefab"; public static string ProvidenceStatueSmashed2B = "RoR2/Base/moon/ProvidenceStatue_Smashed2B.prefab"; public static string ProvidenceStatueSmashed3A = "RoR2/Base/moon/ProvidenceStatue_Smashed3A.prefab"; public static string RootStructure = "RoR2/Base/moon/Root_Structure.prefab"; public static string mdlGolemClamp = "RoR2/Base/moon/mdlGolemClamp.fbx"; public static string mdlGolemClampOpenable = "RoR2/Base/moon/mdlGolemClampOpenable.fbx"; public static string mdlLunarCoolingBowlLarge = "RoR2/Base/moon/mdlLunarCoolingBowlLarge.fbx"; public static string moonworkshopprops = "RoR2/Base/moon/moon_workshop_props.fbx"; public static string moonworkshoppropsopt = "RoR2/Base/moon/moon_workshop_props_opt.fbx"; public static string BrotherUnfinishedCap = "RoR2/Base/moon/Brother_Unfinished_Cap.prefab"; public static string BrotherUnfinishedConnector = "RoR2/Base/moon/Brother_Unfinished_Connector.prefab"; public static string BrotherUnfinishedConnector2 = "RoR2/Base/moon/Brother_Unfinished_Connector2.prefab"; public static string BrotherUnfinishedHammerhead = "RoR2/Base/moon/Brother_Unfinished_Hammerhead.prefab"; public static string BrotherUnfinishedHammerhead2 = "RoR2/Base/moon/Brother_Unfinished_Hammerhead2.prefab"; public static string BrotherUnfinishedHandle = "RoR2/Base/moon/Brother_Unfinished_Handle.prefab"; public static string BrotherUnfinishedImplement = "RoR2/Base/moon/Brother_Unfinished_Implement.prefab"; public static string BrotherUnfinishedLargeRing = "RoR2/Base/moon/Brother_Unfinished_Large_Ring.prefab"; public static string BrotherUnfinishedRing = "RoR2/Base/moon/Brother_Unfinished_Ring.prefab"; public static string BrotherUnfinishedSword = "RoR2/Base/moon/Brother_Unfinished_Sword.prefab"; public static string GolemClamp = "RoR2/Base/moon/GolemClamp.prefab"; public static string GolemClampOpenable = "RoR2/Base/moon/GolemClampOpenable.prefab"; public static string HangingGolem = "RoR2/Base/moon/Hanging Golem.prefab"; public static string HangingWisp = "RoR2/Base/moon/Hanging Wisp.prefab"; public static string HGQ2OuterRingTerrain00215 = "RoR2/Base/moon/HG_Q2_OuterRing_Terrain_002.prefab"; public static string LunarAnvil = "RoR2/Base/moon/LunarAnvil.prefab"; public static string LunarCoolingBowl = "RoR2/Base/moon/LunarCoolingBowl.prefab"; public static string LunarForge = "RoR2/Base/moon/LunarForge.prefab"; public static string LunarForgeBusted = "RoR2/Base/moon/LunarForgeBusted.prefab"; public static string LunarTool1 = "RoR2/Base/moon/LunarTool1.prefab"; public static string LunarTool2 = "RoR2/Base/moon/LunarTool2.prefab"; public static string LunarTool3 = "RoR2/Base/moon/LunarTool3.prefab"; public static string LunarTool4 = "RoR2/Base/moon/LunarTool4.prefab"; public static string LunarTool5 = "RoR2/Base/moon/LunarTool5.prefab"; public static string LunarWispArm = "RoR2/Base/moon/LunarWispArm.prefab"; public static string LunarWispArmBroken = "RoR2/Base/moon/LunarWispArmBroken.prefab"; public static string LunarWispArmBrokenopt = "RoR2/Base/moon/LunarWispArmBroken_opt.prefab"; public static string LunarWispCore = "RoR2/Base/moon/LunarWispCore.prefab"; public static string LunarWispCoreopt = "RoR2/Base/moon/LunarWispCore_opt.prefab"; public static string LunarWispHead = "RoR2/Base/moon/LunarWispHead.prefab"; public static string LunarWispHeadopt = "RoR2/Base/moon/LunarWispHead_opt.prefab"; public static string LunarWispHeadBroken = "RoR2/Base/moon/LunarWispHeadBroken.prefab"; public static string LunarWispJaw = "RoR2/Base/moon/LunarWispJaw.prefab"; public static string LunarWispJawopt = "RoR2/Base/moon/LunarWispJaw_opt.prefab"; public static string mdlPlantAsh2 = "RoR2/Base/moon/mdl_Plant_Ash2.prefab"; public static string mdlLunarCoolingBowlLarge30 = "RoR2/Base/moon/mdlLunarCoolingBowlLarge.prefab"; public static string mdlLunarForgeLitVariant = "RoR2/Base/moon/mdlLunarForgeLit Variant.prefab"; public static string PlantAsh1 = "RoR2/Base/moon/Plant_Ash1.prefab"; public static string PlantAsh3 = "RoR2/Base/moon/Plant_Ash3.prefab"; public static string UnfinishedGolemGroup = "RoR2/Base/moon/Unfinished Golem Group.prefab"; public static string UnfinishedGolemHead = "RoR2/Base/moon/Unfinished_Golem_Head.prefab"; public static string UnfinishedGolemHead2 = "RoR2/Base/moon/Unfinished_Golem_Head2.prefab"; public static string UnfinishedGolemMagnet = "RoR2/Base/moon/Unfinished_Golem_Magnet.prefab"; public static string UnfinishedGolemStone1 = "RoR2/Base/moon/Unfinished_Golem_Stone1.prefab"; public static string UnfinishedGolemStone2 = "RoR2/Base/moon/Unfinished_Golem_Stone2.prefab"; public static string UnfinishedGolemStone3 = "RoR2/Base/moon/Unfinished_Golem_Stone3.prefab"; public static string UnfinishedGolemStone4 = "RoR2/Base/moon/Unfinished_Golem_Stone4.prefab"; public static string UnfinishedStone = "RoR2/Base/moon/Unfinished_Stone.prefab"; public static string UnfinishedStoneLarge = "RoR2/Base/moon/Unfinished_Stone_Large.prefab"; public static string moonAirNode = "RoR2/Base/moon/moonAirNode.prefab"; public static string MoonDioramaDissplay = "RoR2/Base/moon/MoonDioramaDissplay.prefab"; public static string moonGroundNode = "RoR2/Base/moon/moonGroundNode.prefab"; public static string MoonMissionController = "RoR2/Base/moon/MoonMissionController.prefab"; public static string spmMoonGhostGrass = "RoR2/Base/moon/spmMoonGhostGrass.spm"; public static string spmMoonGhostGrassopt = "RoR2/Base/moon/spmMoonGhostGrass_opt.spm"; public static string spmMoonGrass1 = "RoR2/Base/moon/spmMoonGrass1.spm"; public static string spmMoonGrass1opt = "RoR2/Base/moon/spmMoonGrass1_opt.spm"; public static string spmSilverRoots1 = "RoR2/Base/moon/spmSilverRoots1.spm"; public static string spmSilverRoots1opt = "RoR2/Base/moon/spmSilverRoots1_opt.spm"; public static string spmSilverRootsColumnToCeiling = "RoR2/Base/moon/spmSilverRootsColumnToCeiling.spm"; public static string spmSilverRootsColumnToCeilingopt = "RoR2/Base/moon/spmSilverRootsColumnToCeiling_opt.spm"; public static string mdlSmoothFrog = "RoR2/Base/moon/mdlSmoothFrog.fbx"; public static string moonplants = "RoR2/Base/moon/moon plants.fbx"; public static string moonplantsopt = "RoR2/Base/moon/moon plants_opt.fbx"; public static string moonsilverwire = "RoR2/Base/moon/moon silver wire.fbx"; public static string moonsilverwireopt = "RoR2/Base/moon/moon silver wire_opt.fbx"; public static string moonskyboxterrain = "RoR2/Base/moon/moon skybox terrain.fbx"; public static string moonskyboxterrainopt = "RoR2/Base/moon/moon skybox terrain_opt.fbx"; public static string moonstibs = "RoR2/Base/moon/moon stibs.fbx"; public static string moonplants2 = "RoR2/Base/moon/moonplants2.fbx"; public static string moonplants2opt = "RoR2/Base/moon/moonplants2_opt.fbx"; public static string AsteroidDistant = "RoR2/Base/moon/Asteroid_Distant.prefab"; public static string FrogInteractable = "RoR2/Base/moon/FrogInteractable.prefab"; public static string LunarBud = "RoR2/Base/moon/LunarBud.prefab"; public static string LunarPodOpened = "RoR2/Base/moon/LunarPod, Opened.prefab"; public static string MoonGhostPlant1 = "RoR2/Base/moon/Moon_GhostPlant1.prefab"; public static string MoonGhostPlant2 = "RoR2/Base/moon/Moon_GhostPlant2.prefab"; public static string MoonGhostPlant3 = "RoR2/Base/moon/Moon_GhostPlant3.prefab"; public static string MoonGhostPlant4 = "RoR2/Base/moon/Moon_GhostPlant4.prefab"; public static string MoonGhostPlant5 = "RoR2/Base/moon/Moon_GhostPlant5.prefab"; public static string MoonGhostPlantLarge1 = "RoR2/Base/moon/Moon_GhostPlantLarge1.prefab"; public static string MoonGhostPlantLarge2 = "RoR2/Base/moon/Moon_GhostPlantLarge2.prefab"; public static string MoonGhostPlantLarge4 = "RoR2/Base/moon/Moon_GhostPlantLarge4.prefab"; public static string MoonBoulderMedium = "RoR2/Base/moon/MoonBoulderMedium.prefab"; public static string MoonCurvedPath = "RoR2/Base/moon/MoonCurvedPath.prefab"; public static string MoonPebble = "RoR2/Base/moon/MoonPebble.prefab"; public static string MoonPebbleDark = "RoR2/Base/moon/MoonPebbleDark.prefab"; public static string MoonPebbleEarthy = "RoR2/Base/moon/MoonPebbleEarthy.prefab"; public static string MoonRockAngularVariant = "RoR2/Base/moon/MoonRockAngular Variant.prefab"; public static string MoonRockFormationMedium = "RoR2/Base/moon/MoonRockFormationMedium.prefab"; public static string MoonSkyboxPrefab = "RoR2/Base/moon/MoonSkyboxPrefab.prefab"; public static string MoonStibClusterSmall = "RoR2/Base/moon/MoonStibCluster_Small.prefab"; public static string StibLarge = "RoR2/Base/moon/StibLarge.prefab"; public static string StibMedium = "RoR2/Base/moon/StibMedium.prefab"; public static string StibSmall = "RoR2/Base/moon/StibSmall.prefab"; public static string HGMoonArena = "RoR2/Base/moon/HG_Moon_Arena.fbx"; public static string HGMoonArenaopt = "RoR2/Base/moon/HG_Moon_Arena_opt.fbx"; public static string HGMoonBarrier = "RoR2/Base/moon/HG_Moon_Barrier.fbx"; public static string HGMoonBarrieropt = "RoR2/Base/moon/HG_Moon_Barrier_opt.fbx"; public static string HGMoonBridge = "RoR2/Base/moon/HG_Moon_Bridge.fbx"; public static string HGMoonBridgeopt = "RoR2/Base/moon/HG_Moon_Bridge_opt.fbx"; public static string HGMoonBridgePassthroughCorner = "RoR2/Base/moon/HG_Moon_Bridge_PassthroughCorner.fbx"; public static string HGMoonBridgePassthroughCornerCap = "RoR2/Base/moon/HG_Moon_Bridge_PassthroughCorner_Cap.fbx"; public static string HGMoonBridgePassthroughCorneropt = "RoR2/Base/moon/HG_Moon_Bridge_PassthroughCorner_opt.fbx"; public static string HGMoonPillar = "RoR2/Base/moon/HG_Moon_Pillar.fbx"; public static string HGMoonPlatforms = "RoR2/Base/moon/HG_Moon_Platforms.fbx"; public static string HGMoonPlatformsopt = "RoR2/Base/moon/HG_Moon_Platforms_opt.fbx"; public static string HGMoonRubble = "RoR2/Base/moon/HG_Moon_Rubble.fbx"; public static string HGMoonRubbleopt = "RoR2/Base/moon/HG_Moon_Rubble_opt.fbx"; public static string HGMoonTemple = "RoR2/Base/moon/HG_Moon_Temple.fbx"; public static string HGMoonTempleopt = "RoR2/Base/moon/HG_Moon_Temple_opt.fbx"; public static string HGMoonWallBusted = "RoR2/Base/moon/HG_Moon_Wall_Busted.fbx"; public static string HGMoonWallBustedopt = "RoR2/Base/moon/HG_Moon_Wall_Busted_opt.fbx"; public static string HGMoonWalls = "RoR2/Base/moon/HG_Moon_Walls.fbx"; public static string HGMoonWallsopt = "RoR2/Base/moon/HG_Moon_Walls_opt.fbx"; public static string HOLDERElevators = "RoR2/Base/moon/HOLDER_ Elevators.prefab"; public static string HGMoonWallBusted29 = "RoR2/Base/moon/HG_Moon_Wall_Busted.prefab"; public static string MoonArenaRubble = "RoR2/Base/moon/MoonArenaRubble.prefab"; public static string MoonBarrierSmall = "RoR2/Base/moon/MoonBarrierSmall.prefab"; public static string MoonGeyser = "RoR2/Base/moon/MoonGeyser.prefab"; public static string MoonPillar = "RoR2/Base/moon/MoonPillar.prefab"; public static string MoonPillarRoundCap = "RoR2/Base/moon/MoonPillar_RoundCap.prefab"; public static string MoonPillarStibShort = "RoR2/Base/moon/MoonPillar_Stib Short.prefab"; public static string MoonPillarStibTallBroken = "RoR2/Base/moon/MoonPillar_StibTallBroken.prefab"; public static string MoonPillarBaseRubble = "RoR2/Base/moon/MoonPillarBaseRubble.prefab"; public static string MoonPillarFlat = "RoR2/Base/moon/MoonPillarFlat.prefab"; public static string MoonPillarHuge = "RoR2/Base/moon/MoonPillarHuge.prefab"; public static string MoonPlatformFlatLarge = "RoR2/Base/moon/MoonPlatformFlatLarge.prefab"; public static string MoonPlatformFlatLargeSlanted = "RoR2/Base/moon/MoonPlatformFlatLargeSlanted.prefab"; public static string MoonPlatformFlatSmall = "RoR2/Base/moon/MoonPlatformFlatSmall.prefab"; public static string MoonPlatformFlatSquare = "RoR2/Base/moon/MoonPlatformFlatSquare.prefab"; public static string MoonPlatformThickLarge = "RoR2/Base/moon/MoonPlatformThickLarge.prefab"; public static string MoonPlatformThickLargeBroken1 = "RoR2/Base/moon/MoonPlatformThickLargeBroken1.prefab"; public static string MoonWall60 = "RoR2/Base/moon/MoonWall60.prefab"; public static string MoonWall60Viewport = "RoR2/Base/moon/MoonWall60Viewport.prefab"; public static string MoonBridgeBase = "RoR2/Base/moon/MoonBridgeBase.prefab"; public static string MoonBridgeCap = "RoR2/Base/moon/MoonBridgeCap.prefab"; public static string MoonBridgeClamp = "RoR2/Base/moon/MoonBridgeClamp.prefab"; public static string MoonBridgeColumn = "RoR2/Base/moon/MoonBridgeColumn.prefab"; public static string MoonBridgeCorner = "RoR2/Base/moon/MoonBridgeCorner.prefab"; public static string MoonBridgeCornerWithTerrain = "RoR2/Base/moon/MoonBridgeCornerWithTerrain.prefab"; public static string MoonBridgeLightHolder = "RoR2/Base/moon/MoonBridgeLightHolder.prefab"; public static string MoonBridgePassthroughCornerWithTerrain = "RoR2/Base/moon/MoonBridgePassthroughCornerWithTerrain.prefab"; public static string MoonBridgeRamp = "RoR2/Base/moon/MoonBridgeRamp.prefab"; public static string BridgeCrossingIndicator1 = "RoR2/Base/moon/BridgeCrossingIndicator1.prefab"; public static string BridgeCrossingIndicator2 = "RoR2/Base/moon/BridgeCrossingIndicator2.prefab"; public static string MoonArenaColumnHugeAlt = "RoR2/Base/moon/MoonArenaColumn, Huge Alt.prefab"; public static string MoonArenaColumnHuge = "RoR2/Base/moon/MoonArenaColumn, Huge.prefab"; public static string MoonArenaColumnSmall = "RoR2/Base/moon/MoonArenaColumn_Small.prefab"; public static string MoonArenaColumn1 = "RoR2/Base/moon/MoonArenaColumn1.prefab"; public static string MoonArenaDynamicPillar = "RoR2/Base/moon/MoonArenaDynamicPillar.prefab"; public static string MoonHouseBrokenBridge = "RoR2/Base/moon/MoonHouse, Broken Bridge.prefab"; public static string MoonHouseElevatedPlatformVariant = "RoR2/Base/moon/MoonHouse, Elevated Platform Variant.prefab"; public static string MoonHouseGate = "RoR2/Base/moon/MoonHouse, Gate.prefab"; public static string MoonHouseSmall = "RoR2/Base/moon/MoonHouse_Small.prefab"; public static string MoonPillarClimbableStairThingyVariant = "RoR2/Base/moon/MoonPillar Climbable Stair Thingy Variant.prefab"; public static string MoonPillarFlatRightAngleStepsVariant = "RoR2/Base/moon/MoonPillarFlat, Right Angle Steps Variant.prefab"; public static string MoonPillarFlatRightAngleVariant = "RoR2/Base/moon/MoonPillarFlat, Right Angle Variant.prefab"; public static string MoonPillarHugeWithLights = "RoR2/Base/moon/MoonPillarHugeWithLights.prefab"; public static string PillarFireCombo = "RoR2/Base/moon/PillarFireCombo.prefab"; public static string MoonMarkerLarge = "RoR2/Base/moon/MoonMarker, Large.prefab"; public static string MoonMarkerSmall = "RoR2/Base/moon/MoonMarker_Small.prefab"; public static string BrotherHurtSpeechController = "RoR2/Base/moon2/BrotherHurtSpeechController.prefab"; public static string BrotherPhase1SpeechController = "RoR2/Base/moon2/BrotherPhase1SpeechController.prefab"; public static string BrotherSpeechController = "RoR2/Base/moon2/BrotherSpeechController.prefab"; public static string EscapeSequencePositionIndicator = "RoR2/Base/moon2/EscapeSequencePositionIndicator.prefab"; public static string mdlMoonBattery = "RoR2/Base/moon2/mdlMoonBattery.fbx"; public static string BloodSiphonNearbyAttachment = "RoR2/Base/moon2/BloodSiphonNearbyAttachment.prefab"; public static string BloodSiphonTetherVFX = "RoR2/Base/moon2/BloodSiphonTetherVFX.prefab"; public static string MoonBatteryBlood = "RoR2/Base/moon2/MoonBatteryBlood.prefab"; public static string mdlMoonBatteryFancy = "RoR2/Base/moon2/mdlMoonBatteryFancy.fbx"; public static string MoonBatteryCrippleWard = "RoR2/Base/moon2/MoonBatteryCrippleWard.prefab"; public static string MoonBatteryDesign = "RoR2/Base/moon2/MoonBatteryDesign.prefab"; public static string MoonBatteryDesignPulse = "RoR2/Base/moon2/MoonBatteryDesignPulse.prefab"; public static string MoonBatteryMass = "RoR2/Base/moon2/MoonBatteryMass.prefab"; public static string MoonBatterySoul = "RoR2/Base/moon2/MoonBatterySoul.prefab"; public static string MoonBatteryTemplate = "RoR2/Base/moon2/MoonBatteryTemplate.prefab"; public static string PillarChargingPositionIndicator = "RoR2/Base/moon2/PillarChargingPositionIndicator.prefab"; public static string MoonBatteryMissionController = "RoR2/Base/moon2/MoonBatteryMissionController.prefab"; public static string mdlMoonElevator = "RoR2/Base/moon2/mdlMoonElevator.fbx"; public static string moonelevatorvfx = "RoR2/Base/moon2/moon elevator vfx.fbx"; public static string MoonElevator = "RoR2/Base/moon2/MoonElevator.prefab"; public static string RescueshipChargingIndicator = "RoR2/Base/moon2/RescueshipChargingIndicator.prefab"; public static string Moon2DropshipZone = "RoR2/Base/moon2/Moon2DropshipZone.prefab"; public static string RescueshipExhaustOnVFX = "RoR2/Base/moon2/RescueshipExhaustOnVFX.prefab"; public static string RescueshipMoon = "RoR2/Base/moon2/RescueshipMoon.prefab"; public static string SuspendedMesh = "RoR2/Base/mysteryspace/SuspendedMesh.prefab"; public static string MysteryspaceDioramaDisplay = "RoR2/Base/mysteryspace/MysteryspaceDioramaDisplay.prefab"; public static string mysteryspaceegg = "RoR2/Base/mysteryspace/mysteryspace egg.fbx"; public static string mysteryspaceeggopt = "RoR2/Base/mysteryspace/mysteryspace egg_opt.fbx"; public static string mysteryspaceterrain = "RoR2/Base/mysteryspace/mysteryspace terrain.fbx"; public static string mysteryspaceterrainopt = "RoR2/Base/mysteryspace/mysteryspace terrain_opt.fbx"; public static string MSCrystal = "RoR2/Base/mysteryspace/MS_Crystal.prefab"; public static string MSCrystalPlatform = "RoR2/Base/mysteryspace/MS_CrystalPlatform.prefab"; public static string MSEgg = "RoR2/Base/mysteryspace/MS_Egg.prefab"; public static string MSFloatingIsland1 = "RoR2/Base/mysteryspace/MS_FloatingIsland1.prefab"; public static string MSFloatingIsland2 = "RoR2/Base/mysteryspace/MS_FloatingIsland2.prefab"; public static string MSFloatingRock1 = "RoR2/Base/mysteryspace/MS_FloatingRock1.prefab"; public static string MSFloatingRock2 = "RoR2/Base/mysteryspace/MS_FloatingRock2.prefab"; public static string MSFloatingRock3 = "RoR2/Base/mysteryspace/MS_FloatingRock3.prefab"; public static string MSObelisk = "RoR2/Base/mysteryspace/MS_Obelisk.prefab"; public static string MSSandDune = "RoR2/Base/mysteryspace/MS_SandDune.prefab"; public static string MSSkybox = "RoR2/Base/mysteryspace/MSSkybox.prefab"; public static string mysteryspaceprops = "RoR2/Base/mysteryspace/mysteryspace props.fbx"; public static string mysteryspacepropsopt = "RoR2/Base/mysteryspace/mysteryspace props_opt.fbx"; public static string contactlightlow = "RoR2/Base/outro/contactlight, low.fbx"; public static string contactlight = "RoR2/Base/outro/contactlight.fbx"; public static string cutsceneoutro = "RoR2/Base/outro/cutscene outro.fbx"; public static string shatteredmoon = "RoR2/Base/outro/shattered moon.fbx"; public static string shatteredmoonopt = "RoR2/Base/outro/shattered moon_opt.fbx"; public static string ContactLightLowPropVariant = "RoR2/Base/outro/ContactLightLowProp Variant.prefab"; public static string ContactLightPropVariant = "RoR2/Base/outro/ContactLightProp Variant.prefab"; public static string MoonSimple = "RoR2/Base/outro/MoonSimple.prefab"; public static string ShatteredMoonOutro = "RoR2/Base/outro/Shattered Moon, Outro.prefab"; public static string RescueshipOutroCutscene = "RoR2/Base/outro/RescueshipOutroCutscene.prefab"; public static string RJDistantTreeFoliage = "RoR2/Base/rootjungle/RJDistantTreeFoliage.st"; public static string RJDistantTreeFoliageopt = "RoR2/Base/rootjungle/RJDistantTreeFoliage_opt.st"; public static string RJfern = "RoR2/Base/rootjungle/RJfern.st"; public static string RJfernopt = "RoR2/Base/rootjungle/RJfern_opt.st"; public static string RJgrass1Prefab = "RoR2/Base/rootjungle/RJgrass1_Prefab.prefab"; public static string RJgrass1Prefabopt = "RoR2/Base/rootjungle/RJgrass1_Prefab_opt.prefab"; public static string spmRJgrass1 = "RoR2/Base/rootjungle/spmRJgrass1.st"; public static string spmRJgrass1lowpoly = "RoR2/Base/rootjungle/spmRJgrass1_lowpoly.fbx"; public static string RJgrass2Prefab = "RoR2/Base/rootjungle/RJgrass2_Prefab.prefab"; public static string RJgrass2Prefabopt = "RoR2/Base/rootjungle/RJgrass2_Prefab_opt.prefab"; public static string spmRJgrass2 = "RoR2/Base/rootjungle/spmRJgrass2.st"; public static string spmRJgrass2lowpoly = "RoR2/Base/rootjungle/spmRJgrass2_lowpoly.fbx"; public static string RJHangingMoss = "RoR2/Base/rootjungle/RJHangingMoss.st"; public static string RJHangingMosslowmesh = "RoR2/Base/rootjungle/RJHangingMoss_lowmesh.fbx"; public static string RJHangingMossPrefab = "RoR2/Base/rootjungle/RJHangingMoss_Prefab.prefab"; public static string RJHangingMossPrefabopt = "RoR2/Base/rootjungle/RJHangingMoss_Prefab_opt.prefab"; public static string RJMossFoliage = "RoR2/Base/rootjungle/RJMossFoliage.st"; public static string RJMossFoliageopt = "RoR2/Base/rootjungle/RJMossFoliage_opt.st"; public static string RJpinkshroom = "RoR2/Base/rootjungle/RJpinkshroom.st"; public static string RJpinkshroomopt = "RoR2/Base/rootjungle/RJpinkshroom_opt.fbx"; public static string RJpinkshroomopt4 = "RoR2/Base/rootjungle/RJpinkshroom_opt.st"; public static string RJpinkshroomPrefab = "RoR2/Base/rootjungle/RJpinkshroom_Prefab.prefab"; public static string RJpinkshroomPrefabopt = "RoR2/Base/rootjungle/RJpinkshroom_Prefab_opt.prefab"; public static string RJShroomFoliage = "RoR2/Base/rootjungle/RJShroomFoliage.st"; public static string RJShroomFoliageopt = "RoR2/Base/rootjungle/RJShroomFoliage_opt.fbx"; public static string RJShroomFoliagePrefab = "RoR2/Base/rootjungle/RJShroomFoliage_Prefab.prefab"; public static string RJShroomFoliagePrefabopt = "RoR2/Base/rootjungle/RJShroomFoliage_Prefab_opt.prefab"; public static string RJTowerTreeFoliage36 = "RoR2/Base/rootjungle/RJTowerTreeFoliage.st"; public static string RJTowerTreeFoliageopt = "RoR2/Base/rootjungle/RJTowerTreeFoliage_opt.st"; public static string RJTreeBigFoliage = "RoR2/Base/rootjungle/RJTreeBigFoliage.st"; public static string RJTreeBigFoliagelowpoly = "RoR2/Base/rootjungle/RJTreeBigFoliage_lowpoly.fbx"; public static string RJTreeBigFoliagePrefab = "RoR2/Base/rootjungle/RJTreeBigFoliage_Prefab.prefab"; public static string RJTreeBigFoliagePrefabopt = "RoR2/Base/rootjungle/RJTreeBigFoliage_Prefab_opt.prefab"; public static string EnvFXLeaves = "RoR2/Base/rootjungle/EnvFX_Leaves.prefab"; public static string EnvFXMushroomSpores = "RoR2/Base/rootjungle/EnvFX_MushroomSpores.prefab"; public static string mdlRJShroomBounce = "RoR2/Base/rootjungle/mdlRJShroomBounce.fbx"; public static string RJBrick = "RoR2/Base/rootjungle/RJBrick.fbx"; public static string RJMossPatch1 = "RoR2/Base/rootjungle/RJMossPatch1.fbx"; public static string RJMossPatch1opt = "RoR2/Base/rootjungle/RJMossPatch1_opt.fbx"; public static string RJMossPatch2 = "RoR2/Base/rootjungle/RJMossPatch2.fbx"; public static string RJMossPatch2opt = "RoR2/Base/rootjungle/RJMossPatch2_opt.fbx"; public static string RJMossPatchLarge = "RoR2/Base/rootjungle/RJMossPatchLarge.fbx"; public static string RJMossPatchLargeopt = "RoR2/Base/rootjungle/RJMossPatchLarge_opt.fbx"; public static string RJRock = "RoR2/Base/rootjungle/RJRock.fbx"; public static string RJRockopt = "RoR2/Base/rootjungle/RJRock_opt.fbx"; public static string RJRockBigRandom = "RoR2/Base/rootjungle/RJRockBigRandom.fbx"; public static string RJRockBigRandomopt = "RoR2/Base/rootjungle/RJRockBigRandom_opt.fbx"; public static string RJRoot1 = "RoR2/Base/rootjungle/RJRoot1.fbx"; public static string RJRoot1opt = "RoR2/Base/rootjungle/RJRoot1_opt.fbx"; public static string RJRoot2 = "RoR2/Base/rootjungle/RJRoot2.fbx"; public static string RJRoot2opt = "RoR2/Base/rootjungle/RJRoot2_opt.fbx"; public static string RJRoot3 = "RoR2/Base/rootjungle/RJRoot3.fbx"; public static string RJRoot3opt = "RoR2/Base/rootjungle/RJRoot3_opt.fbx"; public static string RJRoot4 = "RoR2/Base/rootjungle/RJRoot4.fbx"; public static string RJRoot4opt = "RoR2/Base/rootjungle/RJRoot4_opt.fbx"; public static string RJRootBridgeRandom = "RoR2/Base/rootjungle/RJRootBridgeRandom.fbx"; public static string RJRootBridgeRandomopt = "RoR2/Base/rootjungle/RJRootBridgeRandom_opt.fbx"; public static string RJRootRockBigRandom = "RoR2/Base/rootjungle/RJRootRockBigRandom.fbx"; public static string RJRootRockBigRandomopt = "RoR2/Base/rootjungle/RJRootRockBigRandom_opt.fbx"; public static string RJShroomBig = "RoR2/Base/rootjungle/RJShroomBig.fbx"; public static string RJShroomBigopt = "RoR2/Base/rootjungle/RJShroomBig_opt.fbx"; public static string RJShroomBounce = "RoR2/Base/rootjungle/RJShroomBounce.fbx"; public static string RJShroomBounceopt = "RoR2/Base/rootjungle/RJShroomBounce_opt.fbx"; public static string RJShroomShelf = "RoR2/Base/rootjungle/RJShroomShelf.fbx"; public static string RJShroomShelfopt = "RoR2/Base/rootjungle/RJShroomShelf_opt.fbx"; public static string RJShroomSmall = "RoR2/Base/rootjungle/RJShroomSmall.fbx"; public static string RJShroomSmallopt = "RoR2/Base/rootjungle/RJShroomSmall_opt.fbx"; public static string RJTerrainRandom = "RoR2/Base/rootjungle/RJTerrainRandom.fbx"; public static string RJTerrainRandomopt = "RoR2/Base/rootjungle/RJTerrainRandom_opt.fbx"; public static string RJTriangle = "RoR2/Base/rootjungle/RJTriangle.fbx"; public static string RJTriangleopt = "RoR2/Base/rootjungle/RJTriangle_opt.fbx"; public static string RJTriangleRoot = "RoR2/Base/rootjungle/RJTriangleRoot.fbx"; public static string RJTriangleRootopt = "RoR2/Base/rootjungle/RJTriangleRoot_opt.fbx"; public static string RJTwistedTree = "RoR2/Base/rootjungle/RJTwistedTree.fbx"; public static string RJTwistedTreeopt = "RoR2/Base/rootjungle/RJTwistedTree_opt.fbx"; public static string RJTwistedTreeBig = "RoR2/Base/rootjungle/RJTwistedTreeBig.fbx"; public static string RJTwistedTreeBigopt = "RoR2/Base/rootjungle/RJTwistedTreeBig_opt.fbx"; public static string rootjungleTerrain = "RoR2/Base/rootjungle/rootjungleTerrain.fbx"; public static string rootjungleTerrainopt = "RoR2/Base/rootjungle/rootjungleTerrain_opt.fbx"; public static string RJBounceShroom = "RoR2/Base/rootjungle/RJ_BounceShroom.prefab"; public static string RJBounceShroomopt = "RoR2/Base/rootjungle/RJ_BounceShroom_opt.prefab"; public static string RJMoss = "RoR2/Base/rootjungle/RJ_Moss.prefab"; public static string RJMossRock = "RoR2/Base/rootjungle/RJ_MossRock.prefab"; public static string RJMossRootBridge = "RoR2/Base/rootjungle/RJ_MossRootBridge.prefab"; public static string RJPebble = "RoR2/Base/rootjungle/RJ_Pebble.prefab"; public static string RJRockHolder2 = "RoR2/Base/rootjungle/RJ_Rock Holder 2.prefab"; public static string RJRockHolder = "RoR2/Base/rootjungle/RJ_Rock Holder.prefab"; public static string RJRockRaised2 = "RoR2/Base/rootjungle/RJ_Rock Raised 2.prefab"; public static string RJRockRaised3 = "RoR2/Base/rootjungle/RJ_Rock Raised 3.prefab"; public static string RJRockRaised4 = "RoR2/Base/rootjungle/RJ_Rock Raised 4.prefab"; public static string RJRockRaised5 = "RoR2/Base/rootjungle/RJ_Rock Raised 5.prefab"; public static string RJRockRaised = "RoR2/Base/rootjungle/RJ_Rock Raised.prefab"; public static string RJRock6 = "RoR2/Base/rootjungle/RJ_Rock.prefab"; public static string RJRockBigRandom22 = "RoR2/Base/rootjungle/RJ_RockBigRandom.prefab"; public static string RJRootBridgeFront = "RoR2/Base/rootjungle/RJ_Root Bridge Front.prefab"; public static string RJRootBridge = "RoR2/Base/rootjungle/RJ_Root Bridge.prefab"; public static string RJRoot16 = "RoR2/Base/rootjungle/RJ_Root1.prefab"; public static string RJRoot210 = "RoR2/Base/rootjungle/RJ_Root2.prefab"; public static string RJRoot313 = "RoR2/Base/rootjungle/RJ_Root3.prefab"; public static string RJRoot46 = "RoR2/Base/rootjungle/RJ_Root4.prefab"; public static string RJRootBridgeRandom14 = "RoR2/Base/rootjungle/RJ_RootBridgeRandom.prefab"; public static string RJRootRockBigRandom2 = "RoR2/Base/rootjungle/RJ_RootRockBigRandom.prefab"; public static string RJRuinArch = "RoR2/Base/rootjungle/RJ_RuinArch.prefab"; public static string RJShroomBig36 = "RoR2/Base/rootjungle/RJ_ShroomBig.prefab"; public static string RJShroomBigopt26 = "RoR2/Base/rootjungle/RJ_ShroomBig_opt.prefab"; public static string RJShroomShelf4 = "RoR2/Base/rootjungle/RJ_ShroomShelf.prefab"; public static string RJShroomShelfopt8 = "RoR2/Base/rootjungle/RJ_ShroomShelf_opt.prefab"; public static string RJShroomSmall13 = "RoR2/Base/rootjungle/RJ_ShroomSmall.prefab"; public static string RJTerrainMiddle = "RoR2/Base/rootjungle/RJ_Terrain Middle.prefab"; public static string RJTerrainNorth = "RoR2/Base/rootjungle/RJ_Terrain North.prefab"; public static string RJTerrainSouth = "RoR2/Base/rootjungle/RJ_Terrain South.prefab"; public static string RJTerrainRandom35 = "RoR2/Base/rootjungle/RJ_TerrainRandom.prefab"; public static string RJTreeBigBottom = "RoR2/Base/rootjungle/RJ_Tree Big Bottom.prefab"; public static string RJTreeDownedRing = "RoR2/Base/rootjungle/RJ_Tree Downed Ring.prefab"; public static string RJTreeDownedTopSection = "RoR2/Base/rootjungle/RJ_Tree Downed Top Section.prefab"; public static string RJTreeDowned = "RoR2/Base/rootjungle/RJ_Tree Downed.prefab"; public static string RJTreeGianticus = "RoR2/Base/rootjungle/RJ_Tree Gianticus.prefab"; public static string RJTriangle2 = "RoR2/Base/rootjungle/RJ_Triangle.prefab"; public static string RJTwistedTreeBig23 = "RoR2/Base/rootjungle/RJ_TwistedTreeBig.prefab"; public static string RJVineTree = "RoR2/Base/rootjungle/RJ_Vine Tree.prefab"; public static string RJWallEast = "RoR2/Base/rootjungle/RJ_Wall East.prefab"; public static string RJWallNorthWest = "RoR2/Base/rootjungle/RJ_Wall NorthWest.prefab"; public static string RJBrick16 = "RoR2/Base/rootjungle/RJBrick.prefab"; public static string RJShroomBounce35 = "RoR2/Base/rootjungle/RJShroomBounce.prefab"; public static string RJTriangleRoot5 = "RoR2/Base/rootjungle/RJTriangleRoot.prefab"; public static string spmRJgrasstest = "RoR2/Base/rootjungle/spmRJgrasstest.st"; public static string rootjunglePOIManager = "RoR2/Base/rootjungle/rootjungle_POIManager.prefab"; public static string rootjungleAirNode = "RoR2/Base/rootjungle/rootjungleAirNode.prefab"; public static string RootjungleDioramaDisplay = "RoR2/Base/rootjungle/RootjungleDioramaDisplay.prefab"; public static string rootjungleGroundNode = "RoR2/Base/rootjungle/rootjungleGroundNode.prefab"; public static string SGPortalCard = "RoR2/Base/shipgraveyard/FX/SGPortalCard.prefab"; public static string SGSpikeHugeDistant = "RoR2/Base/shipgraveyard/SGSpikeHugeDistant.prefab"; public static string SGSpikeMediumMesh = "RoR2/Base/shipgraveyard/SGSpikeMediumMesh.prefab"; public static string SGSpikeSmallMesh = "RoR2/Base/shipgraveyard/SGSpikeSmallMesh.prefab"; public static string SGTerrainSkybox = "RoR2/Base/shipgraveyard/SGTerrainSkybox.prefab"; public static string shipgraveyardfightership = "RoR2/Base/shipgraveyard/shipgraveyard fighter ship.fbx"; public static string shipgraveyardrectshipwires = "RoR2/Base/shipgraveyard/shipgraveyard rect ship wires.fbx"; public static string shipgraveyardrectship = "RoR2/Base/shipgraveyard/shipgraveyard rect ship.fbx"; public static string shipgraveyardrectshipopt = "RoR2/Base/shipgraveyard/shipgraveyard rect ship_opt.fbx"; public static string shipgraveyardshipdebris = "RoR2/Base/shipgraveyard/shipgraveyard ship debris.fbx"; public static string shipgraveyardspikes = "RoR2/Base/shipgraveyard/shipgraveyard spikes.fbx"; public static string shipgraveyardspikesopt = "RoR2/Base/shipgraveyard/shipgraveyard spikes_opt.fbx"; public static string shipgraveyardterraincave = "RoR2/Base/shipgraveyard/shipgraveyard terrain cave.fbx"; public static string shipgraveyardterraincaveopt = "RoR2/Base/shipgraveyard/shipgraveyard terrain cave_opt.fbx"; public static string shipgraveyardterraindirt = "RoR2/Base/shipgraveyard/shipgraveyard terrain dirt.fbx"; public static string shipgraveyardterraindirtopt = "RoR2/Base/shipgraveyard/shipgraveyard terrain dirt_opt.fbx"; public static string shipgraveyardtorusship = "RoR2/Base/shipgraveyard/shipgraveyard torus ship.fbx"; public static string shipgraveyardtorusshipopt = "RoR2/Base/shipgraveyard/shipgraveyard torus ship_opt.fbx"; public static string terrainPractice = "RoR2/Base/shipgraveyard/terrainPractice.fbx"; public static string torusShip = "RoR2/Base/shipgraveyard/torusShip.fbx"; public static string vultureeggs = "RoR2/Base/shipgraveyard/vulture eggs.fbx"; public static string spmSGGrass = "RoR2/Base/shipgraveyard/spmSGGrass.spm"; public static string spmSGGrassopt = "RoR2/Base/shipgraveyard/spmSGGrass_opt.spm"; public static string spmSGGrassTallVariant = "RoR2/Base/shipgraveyard/spmSGGrassTall Variant.prefab"; public static string spmSGMushroom1Cluster = "RoR2/Base/shipgraveyard/spmSGMushroom1Cluster.spm"; public static string spmSGMushroom1Clusteropt = "RoR2/Base/shipgraveyard/spmSGMushroom1Cluster_opt.spm"; public static string spmSGMushroom1Tight = "RoR2/Base/shipgraveyard/spmSGMushroom1Tight.spm"; public static string spmSGMushroom1Tightopt = "RoR2/Base/shipgraveyard/spmSGMushroom1Tight_opt.spm"; public static string spmSGMushroom2Cluster = "RoR2/Base/shipgraveyard/spmSGMushroom2Cluster.spm"; public static string spmSGMushroom2Clusteropt = "RoR2/Base/shipgraveyard/spmSGMushroom2Cluster_opt.spm"; public static string SGCave = "RoR2/Base/shipgraveyard/SGCave.prefab"; public static string SGCave2 = "RoR2/Base/shipgraveyard/SGCave2.prefab"; public static string SGCave3 = "RoR2/Base/shipgraveyard/SGCave3.prefab"; public static string SGCaveInternalShelfMini = "RoR2/Base/shipgraveyard/SGCaveInternalShelfMini.prefab"; public static string SGCaveInternalStairsSwitchback = "RoR2/Base/shipgraveyard/SGCaveInternalStairsSwitchback.prefab"; public static string SGCaveInternaMiniBridge = "RoR2/Base/shipgraveyard/SGCaveInternaMiniBridge.prefab"; public static string SGCaveMeshBack = "RoR2/Base/shipgraveyard/SGCaveMeshBack.prefab"; public static string SGCaveShelf = "RoR2/Base/shipgraveyard/SGCaveShelf.prefab"; public static string SGCaveStairsMesh = "RoR2/Base/shipgraveyard/SGCaveStairsMesh.prefab"; public static string SGCaveStairsSwitchbackMesh = "RoR2/Base/shipgraveyard/SGCaveStairsSwitchbackMesh.prefab"; public static string SGCaveStalactite = "RoR2/Base/shipgraveyard/SGCaveStalactite.prefab"; public static string SGRockSmall = "RoR2/Base/shipgraveyard/SGRockSmall.prefab"; public static string SGSmallGroundStalagmite = "RoR2/Base/shipgraveyard/SGSmallGroundStalagmite.prefab"; public static string SGStalagmiteClusterBig = "RoR2/Base/shipgraveyard/SGStalagmiteClusterBig.prefab"; public static string SGStalagmiteClusterHugeCollision = "RoR2/Base/shipgraveyard/SGStalagmiteClusterHugeCollision.prefab"; public static string SGTerrainDirtMain = "RoR2/Base/shipgraveyard/SGTerrainDirtMain.prefab"; public static string SGTerrainDirtSecret = "RoR2/Base/shipgraveyard/SGTerrainDirtSecret.prefab"; public static string SGTerrainDirtShelfHighVariant = "RoR2/Base/shipgraveyard/SGTerrainDirtShelfHigh Variant.prefab"; public static string SGTerrainDirtShelfLarge = "RoR2/Base/shipgraveyard/SGTerrainDirtShelfLarge.prefab"; public static string SGTerrainDirtShelfLowVariant = "RoR2/Base/shipgraveyard/SGTerrainDirtShelfLow Variant.prefab"; public static string SGTerrainDirtShelfSmall = "RoR2/Base/shipgraveyard/SGTerrainDirtShelfSmall.prefab"; public static string SGTerrainDirtSkinnyPath = "RoR2/Base/shipgraveyard/SGTerrainDirtSkinnyPath.prefab"; public static string SGTerrainDirtWall = "RoR2/Base/shipgraveyard/SGTerrainDirtWall.prefab"; public static string SGTerrainDirtWallFull = "RoR2/Base/shipgraveyard/SGTerrainDirtWallFull.prefab"; public static string shipgraveyardPOIManager = "RoR2/Base/shipgraveyard/shipgraveyard_POIManager.prefab"; public static string ShipgraveyardDioramaDisplay = "RoR2/Base/shipgraveyard/ShipgraveyardDioramaDisplay.prefab"; public static string FighterShip = "RoR2/Base/shipgraveyard/FighterShip.prefab"; public static string RandomShipDebris1 = "RoR2/Base/shipgraveyard/RandomShipDebris1.prefab"; public static string RandomShipDebris2 = "RoR2/Base/shipgraveyard/RandomShipDebris2.prefab"; public static string RectShipEngine = "RoR2/Base/shipgraveyard/RectShipEngine.prefab"; public static string RectShipEngineOpen = "RoR2/Base/shipgraveyard/RectShipEngineOpen.prefab"; public static string RectShipMid = "RoR2/Base/shipgraveyard/RectShipMid.prefab"; public static string RectShipPiping = "RoR2/Base/shipgraveyard/RectShipPiping.prefab"; public static string RectShipRib = "RoR2/Base/shipgraveyard/RectShipRib.prefab"; public static string RectShipTail = "RoR2/Base/shipgraveyard/RectShipTail.prefab"; public static string RectShipTailCrushed = "RoR2/Base/shipgraveyard/RectShipTailCrushed.prefab"; public static string RectShipWireBasicHooked = "RoR2/Base/shipgraveyard/RectShipWireBasicHooked.prefab"; public static string RectShipWireLong = "RoR2/Base/shipgraveyard/RectShipWireLong.prefab"; public static string TorusShipCore = "RoR2/Base/shipgraveyard/TorusShip Core.prefab"; public static string TorusShipPlatform = "RoR2/Base/shipgraveyard/TorusShip Platform.prefab"; public static string TorusShipRound = "RoR2/Base/shipgraveyard/TorusShip Round.prefab"; public static string TorusShipContainer = "RoR2/Base/shipgraveyard/TorusShipContainer.prefab"; public static string VultureNest = "RoR2/Base/shipgraveyard/VultureNest.prefab"; public static string VultureNestopt = "RoR2/Base/shipgraveyard/VultureNest_opt.prefab"; public static string VultureEggBody = "RoR2/Base/shipgraveyard/VultureEggBody.prefab"; public static string spmFruitPlantCombined = "RoR2/Base/skymeadow/spmFruitPlantCombined.fbx"; public static string spmSMFruitPlant = "RoR2/Base/skymeadow/spmSMFruitPlant.spm"; public static string spmSMFruitPlantCombined = "RoR2/Base/skymeadow/spmSMFruitPlant_Combined.prefab"; public static string spmSMFruitPlantopt = "RoR2/Base/skymeadow/spmSMFruitPlant_opt.spm"; public static string spmSMFruitPlantDuo = "RoR2/Base/skymeadow/spmSMFruitPlantDuo.spm"; public static string spmSMFruitPlantDuoCombined = "RoR2/Base/skymeadow/spmSMFruitPlantDuo_Combined.prefab"; public static string spmSMFruitPlantDuoopt = "RoR2/Base/skymeadow/spmSMFruitPlantDuo_opt.spm"; public static string spmSMGrass = "RoR2/Base/skymeadow/spmSMGrass.spm"; public static string spmSMGrassopt = "RoR2/Base/skymeadow/spmSMGrass_opt.spm"; public static string spmSMGrassSmallCluster = "RoR2/Base/skymeadow/spmSMGrassSmallCluster.spm"; public static string spmSMGrassSmallClusteropt = "RoR2/Base/skymeadow/spmSMGrassSmallCluster_opt.spm"; public static string SMHangingVinesClusterPrefab = "RoR2/Base/skymeadow/SMHangingVinesCluster_Prefab.prefab"; public static string SMHangingVinesClusterPrefabopt = "RoR2/Base/skymeadow/SMHangingVinesCluster_Prefab_opt.prefab"; public static string spmHangingVineslowpoly = "RoR2/Base/skymeadow/spmHangingVines_lowpoly.fbx"; public static string spmSMHangingVinesCluster = "RoR2/Base/skymeadow/spmSMHangingVinesCluster.spm"; public static string spmSMHangingVinesClusteropt = "RoR2/Base/skymeadow/spmSMHangingVinesCluster_opt.spm"; public static string portaldialerpowerlines = "RoR2/Base/skymeadow/portal dialer powerlines.fbx"; public static string portaldialerpowerlinesopt = "RoR2/Base/skymeadow/portal dialer powerlines_opt.fbx"; public static string portaldialerprops = "RoR2/Base/skymeadow/portal dialer props.fbx"; public static string PowerCoil = "RoR2/Base/skymeadow/PowerCoil.prefab"; public static string PowerLineGeneratorVariant = "RoR2/Base/skymeadow/PowerLineGenerator Variant.prefab"; public static string MaulingRockImpact = "RoR2/Base/skymeadow/MaulingRockImpact.prefab"; public static string SMMaulingRockLarge = "RoR2/Base/skymeadow/SMMaulingRockLarge.prefab"; public static string SMMaulingRockMedium = "RoR2/Base/skymeadow/SMMaulingRockMedium.prefab"; public static string SMMaulingRockSmall = "RoR2/Base/skymeadow/SMMaulingRockSmall.prefab"; public static string flower = "RoR2/Base/skymeadow/flower.fbx"; public static string mdlMoonCloudMesh = "RoR2/Base/skymeadow/mdlMoonCloudMesh.fbx"; public static string mdlSMVine = "RoR2/Base/skymeadow/mdlSMVine.fbx"; public static string mdlVeryHighTessDualSphere = "RoR2/Base/skymeadow/mdlVeryHighTessDualSphere.fbx"; public static string mdlVeryHighTessSphere = "RoR2/Base/skymeadow/mdlVeryHighTessSphere.fbx"; public static string mdlVeryHighTessSphereopt = "RoR2/Base/skymeadow/mdlVeryHighTessSphere_opt.fbx"; public static string skymeadowdistantterrain = "RoR2/Base/skymeadow/skymeadow distant terrain.fbx"; public static string skymeadowdistantterrainopt = "RoR2/Base/skymeadow/skymeadow distant terrain_opt.fbx"; public static string skymeadowterrain = "RoR2/Base/skymeadow/skymeadow_terrain.fbx"; public static string skymeadowterrainopt = "RoR2/Base/skymeadow/skymeadow_terrain_opt.fbx"; public static string SkyMeadowFlowerA = "RoR2/Base/skymeadow/SkyMeadowFlower_A.FBX"; public static string SkyMeadowFlowerB = "RoR2/Base/skymeadow/SkyMeadowFlower_B.FBX"; public static string SMRockAngular = "RoR2/Base/skymeadow/SMRockAngular.fbx"; public static string SMRockAngularopt = "RoR2/Base/skymeadow/SMRockAngular_opt.fbx"; public static string SMRockBridge = "RoR2/Base/skymeadow/SMRockBridge.fbx"; public static string SMRockBridgeopt = "RoR2/Base/skymeadow/SMRockBridge_opt.fbx"; public static string SMRockFormationMedium1 = "RoR2/Base/skymeadow/SMRockFormationMedium1.fbx"; public static string SMRockFormationMedium1opt = "RoR2/Base/skymeadow/SMRockFormationMedium1_opt.fbx"; public static string SMRockFormationMedium2 = "RoR2/Base/skymeadow/SMRockFormationMedium2.fbx"; public static string SMRockFormationMedium2opt = "RoR2/Base/skymeadow/SMRockFormationMedium2_opt.fbx"; public static string SMRockFormationMedium3 = "RoR2/Base/skymeadow/SMRockFormationMedium3.fbx"; public static string SMRockFormationMedium3opt = "RoR2/Base/skymeadow/SMRockFormationMedium3_opt.fbx"; public static string SMRockFormationSmall1 = "RoR2/Base/skymeadow/SMRockFormationSmall1.fbx"; public static string SMRockFormationSmall1opt = "RoR2/Base/skymeadow/SMRockFormationSmall1_opt.fbx"; public static string SMRockFormationSmall2 = "RoR2/Base/skymeadow/SMRockFormationSmall2.fbx"; public static string SMRockFormationSmall2opt = "RoR2/Base/skymeadow/SMRockFormationSmall2_opt.fbx"; public static string SMRockOblong = "RoR2/Base/skymeadow/SMRockOblong.fbx"; public static string SMRockOblongopt = "RoR2/Base/skymeadow/SMRockOblong_opt.fbx"; public static string SMSpikeBridge = "RoR2/Base/skymeadow/SMSpikeBridge.fbx"; public static string SMSpikeBridgeopt = "RoR2/Base/skymeadow/SMSpikeBridge_opt.fbx"; public static string SMVineBody = "RoR2/Base/skymeadow/SMVineBody.FBX"; public static string SMVineBodyopt = "RoR2/Base/skymeadow/SMVineBody_opt.fbx"; public static string PortalDialerButton = "RoR2/Base/skymeadow/PortalDialerButton.prefab"; public static string ArtifactworldPortalPrespawnEffect = "RoR2/Base/skymeadow/ArtifactworldPortalPrespawnEffect.prefab"; public static string ArtifactworldPortalSpawnEffect = "RoR2/Base/skymeadow/ArtifactworldPortalSpawnEffect.prefab"; public static string PortalDialerEvent = "RoR2/Base/skymeadow/PortalDialerEvent.prefab"; public static string SMBBBoulderMediumRound1 = "RoR2/Base/skymeadow/SM_BBBoulderMediumRound1.prefab"; public static string SMBbRuinArchLOD01 = "RoR2/Base/skymeadow/SM_BbRuinArch_LOD0 1.prefab"; public static string SMBbRuinArchLOD0 = "RoR2/Base/skymeadow/SM_BbRuinArch_LOD0.prefab"; public static string SMBigFlower = "RoR2/Base/skymeadow/SM_BigFlower.prefab"; public static string SMBigFlower2 = "RoR2/Base/skymeadow/SM_BigFlower2.prefab"; public static string SMCrate2Mesh = "RoR2/Base/skymeadow/SM_Crate2Mesh.prefab"; public static string SMGPGiantRockSlab = "RoR2/Base/skymeadow/SM_GPGiantRockSlab.prefab"; public static string SMGravityTunnelFX = "RoR2/Base/skymeadow/SM_GravityTunnelFX.prefab"; public static string SMGroundMesh = "RoR2/Base/skymeadow/SM_GroundMesh.prefab"; public static string SMGroundStairs = "RoR2/Base/skymeadow/SM_GroundStairs.prefab"; public static string SMLargeCellTowerMesh = "RoR2/Base/skymeadow/SM_LargeCellTowerMesh.prefab"; public static string SMLight1Off = "RoR2/Base/skymeadow/SM_Light1Off.prefab"; public static string SMLight1On = "RoR2/Base/skymeadow/SM_Light1On.prefab"; public static string SMLight2Off = "RoR2/Base/skymeadow/SM_Light2Off.prefab"; public static string SMLight2On = "RoR2/Base/skymeadow/SM_Light2On.prefab"; public static string SMLight3 = "RoR2/Base/skymeadow/SM_Light3.prefab"; public static string SMPebble = "RoR2/Base/skymeadow/SM_Pebble.prefab"; public static string SMPillar = "RoR2/Base/skymeadow/SM_Pillar.prefab"; public static string SMPlateau1 = "RoR2/Base/skymeadow/SM_Plateau 1.prefab"; public static string SMPlateau10 = "RoR2/Base/skymeadow/SM_Plateau 10.prefab"; public static string SMPlateau11Bridge = "RoR2/Base/skymeadow/SM_Plateau 11 Bridge.prefab"; public static string SMPlateau11 = "RoR2/Base/skymeadow/SM_Plateau 11.prefab"; public static string SMPlateau13 = "RoR2/Base/skymeadow/SM_Plateau 13.prefab"; public static string SMPlateau14 = "RoR2/Base/skymeadow/SM_Plateau 14.prefab"; public static string SMPlateau15Option1 = "RoR2/Base/skymeadow/SM_Plateau 15 Option 1.prefab"; public static string SMPlateau15 = "RoR2/Base/skymeadow/SM_Plateau 15.prefab"; public static string SMPlateau16 = "RoR2/Base/skymeadow/SM_Plateau 16.prefab"; public static string SMPlateau2Broken001 = "RoR2/Base/skymeadow/SM_Plateau 2 Broken.001.prefab"; public static string SMPlateau2Broken002 = "RoR2/Base/skymeadow/SM_Plateau 2 Broken.002.prefab"; public static string SMPlateau2Broken = "RoR2/Base/skymeadow/SM_Plateau 2 Broken.prefab"; public static string SMPlateau3 = "RoR2/Base/skymeadow/SM_Plateau 3.prefab"; public static string SMPlateau4 = "RoR2/Base/skymeadow/SM_Plateau 4.prefab"; public static string SMPlateau5 = "RoR2/Base/skymeadow/SM_Plateau 5.prefab"; public static string SMPlateau6Option1 = "RoR2/Base/skymeadow/SM_Plateau 6 Option 1.prefab"; public static string SMPlateau6Option2 = "RoR2/Base/skymeadow/SM_Plateau 6 Option 2.prefab"; public static string SMPlateau6Option3 = "RoR2/Base/skymeadow/SM_Plateau 6 Option 3.prefab"; public static string SMPlateau6Option4 = "RoR2/Base/skymeadow/SM_Plateau 6 Option 4.prefab"; public static string SMPlateau6Option5 = "RoR2/Base/skymeadow/SM_Plateau 6 Option 5.prefab"; public static string SMPlateau6 = "RoR2/Base/skymeadow/SM_Plateau 6.prefab"; public static string SMPlateau7Broken = "RoR2/Base/skymeadow/SM_Plateau 7 Broken.prefab"; public static string SMPlateau8 = "RoR2/Base/skymeadow/SM_Plateau 8.prefab"; public static string SMPlateau9Option1 = "RoR2/Base/skymeadow/SM_Plateau 9 Option 1.prefab"; public static string SMPlateau9 = "RoR2/Base/skymeadow/SM_Plateau 9.prefab"; public static string SMPlateauTallOption1 = "RoR2/Base/skymeadow/SM_Plateau Tall Option 1.prefab"; public static string SMPlateauTallOption2 = "RoR2/Base/skymeadow/SM_Plateau Tall Option 2.prefab"; public static string SMPlateauTall = "RoR2/Base/skymeadow/SM_Plateau Tall.prefab"; public static string SMPlateauUnder1 = "RoR2/Base/skymeadow/SM_Plateau Under 1.prefab"; public static string SMPlateauUnder3 = "RoR2/Base/skymeadow/SM_Plateau Under 3.prefab"; public static string SMPlateauUnder4 = "RoR2/Base/skymeadow/SM_Plateau Under 4.prefab"; public static string SMPlatformBarrier1Wide = "RoR2/Base/skymeadow/SM_PlatformBarrier1Wide.prefab"; public static string SMPlatformBarrier2Wide = "RoR2/Base/skymeadow/SM_PlatformBarrier2Wide.prefab"; public static string SMPowerLine = "RoR2/Base/skymeadow/SM_PowerLine.prefab"; public static string SMPowerLineGenerator = "RoR2/Base/skymeadow/SM_PowerLineGenerator.prefab"; public static string SMRockConnect = "RoR2/Base/skymeadow/SM_Rock Connect.prefab"; public static string SMRockAngular35 = "RoR2/Base/skymeadow/SM_RockAngular.prefab"; public static string SMRockBridge9 = "RoR2/Base/skymeadow/SM_RockBridge.prefab"; public static string SMRockFormationMedium120 = "RoR2/Base/skymeadow/SM_RockFormationMedium1.prefab"; public static string SMRockFormationMedium25 = "RoR2/Base/skymeadow/SM_RockFormationMedium2.prefab"; public static string SMRockFormationMedium332 = "RoR2/Base/skymeadow/SM_RockFormationMedium3.prefab"; public static string SMRockFormationSmall115 = "RoR2/Base/skymeadow/SM_RockFormationSmall1.prefab"; public static string SMRockFormationSmall27 = "RoR2/Base/skymeadow/SM_RockFormationSmall2.prefab"; public static string SMRockOblong0 = "RoR2/Base/skymeadow/SM_RockOblong.prefab"; public static string SMSkyboxPrefab = "RoR2/Base/skymeadow/SM_SkyboxPrefab.prefab"; public static string SMSpikeBridge1 = "RoR2/Base/skymeadow/SM_SpikeBridge.prefab"; public static string SMStairway = "RoR2/Base/skymeadow/SM_Stairway.prefab"; public static string SMTerrainDistant = "RoR2/Base/skymeadow/SM_Terrain Distant.prefab"; public static string SMTerrainSouth = "RoR2/Base/skymeadow/SM_Terrain South.prefab"; public static string SMTerrainWest = "RoR2/Base/skymeadow/SM_Terrain West.prefab"; public static string SMTerrain = "RoR2/Base/skymeadow/SM_Terrain.prefab"; public static string SMUsedChest = "RoR2/Base/skymeadow/SM_UsedChest.prefab"; public static string SMVine1 = "RoR2/Base/skymeadow/SM_Vine1.prefab"; public static string SMVine2 = "RoR2/Base/skymeadow/SM_Vine2.prefab"; public static string SMVine3 = "RoR2/Base/skymeadow/SM_Vine3.prefab"; public static string SMWaterContainer1 = "RoR2/Base/skymeadow/SM_WaterContainer1.prefab"; public static string SMRuinArch = "RoR2/Base/skymeadow/SMRuinArch.prefab"; public static string SMRuinGateDoor1 = "RoR2/Base/skymeadow/SMRuinGateDoor1.prefab"; public static string SMRuinGateDoor2 = "RoR2/Base/skymeadow/SMRuinGateDoor2.prefab"; public static string SMRuinPillar = "RoR2/Base/skymeadow/SMRuinPillar.prefab"; public static string SMSimpleGrass = "RoR2/Base/skymeadow/SMSimpleGrass.prefab"; public static string spmSMSmallFlowerBulb = "RoR2/Base/skymeadow/spmSMSmallFlowerBulb.prefab"; public static string skymeadowPOIManager = "RoR2/Base/skymeadow/skymeadow_POIManager.prefab"; public static string skymeadowAirNode = "RoR2/Base/skymeadow/skymeadowAirNode.prefab"; public static string SkyMeadowDioramaDisplay = "RoR2/Base/skymeadow/SkyMeadowDioramaDisplay.prefab"; public static string skymeadowGroundNode = "RoR2/Base/skymeadow/skymeadowGroundNode.prefab"; public static string SMDustStreakFX = "RoR2/Base/skymeadow/SMDustStreakFX.prefab"; public static string CU1Props = "RoR2/Base/title/CU1 Props.prefab"; public static string CU2Props = "RoR2/Base/title/CU2 Props.prefab"; public static string CU3Props = "RoR2/Base/title/CU3 Props.prefab"; public static string CU4Props = "RoR2/Base/title/CU4 Props.prefab"; public static string DeadCommando = "RoR2/Base/title/DeadCommando.prefab"; public static string mdlSpacecabinWindow = "RoR2/Base/title/mdlSpacecabinWindow.fbx"; public static string mdlTeruteru = "RoR2/Base/title/mdlTeruteru.fbx"; public static string mdltitlechest = "RoR2/Base/title/mdltitlechest.fbx"; public static string mdltitleCommando = "RoR2/Base/title/mdltitleCommando.fbx"; public static string MENUSettings = "RoR2/Base/title/MENU_ Settings.prefab"; public static string spacecabin = "RoR2/Base/title/spacecabin.fbx"; public static string TeruHolder = "RoR2/Base/title/TeruHolder.prefab"; public static string TitleFogParticles = "RoR2/Base/title/Title Fog, Particles.prefab"; public static string TitleFogPlane = "RoR2/Base/title/Title Fog, Plane.prefab"; public static string titleterrain = "RoR2/Base/title/title terrain.fbx"; public static string titleterrain8 = "RoR2/Base/title/title terrain.prefab"; public static string titleterrainopt = "RoR2/Base/title/title terrain_opt.fbx"; public static string TitleAqueductFullLong = "RoR2/Base/title/TitleAqueductFullLong.prefab"; public static string spmTitleGrass = "RoR2/Base/title/spmTitleGrass.spm"; public static string spmTitleGrassopt = "RoR2/Base/title/spmTitleGrass_opt.spm"; public static string WPDirtDecalLong = "RoR2/Base/wispgraveyard/WPDirtDecalLong.prefab"; public static string WPDirtDecalRadial = "RoR2/Base/wispgraveyard/WPDirtDecalRadial.prefab"; public static string spmWPPine1 = "RoR2/Base/wispgraveyard/spmWPPine1.spm"; public static string spmWPPine1opt = "RoR2/Base/wispgraveyard/spmWPPine1_opt.spm"; public static string spmWPPine1BillboardOnly = "RoR2/Base/wispgraveyard/spmWPPine1BillboardOnly.prefab"; public static string spmWPPine1Collision = "RoR2/Base/wispgraveyard/spmWPPine1Collision.prefab"; public static string spmWPPine1Collisionopt = "RoR2/Base/wispgraveyard/spmWPPine1Collision_opt.prefab"; public static string spmWPPine1Distant = "RoR2/Base/wispgraveyard/spmWPPine1Distant.prefab"; public static string spmWPPine1Distantopt = "RoR2/Base/wispgraveyard/spmWPPine1Distant_opt.prefab"; public static string WPBoulderMediumRound1 = "RoR2/Base/wispgraveyard/WPBoulderMediumRound1.prefab"; public static string WPTerrainBackwall1Detailed = "RoR2/Base/wispgraveyard/WPTerrainBackwall1Detailed.prefab"; public static string WPTerrainBackwall2 = "RoR2/Base/wispgraveyard/WPTerrainBackwall2.prefab"; public static string WPTerrainBackwall3 = "RoR2/Base/wispgraveyard/WPTerrainBackwall3.prefab"; public static string wispgraveblenders = "RoR2/Base/wispgraveyard/wispgrave blenders.fbx"; public static string wispgravetempleterrain = "RoR2/Base/wispgraveyard/wispgrave temple terrain.fbx"; public static string wispgravetempleterrainopt = "RoR2/Base/wispgraveyard/wispgrave temple terrain_opt.fbx"; public static string mdlIcoRockL = "RoR2/Base/wispgraveyard/mdlIcoRockL.fbx"; public static string WPFlag = "RoR2/Base/wispgraveyard/WPFlag.prefab"; public static string WPObeliskLarge = "RoR2/Base/wispgraveyard/WPObeliskLarge.prefab"; public static string WPObeliskSmall = "RoR2/Base/wispgraveyard/WPObeliskSmall.prefab"; public static string WPPlanter1 = "RoR2/Base/wispgraveyard/WPPlanter1.prefab"; public static string WPPlanter1KnockedOver = "RoR2/Base/wispgraveyard/WPPlanter1KnockedOver.prefab"; public static string WPPlanter1Long = "RoR2/Base/wispgraveyard/WPPlanter1Long.prefab"; public static string WPPlanter1LongKnockedOver = "RoR2/Base/wispgraveyard/WPPlanter1LongKnockedOver.prefab"; public static string WPPlanter1WithBonsaiTree = "RoR2/Base/wispgraveyard/WPPlanter1WithBonsaiTree.prefab"; public static string WPPlanter2 = "RoR2/Base/wispgraveyard/WPPlanter2.prefab"; public static string WPPlanter2WithBonsaiTree = "RoR2/Base/wispgraveyard/WPPlanter2WithBonsaiTree.prefab"; public static string WPPlanter2WithPineTree = "RoR2/Base/wispgraveyard/WPPlanter2WithPineTree.prefab"; public static string WPPlatform2DirtTrack = "RoR2/Base/wispgraveyard/WPPlatform2DirtTrack.prefab"; public static string WPWispMaskHolder1 = "RoR2/Base/wispgraveyard/WPWispMaskHolder1.prefab"; public static string WPWispMaskHolder1KnockedOver = "RoR2/Base/wispgraveyard/WPWispMaskHolder1KnockedOver.prefab"; public static string WPWispMaskSingle = "RoR2/Base/wispgraveyard/WPWispMaskSingle.prefab"; public static string SkyboxDistantPlatforms = "RoR2/Base/wispgraveyard/SkyboxDistantPlatforms.prefab"; public static string WPBridgeColumn = "RoR2/Base/wispgraveyard/WPBridgeColumn.prefab"; public static string WPBridgeComplete = "RoR2/Base/wispgraveyard/WPBridgeComplete.prefab"; public static string WPBridgeDoubleEntry = "RoR2/Base/wispgraveyard/WPBridgeDoubleEntry.prefab"; public static string WPBridgeEntry = "RoR2/Base/wispgraveyard/WPBridgeEntry.prefab"; public static string WPPlatform1FullRing = "RoR2/Base/wispgraveyard/WPPlatform1FullRing.prefab"; public static string WPPlatform1PartialRingVariant = "RoR2/Base/wispgraveyard/WPPlatform1PartialRing Variant.prefab"; public static string WPPlatform1Stairs = "RoR2/Base/wispgraveyard/WPPlatform1Stairs.prefab"; public static string WPPlatform2 = "RoR2/Base/wispgraveyard/WPPlatform2.prefab"; public static string WPPlatform2Barrier = "RoR2/Base/wispgraveyard/WPPlatform2Barrier.prefab"; public static string WPPlatform2BarrierHigh = "RoR2/Base/wispgraveyard/WPPlatform2BarrierHigh.prefab"; public static string WPPlatform2ElevatedSectionRadial = "RoR2/Base/wispgraveyard/WPPlatform2ElevatedSectionRadial.prefab"; public static string WPPlatform2ElevatedSectionSweeped = "RoR2/Base/wispgraveyard/WPPlatform2ElevatedSectionSweeped.prefab"; public static string WPPlatform2SideExtender = "RoR2/Base/wispgraveyard/WPPlatform2SideExtender.prefab"; public static string WPPlatform2SpiralStairsCCW = "RoR2/Base/wispgraveyard/WPPlatform2SpiralStairsCCW.prefab"; public static string WPPlatform2SpiralStairsCW = "RoR2/Base/wispgraveyard/WPPlatform2SpiralStairsCW.prefab"; public static string WPSmallBridge = "RoR2/Base/wispgraveyard/WPSmallBridge.prefab"; public static string wispgravetemplemodular = "RoR2/Base/wispgraveyard/wispgrave temple modular.fbx"; public static string wispgravetempleprops = "RoR2/Base/wispgraveyard/wispgrave temple props.fbx"; public static string wispgravetemplepropsopt = "RoR2/Base/wispgraveyard/wispgrave temple props_opt.fbx"; public static string wispgraveyardPOIManager = "RoR2/Base/wispgraveyard/wispgraveyard_POIManager.prefab"; public static string WispgraveyardDioramaDisplay = "RoR2/Base/wispgraveyard/WispgraveyardDioramaDisplay.prefab"; public static string WPSkybox = "RoR2/Base/wispgraveyard/WPSkybox.prefab"; public static string mdlMeteor23 = "RoR2/Base/mdlMeteor.fbx"; public static string AchievementNotificationPanel = "RoR2/Base/UI/AchievementNotificationPanel.prefab"; public static string FriendSessionBrowser = "RoR2/Base/UI/FriendSessionBrowser.prefab"; public static string HighlightBossItem = "RoR2/Base/UI/HighlightBossItem.prefab"; public static string HighlightEquipment = "RoR2/Base/UI/HighlightEquipment.prefab"; public static string HighlightFoodItem = "RoR2/Base/UI/HighlightFoodItem.prefab"; public static string HighlightLunarItem = "RoR2/Base/UI/HighlightLunarItem.prefab"; public static string HighlightTier1Item = "RoR2/Base/UI/HighlightTier1Item.prefab"; public static string HighlightTier2Item = "RoR2/Base/UI/HighlightTier2Item.prefab"; public static string HighlightTier3Item = "RoR2/Base/UI/HighlightTier3Item.prefab"; public static string HighlightVoidBossItem = "RoR2/Base/UI/HighlightVoidBossItem.prefab"; public static string HighlightVoidTier1Item = "RoR2/Base/UI/HighlightVoidTier1Item.prefab"; public static string HighlightVoidTier2Item = "RoR2/Base/UI/HighlightVoidTier2Item.prefab"; public static string HighlightVoidTier3Item = "RoR2/Base/UI/HighlightVoidTier3Item.prefab"; public static string SessionButton = "RoR2/Base/UI/SessionButton.prefab"; public static string artifactExtraTooltipInfo = "RoR2/Base/UI/artifactExtraTooltipInfo.prefab"; public static string ArtifactStatusIcon = "RoR2/Base/UI/ArtifactStatusIcon.prefab"; public static string BuffIcon = "RoR2/Base/UI/BuffIcon.prefab"; public static string ButtonSelectionHighlight = "RoR2/Base/UI/ButtonSelectionHighlight.prefab"; public static string CameraManager = "RoR2/Base/UI/CameraManager.prefab"; public static string CharacterSelectUI = "RoR2/Base/UI/CharacterSelectUI.prefab"; public static string CharacterSelectUILocal = "RoR2/Base/UI/CharacterSelectUILocal.prefab"; public static string CharacterSelectUIMain = "RoR2/Base/UI/CharacterSelectUIMain.prefab"; public static string ChatBoxInRun = "RoR2/Base/UI/ChatBox, In Run.prefab"; public static string ChatBox = "RoR2/Base/UI/ChatBox.prefab"; public static string ConsoleAutoCompleteDropdown = "RoR2/Base/UI/ConsoleAutoCompleteDropdown.prefab"; public static string ConsoleWindow = "RoR2/Base/UI/ConsoleWindow.prefab"; public static string HeaderNavigationButton = "RoR2/Base/UI/HeaderNavigationButton.prefab"; public static string LeftButton = "RoR2/Base/UI/LeftButton.prefab"; public static string RightButton = "RoR2/Base/UI/RightButton.prefab"; public static string GenericTextBox = "RoR2/Base/UI/GenericTextBox.prefab"; public static string BackgroundStamp = "RoR2/Base/UI/CreditsPanel/BackgroundStamp.prefab"; public static string CompanyCredits = "RoR2/Base/UI/CreditsPanel/CompanyCredits.prefab"; public static string CreditNameRoleStrip = "RoR2/Base/UI/CreditsPanel/CreditNameRoleStrip.prefab"; public static string CreditsPanel = "RoR2/Base/UI/CreditsPanel/CreditsPanel.prefab"; public static string HGCreditNameLabel = "RoR2/Base/UI/CreditsPanel/HGCreditNameLabel.prefab"; public static string SoftwareNotice = "RoR2/Base/UI/CreditsPanel/SoftwareNotice.prefab"; public static string BadCrosshair = "RoR2/Base/UI/BadCrosshair.prefab"; public static string SimpleDotCrosshair = "RoR2/Base/UI/SimpleDotCrosshair.prefab"; public static string SprintingCrosshair = "RoR2/Base/UI/SprintingCrosshair.prefab"; public static string StandardCrosshair = "RoR2/Base/UI/StandardCrosshair.prefab"; public static string StandardCrosshairSmall = "RoR2/Base/UI/StandardCrosshairSmall.prefab"; public static string StraightBracketCrosshair = "RoR2/Base/UI/StraightBracketCrosshair.prefab"; public static string TiltedBracketCrosshair = "RoR2/Base/UI/TiltedBracketCrosshair.prefab"; public static string WideBracketCrosshair = "RoR2/Base/UI/WideBracketCrosshair.prefab"; public static string CursorIndicator = "RoR2/Base/UI/Cursor/CursorIndicator.prefab"; public static string DefaultLabel = "RoR2/Base/UI/DefaultLabel.prefab"; public static string DefaultMPButton = "RoR2/Base/UI/DefaultMPButton.prefab"; public static string DefaultPanel = "RoR2/Base/UI/DefaultPanel.prefab"; public static string DefaultScrollView = "RoR2/Base/UI/DefaultScrollView.prefab"; public static string PublicTestBanner = "RoR2/Base/UI/PublicTestBanner.prefab"; public static string PublicTestBannerSingleLine = "RoR2/Base/UI/PublicTestBanner_SingleLine.prefab"; public static string Dropdown = "RoR2/Base/UI/Dropdown.prefab"; public static string ExtraGameModeMenu = "RoR2/Base/UI/ExtraGameModeMenu.prefab"; public static string FirstTimeEAWarning = "RoR2/Base/UI/FirstTimeEAWarning.prefab"; public static string GameEndReportPanel = "RoR2/Base/UI/GameEndReportPanel.prefab"; public static string GameEndReportPanelScrolling = "RoR2/Base/UI/GameEndReportPanelScrolling.prefab"; public static string StatStripTemplate = "RoR2/Base/UI/StatStripTemplate.prefab"; public static string BottomSideFade = "RoR2/Base/UI/BottomSideFade.prefab"; public static string ButtonSelectionHighlightCheckbox = "RoR2/Base/UI/ButtonSelectionHighlight, Checkbox.prefab"; public static string DescriptionPanelNaked = "RoR2/Base/UI/DescriptionPanel, Naked.prefab"; public static string DescriptionPanel = "RoR2/Base/UI/DescriptionPanel.prefab"; public static string GenericGlyph = "RoR2/Base/UI/GenericGlyph.prefab"; public static string GenericGlyphAndDescriptionVariant = "RoR2/Base/UI/GenericGlyphAndDescription Variant.prefab"; public static string GenericHeaderButton = "RoR2/Base/UI/GenericHeaderButton.prefab"; public static string GenericIconButton = "RoR2/Base/UI/GenericIconButton.prefab"; public static string GenericMenuButton = "RoR2/Base/UI/GenericMenuButton.prefab"; public static string GenericMenuButtonPanel = "RoR2/Base/UI/GenericMenuButtonPanel.prefab"; public static string GenericToggle = "RoR2/Base/UI/GenericToggle.prefab"; public static string HeaderHighlight = "RoR2/Base/UI/HeaderHighlight.prefab"; public static string NakedButton = "RoR2/Base/UI/NakedButton.prefab"; public static string PanelSelectionHighlight = "RoR2/Base/UI/PanelSelectionHighlight.prefab"; public static string SettingsEntryButtonBinding = "RoR2/Base/UI/SettingsEntryButton, Binding.prefab"; public static string SettingsEntryButtonBool = "RoR2/Base/UI/SettingsEntryButton, Bool.prefab"; public static string SettingsEntryButtonCarousel = "RoR2/Base/UI/SettingsEntryButton, Carousel.prefab"; public static string SettingsEntryButtonLocked = "RoR2/Base/UI/SettingsEntryButton, Locked.prefab"; public static string SettingsEntryButtonSlider = "RoR2/Base/UI/SettingsEntryButton, Slider.prefab"; public static string SettingsEntryButtonString = "RoR2/Base/UI/SettingsEntryButton, String.prefab"; public static string SettingsSubPanel = "RoR2/Base/UI/SettingsSubPanel.prefab"; public static string SettingsSubsection = "RoR2/Base/UI/SettingsSubsection.prefab"; public static string SubmenuLegend = "RoR2/Base/UI/SubmenuLegend.prefab"; public static string SubmenuLegend2Row = "RoR2/Base/UI/SubmenuLegend-2Row.prefab"; public static string TopSideFade = "RoR2/Base/UI/TopSideFade.prefab"; public static string GenericWarningStrip = "RoR2/Base/UI/GenericWarningStrip.prefab"; public static string HealthBarSubBar = "RoR2/Base/UI/HealthBarSubBar.prefab"; public static string HostGamePanel = "RoR2/Base/UI/HostGamePanel.prefab"; public static string AllyCard = "RoR2/Base/UI/AllyCard.prefab"; public static string BossHealthBarPip = "RoR2/Base/UI/BossHealthBarPip.prefab"; public static string CombatHealthbar = "RoR2/Base/UI/CombatHealthbar.prefab"; public static string EnemyInfoPanel = "RoR2/Base/UI/EnemyInfoPanel.prefab"; public static string EnemyInfoPanelItemIcon = "RoR2/Base/UI/EnemyInfoPanelItemIcon.prefab"; public static string HUDSimple = "RoR2/Base/UI/HUDSimple.prefab"; public static string HUDSimpleBig = "RoR2/Base/UI/HUDSimple_Big.prefab"; public static string InspectPanel = "RoR2/Base/UI/InspectPanel.prefab"; public static string GenericTransformationNotificationPanel = "RoR2/Base/UI/GenericTransformationNotificationPanel.prefab"; public static string NotificationPanel2 = "RoR2/Base/UI/NotificationPanel2.prefab"; public static string ScoreboardStrip = "RoR2/Base/UI/ScoreboardStrip.prefab"; public static string SkillDisplay = "RoR2/Base/UI/SkillDisplay.prefab"; public static string HudCountdownPanel = "RoR2/Base/UI/HudCountdownPanel.prefab"; public static string IconGenerator = "RoR2/Base/UI/IconGenerator.prefab"; public static string ItemIcon = "RoR2/Base/UI/ItemIcon.prefab"; public static string ItemIconScoreboard = "RoR2/Base/UI/ItemIconScoreboard.prefab"; public static string ItemIconScoreboardInGame = "RoR2/Base/UI/ItemIconScoreboard_InGame.prefab"; public static string LanguageDropdown = "RoR2/Base/UI/LanguageDropdown.prefab"; public static string LeaderboardPage = "RoR2/Base/UI/LeaderboardPage.prefab"; public static string LeaderboardStrip = "RoR2/Base/UI/LeaderboardStrip.prefab"; public static string LoadoutButton = "RoR2/Base/UI/LoadoutButton.prefab"; public static string LobbyControlPanelClosed = "RoR2/Base/UI/LobbyControlPanel (Closed).prefab"; public static string LobbyControlPanelOpenVariant = "RoR2/Base/UI/LobbyControlPanel (Open) Variant.prefab"; public static string LobbyControlPanelLimitedandClosed = "RoR2/Base/UI/LobbyControlPanel, Limited and Closed.prefab"; public static string LobbyLeaderCrown = "RoR2/Base/UI/LobbyLeaderCrown.prefab"; public static string LobbyUserListElement = "RoR2/Base/UI/LobbyUserListElement.prefab"; public static string LocalMultiplayerMenu = "RoR2/Base/UI/LocalMultiplayerMenu.prefab"; public static string AchievementEntryIcon = "RoR2/Base/UI/AchievementEntryIcon.prefab"; public static string DroneEntryIcon = "RoR2/Base/UI/DroneEntryIcon.prefab"; public static string ItemEntryIcon = "RoR2/Base/UI/ItemEntryIcon.prefab"; public static string LogbookCategoryButton = "RoR2/Base/UI/LogbookCategoryButton.prefab"; public static string LogbookMenu = "RoR2/Base/UI/LogbookMenu.prefab"; public static string LogbookMenuPauseVariant = "RoR2/Base/UI/LogbookMenu_PauseVariant.prefab"; public static string LogbookStatStrip = "RoR2/Base/UI/LogbookStatStrip.prefab"; public static string MonsterEntryIcon = "RoR2/Base/UI/MonsterEntryIcon.prefab"; public static string MorgueEntryIcon = "RoR2/Base/UI/MorgueEntryIcon.prefab"; public static string ProfileStatsPanel = "RoR2/Base/UI/ProfileStatsPanel.prefab"; public static string SimpleLogBookPage = "RoR2/Base/UI/SimpleLogBookPage.prefab"; public static string SimpleTextPanel = "RoR2/Base/UI/SimpleTextPanel.prefab"; public static string StageEntryIcon = "RoR2/Base/UI/StageEntryIcon.prefab"; public static string StatsEntryIcon = "RoR2/Base/UI/StatsEntryIcon.prefab"; public static string SurvivorEntryIcon = "RoR2/Base/UI/SurvivorEntryIcon.prefab"; public static string MoreMenu = "RoR2/Base/UI/MoreMenu.prefab"; public static string MultiplayerMenu2 = "RoR2/Base/UI/MultiplayerMenu2.prefab"; public static string PauseScreen = "RoR2/Base/UI/PauseScreen.prefab"; public static string PieChartPanel = "RoR2/Base/UI/PieChartPanel.prefab"; public static string ProfileMenu = "RoR2/Base/UI/ProfileMenu.prefab"; public static string GameBrowserPanel = "RoR2/Base/UI/GameBrowserPanel.prefab"; public static string RemoteGameDetailsPanel = "RoR2/Base/UI/RemoteGameDetailsPanel.prefab"; public static string RemoteGameInfoCard = "RoR2/Base/UI/RemoteGameInfoCard.prefab"; public static string RuleBookViewerVertical = "RoR2/Base/UI/RuleBookViewerVertical.prefab"; public static string RuleChoiceIcon = "RoR2/Base/UI/RuleChoiceIcon.prefab"; public static string PopoutPanel = "RoR2/Base/UI/PopoutPanel.prefab"; public static string RulePopoutPanel = "RoR2/Base/UI/RulePopoutPanel.prefab"; public static string ServerBrowserWindow = "RoR2/Base/UI/ServerBrowserWindow.prefab"; public static string SettingsBindingControl = "RoR2/Base/UI/SettingsBindingControl.prefab"; public static string SettingsCheckBox = "RoR2/Base/UI/SettingsCheckBox.prefab"; public static string SettingsSliderControl = "RoR2/Base/UI/SettingsSliderControl.prefab"; public static string SettingsPanel = "RoR2/Base/UI/SettingsPanel.prefab"; public static string SettingsPanelTitle = "RoR2/Base/UI/SettingsPanelTitle.prefab"; public static string SimpleDialogRoot = "RoR2/Base/UI/SimpleDialogRoot.prefab"; public static string SkipVoteOverlay = "RoR2/Base/UI/SkipVoteOverlay.prefab"; public static string ManagedSpriteHP = "RoR2/Base/UI/SpriteText/Managed_Sprite_HP.prefab"; public static string ManagedSpriteItemCounter = "RoR2/Base/UI/SpriteText/Managed_Sprite_ItemCounter.prefab"; public static string ManagedSpritePercent = "RoR2/Base/UI/SpriteText/Managed_Sprite_Percent.prefab"; public static string ManagedSpriteTimer = "RoR2/Base/UI/SpriteText/Managed_Sprite_Timer.prefab"; public static string SpriteNumberImage = "RoR2/Base/UI/SpriteText/SpriteNumberImage.prefab"; public static string TitleMenu = "RoR2/Base/UI/TitleMenu.prefab"; public static string Tooltip = "RoR2/Base/UI/Tooltip.prefab"; public static string NewViewableTag = "RoR2/Base/UI/NewViewableTag.prefab"; public static string VoiceChatCard = "RoR2/Base/UI/VoiceChatCard.prefab"; public static string VoteInfoPanel = "RoR2/Base/UI/VoteInfoPanel.prefab"; public static string SoundEmitter = "RoR2/Base/Utility/SoundEmitter.prefab"; public static string DelusionItemDissolveVFX = "RoR2/CU8/DelusionItemDissolveVFX.prefab"; public static string DelusionOptionPickerPanel = "RoR2/CU8/DelusionOptionPickerPanel.prefab"; public static string mdlArtifactDelusion = "RoR2/CU8/mdlArtifactDelusion.fbx"; public static string PickupDevotion = "RoR2/CU8/PickupDevotion.prefab"; public static string DevotedLemurianBody = "RoR2/CU8/DevotedLemurianBody.prefab"; public static string DevotedLemurianBruiserBody = "RoR2/CU8/DevotedLemurianBruiserBody.prefab"; public static string DevotionEvolutionVFX = "RoR2/CU8/DevotionEvolutionVFX.prefab"; public static string DisplayLemurianHarness = "RoR2/CU8/Harness/DisplayLemurianHarness.prefab"; public static string mdlLemurianHarness = "RoR2/CU8/Harness/mdlLemurianHarness.fbx"; public static string PickupLemurianHarness = "RoR2/CU8/Harness/PickupLemurianHarness.prefab"; public static string mdlArtifactDevotion = "RoR2/CU8/mdlArtifactDevotion.fbx"; public static string DevotedLemurianMaster = "RoR2/CU8/LemurianEgg/DevotedLemurianMaster.prefab"; public static string DevotionMinionInventory = "RoR2/CU8/LemurianEgg/DevotionMinionInventory.prefab"; public static string LemurianEgg = "RoR2/CU8/LemurianEgg/LemurianEgg.prefab"; public static string LemurianEggPickerPanel = "RoR2/CU8/LemurianEgg/LemurianEggPickerPanel.prefab"; public static string EggExplosion = "RoR2/CU8/LemurianEgg/EggExplosion.prefab"; public static string mdlLemurianEgg = "RoR2/CU8/LemurianEgg/mdlLemurianEgg.fbx"; public static string TLTerrainNewtRoot = "RoR2/CU8/TLTerrain_NewtRoot.prefab"; public static string mdLTDiorama = "RoR2/CU8/mdLTDiorama.fbx"; public static string WeatherLakes = "RoR2/CU8/Weather, Lakes.prefab"; public static string EnemiesTotal = "RoR2/Dev/Common/EnemiesTotal.prefab"; public static string DevCheatMenu = "RoR2/Dev/Common/DevCheatMenu.prefab"; public static string AttackVisualizerBlast = "RoR2/Dev/Common/AttackVisualizerBlast.prefab"; public static string AttackVisualizerBullet = "RoR2/Dev/Common/AttackVisualizerBullet.prefab"; public static string HitboxVisualizerCapsule = "RoR2/Dev/Common/HitboxVisualizerCapsule.fbx"; public static string KeyBindingDisplay = "RoR2/Dev/Common/KeyBindingDisplay.prefab"; public static string GrayBox1SidedSloped = "RoR2/Dev/Common/GrayBox1SidedSloped.prefab"; public static string GrayBox2SidedDip = "RoR2/Dev/Common/GrayBox2SidedDip.prefab"; public static string GrayBox2SidedSloped = "RoR2/Dev/Common/GrayBox2SidedSloped.prefab"; public static string GrayBoxAllSloped = "RoR2/Dev/Common/GrayBoxAllSloped.prefab"; public static string GrayBoxBoulder1 = "RoR2/Dev/Common/GrayBoxBoulder1.prefab"; public static string GrayBoxCube = "RoR2/Dev/Common/GrayBoxCube.prefab"; public static string GrayBoxCubeWalled = "RoR2/Dev/Common/GrayBoxCubeWalled.prefab"; public static string GrayBoxCylinder = "RoR2/Dev/Common/GrayBoxCylinder.prefab"; public static string GrayBoxHalfCircleWalkway = "RoR2/Dev/Common/GrayBoxHalfCircleWalkway.prefab"; public static string GrayBoxQuarterCircleWalkway = "RoR2/Dev/Common/GrayBoxQuarterCircleWalkway.prefab"; public static string GrayboxSlopedTube = "RoR2/Dev/Common/GrayboxSlopedTube.prefab"; public static string mdlGrayboxPieces = "RoR2/Dev/Common/mdlGrayboxPieces.fbx"; public static string CameraPosition = "RoR2/Dev/ItemLogBookPositionalOffsets/CameraPosition.prefab"; public static string FocusPoint = "RoR2/Dev/ItemLogBookPositionalOffsets/FocusPoint.prefab"; public static string FocusPointCameraPosition = "RoR2/Dev/ItemLogBookPositionalOffsets/FocusPointCameraPosition.prefab"; public static string AcidLarvaBody = "RoR2/DLC1/AcidLarva/AcidLarvaBody.prefab"; public static string AcidLarvaDeath = "RoR2/DLC1/AcidLarva/AcidLarvaDeath.prefab"; public static string AcidLarvaLeapEffect = "RoR2/DLC1/AcidLarva/AcidLarvaLeapEffect.prefab"; public static string AcidLarvaMaster = "RoR2/DLC1/AcidLarva/AcidLarvaMaster.prefab"; public static string mdlAcidLarva = "RoR2/DLC1/AcidLarva/mdlAcidLarva.fbx"; public static string mdlAcidLarvaAims = "RoR2/DLC1/AcidLarva/mdlAcidLarva@Aims.fbx"; public static string mdlAcidLarvaAttack = "RoR2/DLC1/AcidLarva/mdlAcidLarva@Attack.fbx"; public static string mdlAcidLarvaDeath = "RoR2/DLC1/AcidLarva/mdlAcidLarva@Death.fbx"; public static string mdlAcidLarvaFlinch = "RoR2/DLC1/AcidLarva/mdlAcidLarva@Flinch.fbx"; public static string mdlAcidLarvaIdle = "RoR2/DLC1/AcidLarva/mdlAcidLarva@Idle.fbx"; public static string mdlAcidLarvaJumpLand = "RoR2/DLC1/AcidLarva/mdlAcidLarva@JumpLand.fbx"; public static string mdlAcidLarvaSpawn = "RoR2/DLC1/AcidLarva/mdlAcidLarva@Spawn.fbx"; public static string mdlAcidLarvaSprint = "RoR2/DLC1/AcidLarva/mdlAcidLarva@Sprint.fbx"; public static string mdlAcidLarvaStun = "RoR2/DLC1/AcidLarva/mdlAcidLarva@Stun.fbx"; public static string mdlAcidLarvaWalk = "RoR2/DLC1/AcidLarva/mdlAcidLarva@Walk.fbx"; public static string AcidLarvaLeapExplosion = "RoR2/DLC1/AcidLarva/AcidLarvaLeapExplosion.prefab"; public static string Assassin2Body = "RoR2/DLC1/Assassin2/Assassin2Body.prefab"; public static string Assassin2Master = "RoR2/DLC1/Assassin2/Assassin2Master.prefab"; public static string AssassinDeathFX = "RoR2/DLC1/Assassin2/AssassinDeathFX.prefab"; public static string AssassinHideRevealFX = "RoR2/DLC1/Assassin2/AssassinHideRevealFX.prefab"; public static string AssassinInvisibleSmokeFX = "RoR2/DLC1/Assassin2/AssassinInvisibleSmokeFX.prefab"; public static string AssassinShurikenGhost = "RoR2/DLC1/Assassin2/AssassinShurikenGhost.prefab"; public static string AssassinShurikenImpact = "RoR2/DLC1/Assassin2/AssassinShurikenImpact.prefab"; public static string AssassinShurikenProjectile = "RoR2/DLC1/Assassin2/AssassinShurikenProjectile.prefab"; public static string AssassinSlash = "RoR2/DLC1/Assassin2/AssassinSlash.prefab"; public static string AssassinSpawnFX = "RoR2/DLC1/Assassin2/AssassinSpawnFX.prefab"; public static string mdlAssassinShuriken = "RoR2/DLC1/Assassin2/mdlAssassinShuriken.fbx"; public static string mdlAssassin2 = "RoR2/DLC1/Assassin2/mdlAssassin2.fbx"; public static string mdlAssassin2Dash = "RoR2/DLC1/Assassin2/mdlAssassin2@Dash.fbx"; public static string mdlAssassin2DashToIdle = "RoR2/DLC1/Assassin2/mdlAssassin2@DashToIdle.fbx"; public static string mdlAssassin2DashToStrike = "RoR2/DLC1/Assassin2/mdlAssassin2@DashToStrike.fbx"; public static string mdlAssassin2Death = "RoR2/DLC1/Assassin2/mdlAssassin2@Death.fbx"; public static string mdlAssassin2Flinch = "RoR2/DLC1/Assassin2/mdlAssassin2@Flinch.fbx"; public static string mdlAssassin2Idle = "RoR2/DLC1/Assassin2/mdlAssassin2@Idle.fbx"; public static string mdlAssassin2Jump = "RoR2/DLC1/Assassin2/mdlAssassin2@Jump.fbx"; public static string mdlAssassin2PreAttackSpawn = "RoR2/DLC1/Assassin2/mdlAssassin2@PreAttackSpawn.fbx"; public static string mdlAssassin2Spawn = "RoR2/DLC1/Assassin2/mdlAssassin2@Spawn.fbx"; public static string mdlAssassin2SpawnInPlace = "RoR2/DLC1/Assassin2/mdlAssassin2@SpawnInPlace.fbx"; public static string mdlAssassin2Stun = "RoR2/DLC1/Assassin2/mdlAssassin2@Stun.fbx"; public static string mdlAssassin2SwordAndStrike = "RoR2/DLC1/Assassin2/mdlAssassin2@SwordAndStrike.fbx"; public static string mdlAssassin2SwordAndStrikInPlace = "RoR2/DLC1/Assassin2/mdlAssassin2@SwordAndStrikInPlace.fbx"; public static string mdlAssassin2ThrowShuriken = "RoR2/DLC1/Assassin2/mdlAssassin2@ThrowShuriken.fbx"; public static string mdlAssassin2Walk = "RoR2/DLC1/Assassin2/mdlAssassin2@Walk.fbx"; public static string mdlAssassin2WalkToIdle = "RoR2/DLC1/Assassin2/mdlAssassin2@WalkToIdle.fbx"; public static string ChargeClayGrenadierBarrel = "RoR2/DLC1/ClayGrenadier/ChargeClayGrenadierBarrel.prefab"; public static string ClayGrenadierBody = "RoR2/DLC1/ClayGrenadier/ClayGrenadierBody.prefab"; public static string ClayGrenadierIdleSplashEffect = "RoR2/DLC1/ClayGrenadier/ClayGrenadierIdleSplashEffect.prefab"; public static string ClayGrenadierMaster = "RoR2/DLC1/ClayGrenadier/ClayGrenadierMaster.prefab"; public static string ClayGrenadierWeakPointEffect = "RoR2/DLC1/ClayGrenadier/ClayGrenadierWeakPointEffect.prefab"; public static string mdlClayGrenadier = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier.fbx"; public static string mdlClayGrenadierAttack2Throw = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@Attack2Throw.fbx"; public static string mdlClayGrenadierDeath = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@Death.fbx"; public static string mdlClayGrenadierFaceSlam = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@FaceSlam.fbx"; public static string mdlClayGrenadierFlinch = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@Flinch.fbx"; public static string mdlClayGrenadierIdle = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@Idle.fbx"; public static string mdlClayGrenadierJumpLand = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@JumpLand.fbx"; public static string mdlClayGrenadierPitchYaw = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@PitchYaw.fbx"; public static string mdlClayGrenadierSpawn = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@Spawn.fbx"; public static string mdlClayGrenadierStunned = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@Stunned.fbx"; public static string mdlClayGrenadierWalk = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@Walk.fbx"; public static string mdlClayGrenadierYaw = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadier@Yaw.fbx"; public static string mdlClayGrenadierGrenade = "RoR2/DLC1/ClayGrenadier/mdlClayGrenadierGrenade.fbx"; public static string ClayGrenadierBarrelExplosion = "RoR2/DLC1/ClayGrenadier/ClayGrenadierBarrelExplosion.prefab"; public static string ClayGrenadierBarrelGhost = "RoR2/DLC1/ClayGrenadier/ClayGrenadierBarrelGhost.prefab"; public static string ClayGrenadierBarrelProjectile = "RoR2/DLC1/ClayGrenadier/ClayGrenadierBarrelProjectile.prefab"; public static string ClayGrenadierFaceSlam = "RoR2/DLC1/ClayGrenadier/ClayGrenadierFaceSlam.prefab"; public static string ClayGrenadierMortarExplosion = "RoR2/DLC1/ClayGrenadier/ClayGrenadierMortarExplosion.prefab"; public static string ClayGrenadierMortarProjectile = "RoR2/DLC1/ClayGrenadier/ClayGrenadierMortarProjectile.prefab"; public static string mdlCommandoMarineReskin = "RoR2/DLC1/mdlCommandoMarineReskin.fbx"; public static string mdlCommandoMarineSMG = "RoR2/DLC1/mdlCommandoMarineSMG.fbx"; public static string DroneCommanderBody = "RoR2/DLC1/DroneCommander/DroneCommanderBody.prefab"; public static string DroneCommanderMaster = "RoR2/DLC1/DroneCommander/DroneCommanderMaster.prefab"; public static string mdlDroneCommander = "RoR2/DLC1/DroneCommander/mdlDroneCommander.fbx"; public static string FlyingVerminBody = "RoR2/DLC1/FlyingVermin/FlyingVerminBody.prefab"; public static string FlyingVerminMaster = "RoR2/DLC1/FlyingVermin/FlyingVerminMaster.prefab"; public static string mdlFlyingVermin = "RoR2/DLC1/FlyingVermin/mdlFlyingVermin.fbx"; public static string mdlFlyingVerminDeath = "RoR2/DLC1/FlyingVermin/mdlFlyingVermin@Death.fbx"; public static string mdlFlyingVerminFlinches = "RoR2/DLC1/FlyingVermin/mdlFlyingVermin@Flinches.fbx"; public static string mdlFlyingVerminFlyLoop = "RoR2/DLC1/FlyingVermin/mdlFlyingVermin@FlyLoop.fbx"; public static string mdlFlyingVerminGrounded = "RoR2/DLC1/FlyingVermin/mdlFlyingVermin@Grounded.fbx"; public static string mdlFlyingVerminSpawn = "RoR2/DLC1/FlyingVermin/mdlFlyingVermin@Spawn.fbx"; public static string mdlFlyingVerminSpit = "RoR2/DLC1/FlyingVermin/mdlFlyingVermin@Spit.fbx"; public static string VerminSpitGhost = "RoR2/DLC1/FlyingVermin/VerminSpitGhost.prefab"; public static string VerminSpitImpactEffect = "RoR2/DLC1/FlyingVermin/VerminSpitImpactEffect.prefab"; public static string VerminSpitProjectile = "RoR2/DLC1/FlyingVermin/VerminSpitProjectile.prefab"; public static string VerminDeathExplosion = "RoR2/DLC1/FlyingVermin/VerminDeathExplosion.prefab"; public static string GeepBody = "RoR2/DLC1/Gup/GeepBody.prefab"; public static string GeepMaster = "RoR2/DLC1/Gup/GeepMaster.prefab"; public static string GipBody = "RoR2/DLC1/Gup/GipBody.prefab"; public static string GipMaster = "RoR2/DLC1/Gup/GipMaster.prefab"; public static string GupBody = "RoR2/DLC1/Gup/GupBody.prefab"; public static string GupExplosion = "RoR2/DLC1/Gup/GupExplosion.prefab"; public static string GupMaster = "RoR2/DLC1/Gup/GupMaster.prefab"; public static string GupSpikeAttack = "RoR2/DLC1/Gup/GupSpikeAttack.prefab"; public static string GupStep = "RoR2/DLC1/Gup/GupStep.prefab"; public static string mdlGeep = "RoR2/DLC1/Gup/mdlGeep.fbx"; public static string mdlGip = "RoR2/DLC1/Gup/mdlGip.fbx"; public static string mdlGup = "RoR2/DLC1/Gup/mdlGup.fbx"; public static string mdlGupAirLoops = "RoR2/DLC1/Gup/mdlGup@AirLoops.fbx"; public static string mdlGupDeath = "RoR2/DLC1/Gup/mdlGup@Death.fbx"; public static string mdlGupDirectionalRuns = "RoR2/DLC1/Gup/mdlGup@DirectionalRuns.fbx"; public static string mdlGupFlinches = "RoR2/DLC1/Gup/mdlGup@Flinches.fbx"; public static string mdlGupIdleAdditiveLoop = "RoR2/DLC1/Gup/mdlGup@IdleAdditiveLoop.fbx"; public static string mdlGupIdleSingle = "RoR2/DLC1/Gup/mdlGup@IdleSingle.fbx"; public static string mdlGupLightImpact = "RoR2/DLC1/Gup/mdlGup@LightImpact.fbx"; public static string mdlGupRunToIdle = "RoR2/DLC1/Gup/mdlGup@RunToIdle.fbx"; public static string mdlGupSpawn = "RoR2/DLC1/Gup/mdlGup@Spawn.fbx"; public static string mdlGupSpikeAttack = "RoR2/DLC1/Gup/mdlGup@SpikeAttack.fbx"; public static string mdlGupStunned = "RoR2/DLC1/Gup/mdlGup@Stunned.fbx"; public static string mdlGupCollider = "RoR2/DLC1/Gup/mdlGupCollider.fbx"; public static string ConstructPad = "RoR2/DLC1/MajorAndMinorConstruct/ConstructPad.prefab"; public static string LaserMajorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/LaserMajorConstruct.prefab"; public static string MajorConstructBody = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructBody.prefab"; public static string MajorConstructBubbleShield = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructBubbleShield.prefab"; public static string MajorConstructChangeHeight = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructChangeHeight.prefab"; public static string MajorConstructDeathEffect = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructDeathEffect.prefab"; public static string MajorConstructDeathSmall = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructDeathSmall.prefab"; public static string MajorConstructInitialMuzzleFlash = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructInitialMuzzleFlash.prefab"; public static string MajorConstructMuzzleflashSpawnMinorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructMuzzleflashSpawnMinorConstruct.prefab"; public static string MajorConstructSecondMuzzleFlash = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructSecondMuzzleFlash.prefab"; public static string MajorConstructSitImpact = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructSitImpact.prefab"; public static string MajorConstructSpawnEffect = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructSpawnEffect.prefab"; public static string MajorConstructSpawnMinorConstructEffect = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructSpawnMinorConstructEffect.prefab"; public static string OmniExplosionVFXMajorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/OmniExplosionVFXMajorConstruct.prefab"; public static string MajorConstructIdleStonesParticle = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructIdleStonesParticle.prefab"; public static string MajorConstructMaster = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructMaster.prefab"; public static string mdlMajorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct.fbx"; public static string mdlMajorConstructAttackDefenseMode = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@AttackDefenseMode.fbx"; public static string mdlMajorConstructDie = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@Die.fbx"; public static string mdlMajorConstructFlinch = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@Flinch.fbx"; public static string mdlMajorConstructIdle = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@Idle.fbx"; public static string mdlMajorConstructPitch = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@Pitch.fbx"; public static string mdlMajorConstructRespawnTurrets = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@RespawnTurrets.fbx"; public static string mdlMajorConstructShoot = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@Shoot.fbx"; public static string mdlMajorConstructSpawn = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@Spawn.fbx"; public static string mdlMajorConstructSpinDiamonds = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@SpinDiamonds.fbx"; public static string mdlMajorConstructSpinOldTurretHolders = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@SpinOldTurretHolders.fbx"; public static string mdlMajorConstructStunned = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@Stunned.fbx"; public static string mdlMajorConstructYaw = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstruct@Yaw.fbx"; public static string mdlMajorConstructHeadCollider = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstructHeadCollider.fbx"; public static string mdlMajorConstructPieces = "RoR2/DLC1/MajorAndMinorConstruct/mdlMajorConstructPieces.fbx"; public static string mdlMinorConstructBosspad = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstructBosspad.fbx"; public static string mdlMegaConstruct = "RoR2/DLC1/MajorAndMinorConstruct/mdlMegaConstruct.fbx"; public static string mdlMegaConstructAttacks = "RoR2/DLC1/MajorAndMinorConstruct/mdlMegaConstruct@Attacks.fbx"; public static string mdlMegaConstructBase = "RoR2/DLC1/MajorAndMinorConstruct/mdlMegaConstruct@Base.fbx"; public static string mdlMegaConstructFlinches = "RoR2/DLC1/MajorAndMinorConstruct/mdlMegaConstruct@Flinches.fbx"; public static string MegaConstructBody = "RoR2/DLC1/MajorAndMinorConstruct/MegaConstructBody.prefab"; public static string MegaConstructBubbleShield = "RoR2/DLC1/MajorAndMinorConstruct/MegaConstructBubbleShield.prefab"; public static string MegaConstructCollision = "RoR2/DLC1/MajorAndMinorConstruct/MegaConstructCollision.fbx"; public static string MegaConstructDeathExplosion = "RoR2/DLC1/MajorAndMinorConstruct/MegaConstructDeathExplosion.prefab"; public static string MegaConstructMaster = "RoR2/DLC1/MajorAndMinorConstruct/MegaConstructMaster.prefab"; public static string ExplosionMinorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/ExplosionMinorConstruct.prefab"; public static string mdlMinorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstruct.fbx"; public static string mdlMinorConstructAimPitch = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstruct@AimPitch.fbx"; public static string mdlMinorConstructAimYaw = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstruct@AimYaw.fbx"; public static string mdlMinorConstructFlinch = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstruct@Flinch.fbx"; public static string mdlMinorConstructIdle = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstruct@Idle.fbx"; public static string mdlMinorConstructShoot = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstruct@Shoot.fbx"; public static string mdlMinorConstructSpawns = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstruct@Spawns.fbx"; public static string mdlMinorConstructStunned = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstruct@Stunned.fbx"; public static string mdlMinorConstructOnePiece = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstructOnePiece.fbx"; public static string mdlMinorConstructProjectile = "RoR2/DLC1/MajorAndMinorConstruct/mdlMinorConstructProjectile.fbx"; public static string MinorConstructAttachableBody = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructAttachableBody.prefab"; public static string MinorConstructAttachableMaster = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructAttachableMaster.prefab"; public static string MinorConstructBody = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructBody.prefab"; public static string MinorConstructChargeBeam = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructChargeBeam.prefab"; public static string MinorConstructMaster = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructMaster.prefab"; public static string MinorConstructOnKillBody = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructOnKillBody.prefab"; public static string MinorConstructOnKillMaster = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructOnKillMaster.prefab"; public static string MinorConstructProjectile = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructProjectile.prefab"; public static string MinorConstructProjectileGhost = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructProjectileGhost.prefab"; public static string MuzzleflashMinorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/MuzzleflashMinorConstruct.prefab"; public static string OmniExplosionVFXMinorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/OmniExplosionVFXMinorConstruct.prefab"; public static string mdlRailgunnerBeam = "RoR2/DLC1/Railgunner/mdlRailgunnerBeam.fbx"; public static string mdlRailGunnerAltMine = "RoR2/DLC1/Railgunner/mdlRailGunnerAltMine.fbx"; public static string mdlRailGunnerBasicMine = "RoR2/DLC1/Railgunner/mdlRailGunnerBasicMine.fbx"; public static string RailgunnerWeakpointHighlight = "RoR2/DLC1/Railgunner/RailgunnerWeakpointHighlight.prefab"; public static string WindupRailgunnerCryo = "RoR2/DLC1/Railgunner/WindupRailgunnerCryo.prefab"; public static string WindupRailgunnerSuper = "RoR2/DLC1/Railgunner/WindupRailgunnerSuper.prefab"; public static string mdlRailGunner = "RoR2/DLC1/Railgunner/mdlRailGunner.fbx"; public static string mdlRailGunnerAims = "RoR2/DLC1/Railgunner/mdlRailGunner@Aims.fbx"; public static string mdlRailGunnerAirStuff = "RoR2/DLC1/Railgunner/mdlRailGunner@AirStuff.fbx"; public static string mdlRailGunnerBackpack = "RoR2/DLC1/Railgunner/mdlRailGunner@Backpack.fbx"; public static string mdlRailGunnerCharacterSelect = "RoR2/DLC1/Railgunner/mdlRailGunner@CharacterSelect.fbx"; public static string mdlRailGunnerGunModes = "RoR2/DLC1/Railgunner/mdlRailGunner@GunModes.fbx"; public static string mdlRailGunnerIconicTestPose = "RoR2/DLC1/Railgunner/mdlRailGunner@IconicTestPose.fbx"; public static string mdlRailGunnerIdle = "RoR2/DLC1/Railgunner/mdlRailGunner@Idle.fbx"; public static string mdlRailGunnerPistol = "RoR2/DLC1/Railgunner/mdlRailGunner@Pistol.fbx"; public static string mdlRailGunnerRuns = "RoR2/DLC1/Railgunner/mdlRailGunner@Runs.fbx"; public static string mdlRailGunnerSniperAttacks = "RoR2/DLC1/Railgunner/mdlRailGunner@SniperAttacks.fbx"; public static string mdlRailGunnerThrowMine = "RoR2/DLC1/Railgunner/mdlRailGunner@ThrowMine.fbx"; public static string MuzzleflashRailgun = "RoR2/DLC1/Railgunner/MuzzleflashRailgun.prefab"; public static string mdlRailGunnerAltColossus = "RoR2/DLC1/Railgunner/mdlRailGunnerAltColossus.fbx"; public static string mdlRailGunnerAltSkin = "RoR2/DLC1/Railgunner/mdlRailGunnerAltSkin.fbx"; public static string railgunnervfx = "RoR2/DLC1/Railgunner/railgunner vfx.fbx"; public static string RailGunnerAltMine = "RoR2/DLC1/Railgunner/RailGunnerAltMine.prefab"; public static string RailgunnerAltMineGhost = "RoR2/DLC1/Railgunner/RailgunnerAltMineGhost.prefab"; public static string RailgunnerAltMineGhostReskin = "RoR2/DLC1/Railgunner/RailgunnerAltMineGhostReskin.prefab"; public static string RailgunnerAltMineGhostReskinColossus = "RoR2/DLC1/Railgunner/RailgunnerAltMineGhostReskinColossus.prefab"; public static string RailGunnerBasicMine = "RoR2/DLC1/Railgunner/RailGunnerBasicMine.prefab"; public static string RailgunnerBody = "RoR2/DLC1/Railgunner/RailgunnerBody.prefab"; public static string RailgunnerDisplay = "RoR2/DLC1/Railgunner/RailgunnerDisplay.prefab"; public static string RailgunnerMaster = "RoR2/DLC1/Railgunner/RailgunnerMaster.prefab"; public static string RailgunnerMine = "RoR2/DLC1/Railgunner/RailgunnerMine.prefab"; public static string RailgunnerMineAlt = "RoR2/DLC1/Railgunner/RailgunnerMineAlt.prefab"; public static string RailgunnerMineAltDetonated = "RoR2/DLC1/Railgunner/RailgunnerMineAltDetonated.prefab"; public static string RailgunnerMineExplosion = "RoR2/DLC1/Railgunner/RailgunnerMineExplosion.prefab"; public static string RailgunnerMineExplosionAltVariant = "RoR2/DLC1/Railgunner/RailgunnerMineExplosionAlt Variant.prefab"; public static string RailgunnerMineGhost = "RoR2/DLC1/Railgunner/RailgunnerMineGhost.prefab"; public static string RailgunnerMineGhostReskin = "RoR2/DLC1/Railgunner/RailgunnerMineGhostReskin.prefab"; public static string RailgunnerMineGhostReskinColossus = "RoR2/DLC1/Railgunner/RailgunnerMineGhostReskinColossus.prefab"; public static string RailgunnerMonsterMaster = "RoR2/DLC1/Railgunner/RailgunnerMonsterMaster.prefab"; public static string HitsparkRailgunnerPistol = "RoR2/DLC1/Railgunner/HitsparkRailgunnerPistol.prefab"; public static string ImpactRailgun = "RoR2/DLC1/Railgunner/ImpactRailgun.prefab"; public static string ImpactRailgunLight = "RoR2/DLC1/Railgunner/ImpactRailgunLight.prefab"; public static string RailgunnerPistolProjectile = "RoR2/DLC1/Railgunner/RailgunnerPistolProjectile.prefab"; public static string RailgunnerPistolProjectileGhost = "RoR2/DLC1/Railgunner/RailgunnerPistolProjectileGhost.prefab"; public static string RailgunPistolExpire = "RoR2/DLC1/Railgunner/RailgunPistolExpire.prefab"; public static string TracerRailgun = "RoR2/DLC1/Railgunner/TracerRailgun.prefab"; public static string TracerRailgunCryo = "RoR2/DLC1/Railgunner/TracerRailgunCryo.prefab"; public static string TracerRailgunLight = "RoR2/DLC1/Railgunner/TracerRailgunLight.prefab"; public static string TracerRailgunSuper = "RoR2/DLC1/Railgunner/TracerRailgunSuper.prefab"; public static string BlankCrosshair = "RoR2/DLC1/Railgunner/BlankCrosshair.prefab"; public static string RailgunnerCrosshair = "RoR2/DLC1/Railgunner/RailgunnerCrosshair.prefab"; public static string RailgunnerCryochargeCrosshair = "RoR2/DLC1/Railgunner/RailgunnerCryochargeCrosshair.prefab"; public static string RailgunnerCryochargeUI = "RoR2/DLC1/Railgunner/RailgunnerCryochargeUI.prefab"; public static string RailgunnerOfflineUI = "RoR2/DLC1/Railgunner/RailgunnerOfflineUI.prefab"; public static string RailgunnerOverchargeUI = "RoR2/DLC1/Railgunner/RailgunnerOverchargeUI.prefab"; public static string RailgunnerOverchargeUIReady = "RoR2/DLC1/Railgunner/RailgunnerOverchargeUIReady.prefab"; public static string RailgunnerReloadUI = "RoR2/DLC1/Railgunner/RailgunnerReloadUI.prefab"; public static string RailgunnerScopeCrosshairHeavy = "RoR2/DLC1/Railgunner/RailgunnerScopeCrosshairHeavy.prefab"; public static string RailgunnerScopeCrosshairLight = "RoR2/DLC1/Railgunner/RailgunnerScopeCrosshairLight.prefab"; public static string RailgunnerScopeHeavyOverlay = "RoR2/DLC1/Railgunner/RailgunnerScopeHeavyOverlay.prefab"; public static string RailgunnerScopeLightOverlay = "RoR2/DLC1/Railgunner/RailgunnerScopeLightOverlay.prefab"; public static string RailgunnerSnipeBoostUI = "RoR2/DLC1/Railgunner/RailgunnerSnipeBoostUI.prefab"; public static string RailgunnerSniperTargetVisualizerHeavy = "RoR2/DLC1/Railgunner/RailgunnerSniperTargetVisualizerHeavy.prefab"; public static string RailgunnerSniperTargetVisualizerLight = "RoR2/DLC1/Railgunner/RailgunnerSniperTargetVisualizerLight.prefab"; public static string RailgunnerSuperchargeCrosshair = "RoR2/DLC1/Railgunner/RailgunnerSuperchargeCrosshair.prefab"; public static string SulfurPodBody = "RoR2/DLC1/SulfurPod/SulfurPodBody.prefab"; public static string SulfurPodCharge = "RoR2/DLC1/SulfurPod/SulfurPodCharge.prefab"; public static string SulfurPodExplosion = "RoR2/DLC1/SulfurPod/SulfurPodExplosion.prefab"; public static string mdlVermin = "RoR2/DLC1/Vermin/mdlVermin.fbx"; public static string mdlVerminAims = "RoR2/DLC1/Vermin/mdlVermin@Aims.fbx"; public static string mdlVerminAir = "RoR2/DLC1/Vermin/mdlVermin@Air.fbx"; public static string mdlVerminAttacks = "RoR2/DLC1/Vermin/mdlVermin@Attacks.fbx"; public static string mdlVerminDeath = "RoR2/DLC1/Vermin/mdlVermin@Death.fbx"; public static string mdlVerminFlinches = "RoR2/DLC1/Vermin/mdlVermin@Flinches.fbx"; public static string mdlVerminIdle = "RoR2/DLC1/Vermin/mdlVermin@Idle.fbx"; public static string mdlVerminRun = "RoR2/DLC1/Vermin/mdlVermin@Run.fbx"; public static string mdlVerminSpawn = "RoR2/DLC1/Vermin/mdlVermin@Spawn.fbx"; public static string mdlVerminStunned = "RoR2/DLC1/Vermin/mdlVermin@Stunned.fbx"; public static string MuzzleflashVerminSpit = "RoR2/DLC1/Vermin/MuzzleflashVerminSpit.prefab"; public static string VerminBiteEffect = "RoR2/DLC1/Vermin/VerminBiteEffect.prefab"; public static string VerminBody = "RoR2/DLC1/Vermin/VerminBody.prefab"; public static string VerminMaster = "RoR2/DLC1/Vermin/VerminMaster.prefab"; public static string VerminSpawn = "RoR2/DLC1/Vermin/VerminSpawn.prefab"; public static string VerminTongueLashSlash = "RoR2/DLC1/Vermin/VerminTongueLashSlash.prefab"; public static string mdlVoidBarnacle = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle.fbx"; public static string mdlVoidBarnacleAttack = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle@Attack.fbx"; public static string mdlVoidBarnacleDeath = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle@Death.fbx"; public static string mdlVoidBarnacleFlinch = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle@Flinch.fbx"; public static string mdlVoidBarnacleIdleSingle = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle@Idle, Single.fbx"; public static string mdlVoidBarnacleIdle = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle@Idle.fbx"; public static string mdlVoidBarnaclePitch = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle@Pitch.fbx"; public static string mdlVoidBarnacleSpawn = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle@Spawn.fbx"; public static string mdlVoidBarnacleStun = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle@Stun.fbx"; public static string mdlVoidBarnacleYaw = "RoR2/DLC1/VoidBarnacle/mdlVoidBarnacle@Yaw.fbx"; public static string OmniExplosionVFXVoidBarnacle = "RoR2/DLC1/VoidBarnacle/OmniExplosionVFXVoidBarnacle.prefab"; public static string VoidBarnacleBullet = "RoR2/DLC1/VoidBarnacle/VoidBarnacleBullet.prefab"; public static string VoidBarnacleBulletGhost = "RoR2/DLC1/VoidBarnacle/VoidBarnacleBulletGhost.prefab"; public static string VoidBarnacleCharge = "RoR2/DLC1/VoidBarnacle/VoidBarnacleCharge.prefab"; public static string VoidBarnacleImpactExplosion = "RoR2/DLC1/VoidBarnacle/VoidBarnacleImpactExplosion.prefab"; public static string VoidBarnacleMuzzleflash = "RoR2/DLC1/VoidBarnacle/VoidBarnacleMuzzleflash.prefab"; public static string VoidBarnacleAllyMaster = "RoR2/DLC1/VoidBarnacle/VoidBarnacleAllyMaster.prefab"; public static string VoidBarnacleBody0 = "RoR2/DLC1/VoidBarnacle/VoidBarnacleBody.prefab"; public static string VoidBarnacleDeathFx = "RoR2/DLC1/VoidBarnacle/VoidBarnacleDeathFx.prefab"; public static string VoidBarnacleMaster = "RoR2/DLC1/VoidBarnacle/VoidBarnacleMaster.prefab"; public static string VoidBarnacleNoCastBody = "RoR2/DLC1/VoidBarnacle/VoidBarnacleNoCastBody.prefab"; public static string VoidBarnacleNoCastMaster = "RoR2/DLC1/VoidBarnacle/VoidBarnacleNoCastMaster.prefab"; public static string VoidBarnacleSpawnEffect = "RoR2/DLC1/VoidBarnacle/VoidBarnacleSpawnEffect.prefab"; public static string voidjailerdeathbombvisuals = "RoR2/DLC1/VoidJailer/void jailer death bomb visuals.fbx"; public static string VoidJailerDeathBombExplosion = "RoR2/DLC1/VoidJailer/VoidJailerDeathBombExplosion.prefab"; public static string VoidJailerDeathBombGhost = "RoR2/DLC1/VoidJailer/VoidJailerDeathBombGhost.prefab"; public static string VoidJailerDeathBombProjectile = "RoR2/DLC1/VoidJailer/VoidJailerDeathBombProjectile.prefab"; public static string VoidJailerDeathBombProjectileStill = "RoR2/DLC1/VoidJailer/VoidJailerDeathBombProjectileStill.prefab"; public static string mdlVoidJailerDart = "RoR2/DLC1/VoidJailer/mdlVoidJailerDart.fbx"; public static string VoidJailerAreaIndicator = "RoR2/DLC1/VoidJailer/VoidJailerAreaIndicator.prefab"; public static string VoidJailerDeathFx = "RoR2/DLC1/VoidJailer/VoidJailerDeathFx.prefab"; public static string VoidJailerSpawnEffect = "RoR2/DLC1/VoidJailer/VoidJailerSpawnEffect.prefab"; public static string mdlVoidJailer = "RoR2/DLC1/VoidJailer/mdlVoidJailer.fbx"; public static string mdlVoidJailerClawFire = "RoR2/DLC1/VoidJailer/mdlVoidJailer@ClawFire.fbx"; public static string mdlVoidJailerClawFireHopoo = "RoR2/DLC1/VoidJailer/mdlVoidJailer@ClawFireHopoo.fbx"; public static string mdlVoidJailerDeath = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Death.fbx"; public static string mdlVoidJailerFlinch = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Flinch.fbx"; public static string mdlVoidJailerIdleSingle = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Idle, Single.fbx"; public static string mdlVoidJailerIdle = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Idle.fbx"; public static string mdlVoidJailerJump = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Jump.fbx"; public static string mdlVoidJailerPitch = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Pitch.fbx"; public static string mdlVoidJailerRun = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Run.fbx"; public static string mdlVoidJailerRunToIdle = "RoR2/DLC1/VoidJailer/mdlVoidJailer@RunToIdle.fbx"; public static string mdlVoidJailerSpawn = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Spawn.fbx"; public static string mdlVoidJailerStun = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Stun.fbx"; public static string mdlVoidJailerTentacleFire = "RoR2/DLC1/VoidJailer/mdlVoidJailer@TentacleFire.fbx"; public static string mdlVoidJailerTentacleFireLoop = "RoR2/DLC1/VoidJailer/mdlVoidJailer@TentacleFireLoop.fbx"; public static string mdlVoidJailerWalk = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Walk.fbx"; public static string mdlVoidJailerWalkToIdle = "RoR2/DLC1/VoidJailer/mdlVoidJailer@WalkToIdle.fbx"; public static string mdlVoidJailerYaw = "RoR2/DLC1/VoidJailer/mdlVoidJailer@Yaw.fbx"; public static string mdlVoidJailerYawHopoo = "RoR2/DLC1/VoidJailer/mdlVoidJailer@YawHopoo.fbx"; public static string VoidJailerChargeFire = "RoR2/DLC1/VoidJailer/VoidJailerChargeFire.prefab"; public static string VoidJailerDart = "RoR2/DLC1/VoidJailer/VoidJailerDart.prefab"; public static string VoidJailerDartGhost = "RoR2/DLC1/VoidJailer/VoidJailerDartGhost.prefab"; public static string VoidJailerDartImpact = "RoR2/DLC1/VoidJailer/VoidJailerDartImpact.prefab"; public static string VoidJailerDartMuzzleFlash = "RoR2/DLC1/VoidJailer/VoidJailerDartMuzzleFlash.prefab"; public static string VoidJailerFireCharge = "RoR2/DLC1/VoidJailer/VoidJailerFireCharge.prefab"; public static string voidjailerconevfx = "RoR2/DLC1/VoidJailer/voidjailer cone vfx.fbx"; public static string VoidJailerCaptureAttackIndicator = "RoR2/DLC1/VoidJailer/VoidJailerCaptureAttackIndicator.prefab"; public static string VoidJailerCaptureCharge = "RoR2/DLC1/VoidJailer/VoidJailerCaptureCharge.prefab"; public static string VoidJailerCaptureMuzzleflash = "RoR2/DLC1/VoidJailer/VoidJailerCaptureMuzzleflash.prefab"; public static string VoidJailerCaptureTracer = "RoR2/DLC1/VoidJailer/VoidJailerCaptureTracer.prefab"; public static string VoidJailerTether = "RoR2/DLC1/VoidJailer/VoidJailerTether.prefab"; public static string VoidJailerTetherDebuff = "RoR2/DLC1/VoidJailer/VoidJailerTetherDebuff.prefab"; public static string VoidJailerTetherMuzzle = "RoR2/DLC1/VoidJailer/VoidJailerTetherMuzzle.prefab"; public static string VoidJailerAllyBody = "RoR2/DLC1/VoidJailer/VoidJailerAllyBody.prefab"; public static string VoidJailerAllyMaster = "RoR2/DLC1/VoidJailer/VoidJailerAllyMaster.prefab"; public static string VoidJailerBody = "RoR2/DLC1/VoidJailer/VoidJailerBody.prefab"; public static string VoidJailerMaster = "RoR2/DLC1/VoidJailer/VoidJailerMaster.prefab"; public static string VoidMegaCrabDeathBombExplosion = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabDeathBombExplosion.prefab"; public static string VoidMegaCrabDeathBombGhost = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabDeathBombGhost.prefab"; public static string VoidMegaCrabDeathBombletsExplosion = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabDeathBombletsExplosion.prefab"; public static string VoidMegaCrabDeathBombletsGhost = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabDeathBombletsGhost.prefab"; public static string VoidMegaCrabDeathBombletsProjectile = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabDeathBombletsProjectile.prefab"; public static string VoidMegaCrabDeathBombProjectile = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabDeathBombProjectile.prefab"; public static string VoidMegacrabBlackSphere = "RoR2/DLC1/VoidMegaCrab/VoidMegacrabBlackSphere.prefab"; public static string VoidMegacrabBlackSphereChargeFX = "RoR2/DLC1/VoidMegaCrab/VoidMegacrabBlackSphereChargeFX.prefab"; public static string VoidMegacrabWhiteSphere = "RoR2/DLC1/VoidMegaCrab/VoidMegacrabWhiteSphere.prefab"; public static string VoidMegacrabWhiteSphereChargeFX = "RoR2/DLC1/VoidMegaCrab/VoidMegacrabWhiteSphereChargeFX.prefab"; public static string mdlVoidMegaCrab = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab.fbx"; public static string mdlVoidMegaCrabDeath = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@Death.fbx"; public static string mdlVoidMegaCrabFaceAdditiveAnimationfbx = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@FaceAdditiveAnimationfbx.fbx"; public static string mdlVoidMegaCrabFireMissiles = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@FireMissiles.fbx"; public static string mdlVoidMegaCrabFlinches = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@Flinches.fbx"; public static string mdlVoidMegaCrabIdleAdvanced = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@IdleAdvanced.fbx"; public static string mdlVoidMegaCrabIdleSimple = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@IdleSimple.fbx"; public static string mdlVoidMegaCrabJumpLand = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@JumpLand.fbx"; public static string mdlVoidMegaCrabLeftShoot = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@LeftShoot.fbx"; public static string mdlVoidMegaCrabPitchYaw = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@PitchYaw.fbx"; public static string mdlVoidMegaCrabRightShoot = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@RightShoot.fbx"; public static string mdlVoidMegaCrabSpawn = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@Spawn.fbx"; public static string mdlVoidMegaCrabSprint = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@Sprint.fbx"; public static string mdlVoidMegaCrabStopSprinting = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@StopSprinting.fbx"; public static string mdlVoidMegaCrabStunnedSpecial = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@StunnedSpecial.fbx"; public static string mdlVoidMegaCrabWalkBackward = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@WalkBackward.fbx"; public static string mdlVoidMegaCrabWalkForward = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@WalkForward.fbx"; public static string mdlVoidMegaCrabWalkLeft = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@WalkLeft.fbx"; public static string mdlVoidMegaCrabWalkRight = "RoR2/DLC1/VoidMegaCrab/mdlVoidMegaCrab@WalkRight.fbx"; public static string MegaCrabBlackMuzzleFlash = "RoR2/DLC1/VoidMegaCrab/MegaCrabBlackMuzzleFlash.prefab"; public static string MegaCrabWhiteMuzzleFlash = "RoR2/DLC1/VoidMegaCrab/MegaCrabWhiteMuzzleFlash.prefab"; public static string MegaCrabBlackCannonGhost = "RoR2/DLC1/VoidMegaCrab/MegaCrabBlackCannonGhost.prefab"; public static string MegaCrabBlackCannonProjectile = "RoR2/DLC1/VoidMegaCrab/MegaCrabBlackCannonProjectile.prefab"; public static string MegaCrabBlackCannonStuckGhost = "RoR2/DLC1/VoidMegaCrab/MegaCrabBlackCannonStuckGhost.prefab"; public static string MegaCrabBlackCannonStuckProjectile1 = "RoR2/DLC1/VoidMegaCrab/MegaCrabBlackCannonStuckProjectile1.prefab"; public static string MegaCrabBlackCannonStuckProjectile2 = "RoR2/DLC1/VoidMegaCrab/MegaCrabBlackCannonStuckProjectile2.prefab"; public static string MegaCrabWhiteCannonGhost = "RoR2/DLC1/VoidMegaCrab/MegaCrabWhiteCannonGhost.prefab"; public static string MegaCrabWhiteCannonProjectile = "RoR2/DLC1/VoidMegaCrab/MegaCrabWhiteCannonProjectile.prefab"; public static string MegaCrabWhiteCannonStuckGhost = "RoR2/DLC1/VoidMegaCrab/MegaCrabWhiteCannonStuckGhost.prefab"; public static string MegaCrabWhiteCannonStuckProjectile = "RoR2/DLC1/VoidMegaCrab/MegaCrabWhiteCannonStuckProjectile.prefab"; public static string MissileVoidBigGhost = "RoR2/DLC1/VoidMegaCrab/MissileVoidBigGhost.prefab"; public static string MissileVoidBigProjectile = "RoR2/DLC1/VoidMegaCrab/MissileVoidBigProjectile.prefab"; public static string MissileVoidMuzzleflash = "RoR2/DLC1/VoidMegaCrab/MissileVoidMuzzleflash.prefab"; public static string VoidMegacrabAntimatterExplosion = "RoR2/DLC1/VoidMegaCrab/VoidMegacrabAntimatterExplosion.prefab"; public static string VoidMegacrabAntimatterExplosionSimple = "RoR2/DLC1/VoidMegaCrab/VoidMegacrabAntimatterExplosionSimple.prefab"; public static string VoidMegaCrabAllyBody = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabAllyBody.prefab"; public static string VoidMegaCrabAllyMaster = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabAllyMaster.prefab"; public static string VoidMegaCrabBody = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabBody.prefab"; public static string VoidMegaCrabDeathExplosion = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabDeathExplosion.prefab"; public static string VoidMegaCrabDeathPreExplosion = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabDeathPreExplosion.prefab"; public static string VoidMegaCrabMaster = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabMaster.prefab"; public static string VoidMegaCrabMockup = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabMockup.prefab"; public static string VoidMegaCrabSitImpact = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabSitImpact.prefab"; public static string VoidMegaCrabSpawnEffect = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabSpawnEffect.prefab"; public static string mdlVoidRaidCrabBaseAnimations = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@BaseAnimations.fbx"; public static string mdlVoidRaidCrabEyeBlasts = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@EyeBlasts.fbx"; public static string mdlVoidRaidCrabGravityBump = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@GravityBump.fbx"; public static string mdlVoidRaidCrabLegMechanicAnimations = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@LegMechanicAnimations.fbx"; public static string mdlVoidRaidCrabLegStabs = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@LegStabs.fbx"; public static string mdlVoidRaidCrabMovement = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@Movement.fbx"; public static string mdlVoidRaidCrabPhases = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@Phases.fbx"; public static string mdlVoidRaidCrabSpawn = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@Spawn.fbx"; public static string mdlVoidRaidCrabSpinBeam = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@SpinBeam.fbx"; public static string mdlVoidRaidCrabSuck = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@Suck.fbx"; public static string mdlVoidRaidCrabTestAnimations = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@TestAnimations.fbx"; public static string mdlVoidRaidCrabTurns = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@Turns.fbx"; public static string mdlVoidRaidCrabWipe = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab@Wipe.fbx"; public static string MiniVoidRaidCrabStep = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabStep.prefab"; public static string VoidRaidCrabFallOffMap = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabFallOffMap.prefab"; public static string VoidRaidCrabHugeLanding = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabHugeLanding.prefab"; public static string VoidRaidCrabStep = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabStep.prefab"; public static string VoidRaidCrabDeath = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabDeath.prefab"; public static string VoidRaidCrabDeathPending = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabDeathPending.prefab"; public static string VoidRaidCrabEscapeEffect = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabEscapeEffect.prefab"; public static string VoidRaidCrabSpawnEffect = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabSpawnEffect.prefab"; public static string VoidRaidCrabJointBreak = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabJointBreak.prefab"; public static string VoidRaidCrabJointPending = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabJointPending.prefab"; public static string LegOrigin = "RoR2/DLC1/VoidRaidCrab/LegOrigin.prefab"; public static string mdlVoidRaidCrab = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab.fbx"; public static string mdlVoidRaidCrabStabPadRefs = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrab_StabPadRefs.fbx"; public static string MiniVoidRaidCrabBodyBase = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabBodyBase.prefab"; public static string MiniVoidRaidCrabBodyPhase1 = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabBodyPhase1.prefab"; public static string MiniVoidRaidCrabBodyPhase2 = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabBodyPhase2.prefab"; public static string MiniVoidRaidCrabBodyPhase3 = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabBodyPhase3.prefab"; public static string MiniVoidRaidCrabMasterBase = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabMasterBase.prefab"; public static string MiniVoidRaidCrabMasterPhase1 = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabMasterPhase1.prefab"; public static string MiniVoidRaidCrabMasterPhase2 = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabMasterPhase2.prefab"; public static string MiniVoidRaidCrabMasterPhase3 = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabMasterPhase3.prefab"; public static string VoidRaidCrabChannelGauntletChargeup = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabChannelGauntletChargeup.prefab"; public static string VoidRaidCrabInsideGauntletEffect = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabInsideGauntletEffect.prefab"; public static string VoidRaidGauntletOverlay = "RoR2/DLC1/VoidRaidCrab/VoidRaidGauntletOverlay.prefab"; public static string ChargeVoidRaidCrabMissiles = "RoR2/DLC1/VoidRaidCrab/ChargeVoidRaidCrabMissiles.prefab"; public static string MuzzleflashVoidRaidCrabMissiles = "RoR2/DLC1/VoidRaidCrab/MuzzleflashVoidRaidCrabMissiles.prefab"; public static string VoidRaidCrabChargeEyeMissiles = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabChargeEyeMissiles.prefab"; public static string VoidRaidCrabImpact1 = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabImpact1.prefab"; public static string VoidRaidCrabMissileGhost = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabMissileGhost.prefab"; public static string VoidRaidCrabMissileProjectile = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabMissileProjectile.prefab"; public static string VoidRaidCrabMuzzleflashEyeMissiles = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabMuzzleflashEyeMissiles.prefab"; public static string VoidRaidCrabFinalStandChargeup = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabFinalStandChargeup.prefab"; public static string VoidRaidCrabFinalStandMuzzleflash = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabFinalStandMuzzleflash.prefab"; public static string VoidRaidCrabGravityBumpChargeup = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabGravityBumpChargeup.prefab"; public static string VoidRaidCrabGravityBumpExplosionAir = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabGravityBumpExplosionAir.prefab"; public static string VoidRaidCrabGravityBumpExplosionGround = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabGravityBumpExplosionGround.prefab"; public static string VoidRaidCrabGravityBumpMuzzleflash = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabGravityBumpMuzzleflash.prefab"; public static string VoidRaidGrabGravityBumpIndicator = "RoR2/DLC1/VoidRaidCrab/VoidRaidGrabGravityBumpIndicator.prefab"; public static string MultiBeamRayIndicator = "RoR2/DLC1/VoidRaidCrab/MultiBeamRayIndicator.prefab"; public static string TracerVoidRaidCrabTripleBeam = "RoR2/DLC1/VoidRaidCrab/TracerVoidRaidCrabTripleBeam.prefab"; public static string TracerVoidRaidCrabTripleBeamSmall = "RoR2/DLC1/VoidRaidCrab/TracerVoidRaidCrabTripleBeamSmall.prefab"; public static string VoidRaidCrabMultiBeamDotZone = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabMultiBeamDotZone.prefab"; public static string VoidRaidCrabMultiBeamDotZoneImpact = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabMultiBeamDotZoneImpact.prefab"; public static string VoidRaidCrabTripleBeamChargeUp = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabTripleBeamChargeUp.prefab"; public static string VoidRaidCrabTripleBeamExplosion = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabTripleBeamExplosion.prefab"; public static string VoidRaidCrabTripleBeamMuzzleflash = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabTripleBeamMuzzleflash.prefab"; public static string LaserImpactEffect = "RoR2/DLC1/VoidRaidCrab/LaserImpactEffect.prefab"; public static string SweepingLaser = "RoR2/DLC1/VoidRaidCrab/SweepingLaser.prefab"; public static string voidraidcrabspinbeam = "RoR2/DLC1/VoidRaidCrab/void raid crab spin beam.fbx"; public static string VoidRaidCrabSpinBeamChargeUp = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabSpinBeamChargeUp.prefab"; public static string VoidRaidCrabSpinBeamVFX = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabSpinBeamVFX.prefab"; public static string WarningLaser = "RoR2/DLC1/VoidRaidCrab/WarningLaser.prefab"; public static string StompArea = "RoR2/DLC1/VoidRaidCrab/StompArea.prefab"; public static string StompIndicator = "RoR2/DLC1/VoidRaidCrab/StompIndicator.prefab"; public static string VoidRaidCrabStomp = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabStomp.prefab"; public static string KillSphereVfxPlaceholder = "RoR2/DLC1/VoidRaidCrab/KillSphereVfxPlaceholder.prefab"; public static string VacuumEnvironmentalVFXPlaceholder = "RoR2/DLC1/VoidRaidCrab/VacuumEnvironmentalVFXPlaceholder.prefab"; public static string VoidRaidCrabSuckLoopFX = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabSuckLoopFX.prefab"; public static string VoidRaidCrabWardWipeChargeup = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabWardWipeChargeup.prefab"; public static string VoidRaidCrabWardWipeFogEffect = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabWardWipeFogEffect.prefab"; public static string VoidRaidCrabWardWipeMuzzleflash = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabWardWipeMuzzleflash.prefab"; public static string VoidRaidSafeWard = "RoR2/DLC1/VoidRaidCrab/VoidRaidSafeWard.prefab"; public static string VoidRaidSafeWardDisappearEffect = "RoR2/DLC1/VoidRaidCrab/VoidRaidSafeWardDisappearEffect.prefab"; public static string mdlVoidRaidCrabEyeBack = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrabEyeBack.fbx"; public static string mdlVoidRaidCrabTargetableBackL = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrabTargetableBackL.fbx"; public static string mdlVoidRaidCrabTargetableBackR = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrabTargetableBackR.fbx"; public static string mdlVoidRaidCrabTargetableFrontL = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrabTargetableFrontL.fbx"; public static string mdlVoidRaidCrabTargetableFrontR = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrabTargetableFrontR.fbx"; public static string mdlVoidRaidCrabTargetableMidL = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrabTargetableMidL.fbx"; public static string mdlVoidRaidCrabTargetableMidR = "RoR2/DLC1/VoidRaidCrab/mdlVoidRaidCrabTargetableMidR.fbx"; public static string voidraidcrabcollisions = "RoR2/DLC1/VoidRaidCrab/void raid crab collisions.fbx"; public static string VoidRaidCrabBody = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabBody.prefab"; public static string VoidRaidCrabHealthBarPip = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabHealthBarPip.prefab"; public static string VoidRaidCrabJointBody = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabJointBody.prefab"; public static string VoidRaidCrabJointMaster = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabJointMaster.prefab"; public static string VoidRaidCrabMaster = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabMaster.prefab"; public static string VoidRaidCrabPipOverlay = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabPipOverlay.prefab"; public static string mdlVoidSuperMegaCrab = "RoR2/DLC1/mdlVoidSuperMegaCrab.fbx"; public static string VoidSurvivorDisplay = "RoR2/DLC1/VoidSurvivor/VoidSurvivorDisplay.prefab"; public static string mdlVoidSurvivor = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor.fbx"; public static string mdlVoidSurvivorAims = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@Aims.fbx"; public static string mdlVoidSurvivorBaseAnimations = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@BaseAnimations.fbx"; public static string mdlVoidSurvivorBlaster = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@Blaster.fbx"; public static string mdlVoidSurvivorCharaSelectSpawn = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@CharaSelectSpawn.fbx"; public static string mdlVoidSurvivorCorruptionMechanic = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@CorruptionMechanic.fbx"; public static string mdlVoidSurvivorCrushCorruption = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@CrushCorruption.fbx"; public static string mdlVoidSurvivorDirectionalVents = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@DirectionalVents.fbx"; public static string mdlVoidSurvivorFlinch = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@Flinch.fbx"; public static string mdlVoidSurvivorHandBlasts = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@HandBlasts.fbx"; public static string mdlVoidSurvivorMelee = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@Melee.fbx"; public static string mdlVoidSurvivorPose = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@Pose.fbx"; public static string mdlVoidSurvivorVent = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivor@Vent.fbx"; public static string VoidSurvivorCorruptDeathCharge = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptDeathCharge.prefab"; public static string VoidSurvivorCorruptDeathMuzzleflash = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptDeathMuzzleflash.prefab"; public static string VoidSurvivorCorruptDeathMuzzleflashBase = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptDeathMuzzleflashBase.prefab"; public static string VoidSurvivorCorruptionDamageEffect = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptionDamageEffect.prefab"; public static string VoidSurvivorCorruptionUI = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptionUI.prefab"; public static string VoidSurvivorCorruptionUISimplified = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptionUISimplified.prefab"; public static string VoidSurvivorBlaster1Expired = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBlaster1Expired.prefab"; public static string VoidSurvivorBlaster1Ghost = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBlaster1Ghost.prefab"; public static string VoidSurvivorBlaster1Projectile = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBlaster1Projectile.prefab"; public static string VoidSurvivorMegaBlasterGhostSimple = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterGhostSimple.prefab"; public static string VoidSurvivorMegaBlasterProjectileSimple = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterProjectileSimple.prefab"; public static string VoidSurvivorTwinBlasterProjectile1 = "RoR2/DLC1/VoidSurvivor/VoidSurvivorTwinBlasterProjectile1.prefab"; public static string VoidSurvivorTwinBlasterProjectile2 = "RoR2/DLC1/VoidSurvivor/VoidSurvivorTwinBlasterProjectile2.prefab"; public static string VoidSurvivorBeamCharge = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBeamCharge.prefab"; public static string VoidSurvivorBeamImpact = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBeamImpact.prefab"; public static string VoidSurvivorBeamMuzzleflash = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBeamMuzzleflash.prefab"; public static string VoidSurvivorBeamTracer = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBeamTracer.prefab"; public static string VoidSurvivorBeamChargeCorrupt = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBeamChargeCorrupt.prefab"; public static string VoidSurvivorBeamCorrupt = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBeamCorrupt.prefab"; public static string VoidSurvivorBeamImpactCorrupt = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBeamImpactCorrupt.prefab"; public static string VoidSurvivorMeleeSlash1 = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMeleeSlash1.prefab"; public static string VoidSurvivorMeleeSlash2 = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMeleeSlash2.prefab"; public static string VoidSurvivorMeleeSlash3 = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMeleeSlash3.prefab"; public static string VoidSurvivorChargeCrabCannon = "RoR2/DLC1/VoidSurvivor/VoidSurvivorChargeCrabCannon.prefab"; public static string VoidSurvivorCrabCannonProjectileSticky = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCrabCannonProjectileSticky.prefab"; public static string VoidSurvivorChargeMegaBlaster = "RoR2/DLC1/VoidSurvivor/VoidSurvivorChargeMegaBlaster.prefab"; public static string VoidSurvivorMegaBlasterBigGhost = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterBigGhost.prefab"; public static string VoidSurvivorMegaBlasterBigProjectile = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterBigProjectile.prefab"; public static string VoidSurvivorMegaBlasterExplosion = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterExplosion.prefab"; public static string VoidSurvivorMegaBlasterExplosionSmall = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterExplosionSmall.prefab"; public static string VoidSurvivorMegaBlasterMuzzleflash = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterMuzzleflash.prefab"; public static string VoidSurvivorMegaBlasterSmallGhost = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterSmallGhost.prefab"; public static string VoidSurvivorMegaBlasterSmallProjectile = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterSmallProjectile.prefab"; public static string VoidSurvivorReadyMegaBlaster = "RoR2/DLC1/VoidSurvivor/VoidSurvivorReadyMegaBlaster.prefab"; public static string VoidSurvivorCorruptDiskExplosion = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptDiskExplosion.prefab"; public static string VoidSurvivorCorruptDiskGhost = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptDiskGhost.prefab"; public static string VoidSurvivorCorruptDiskMuzzleflash = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptDiskMuzzleflash.prefab"; public static string VoidSurvivorCorruptDiskProjectile = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCorruptDiskProjectile.prefab"; public static string VoidSurvivorMegaBlasterBigGhostCorrupted = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterBigGhostCorrupted.prefab"; public static string VoidSurvivorMegaBlasterBigProjectileCorrupted = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterBigProjectileCorrupted.prefab"; public static string VoidSurvivorMegaBlasterExplosionCorrupted = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMegaBlasterExplosionCorrupted.prefab"; public static string VoidSurvivorRepelProjectileTracer = "RoR2/DLC1/VoidSurvivor/VoidSurvivorRepelProjectileTracer.prefab"; public static string VoidSurvivorRepulseMuzzleflash = "RoR2/DLC1/VoidSurvivor/VoidSurvivorRepulseMuzzleflash.prefab"; public static string VoidSurvivorSuppressFX = "RoR2/DLC1/VoidSurvivor/VoidSurvivorSuppressFX.prefab"; public static string VoidSurvivorChargeCrushCorruption = "RoR2/DLC1/VoidSurvivor/VoidSurvivorChargeCrushCorruption.prefab"; public static string VoidSurvivorCrushCorruptionMuzzleflash = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCrushCorruptionMuzzleflash.prefab"; public static string VoidSurvivorChargeCrushHealth = "RoR2/DLC1/VoidSurvivor/VoidSurvivorChargeCrushHealth.prefab"; public static string VoidSurvivorCrushHealthMuzzleflash = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCrushHealthMuzzleflash.prefab"; public static string VoidSurvivorVentCrosshair = "RoR2/DLC1/VoidSurvivor/VoidSurvivorVentCrosshair.prefab"; public static string VoidSurvivorVentFX = "RoR2/DLC1/VoidSurvivor/VoidSurvivorVentFX.prefab"; public static string voidswimvfx = "RoR2/DLC1/VoidSurvivor/void swim vfx.fbx"; public static string VoidBlinkMuzzleflash = "RoR2/DLC1/VoidSurvivor/VoidBlinkMuzzleflash.prefab"; public static string VoidBlinkVfx = "RoR2/DLC1/VoidSurvivor/VoidBlinkVfx.prefab"; public static string VoidBlinkMuzzleflashCorrupted = "RoR2/DLC1/VoidSurvivor/VoidBlinkMuzzleflashCorrupted.prefab"; public static string VoidBlinkVfxCorrupted = "RoR2/DLC1/VoidSurvivor/VoidBlinkVfxCorrupted.prefab"; public static string mdlVoidSurvivorColossus = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivorColossus.fbx"; public static string mdlVoidSurvivorAlt = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivorAlt.fbx"; public static string VoidSurvivorBody = "RoR2/DLC1/VoidSurvivor/VoidSurvivorBody.prefab"; public static string VoidSurvivorCrosshair = "RoR2/DLC1/VoidSurvivor/VoidSurvivorCrosshair.prefab"; public static string VoidSurvivorMonsterMaster = "RoR2/DLC1/VoidSurvivor/VoidSurvivorMonsterMaster.prefab"; public static string mdlVoidSurvivorPod = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivorPod.fbx"; public static string mdlVoidSurvivorPodFalling = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivorPod@Falling.fbx"; public static string mdlVoidSurvivorPodHitGround = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivorPod@HitGround.fbx"; public static string mdlVoidSurvivorPodIdle = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivorPod@Idle.fbx"; public static string mdlVoidSurvivorPodInitialSpawn = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivorPod@InitialSpawn.fbx"; public static string mdlVoidSurvivorPodPopOpen = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivorPod@PopOpen.fbx"; public static string mdlVoidSurvivorPodParticleEffectBaseMesh = "RoR2/DLC1/VoidSurvivor/mdlVoidSurvivorPodParticleEffectBaseMesh.fbx"; public static string VoidSurvivorPod = "RoR2/DLC1/VoidSurvivor/VoidSurvivorPod.prefab"; public static string PodVoidGroundImpact = "RoR2/DLC1/VoidSurvivor/PodVoidGroundImpact.prefab"; public static string PodVoidOpenSplat = "RoR2/DLC1/VoidSurvivor/PodVoidOpenSplat.prefab"; public static string VoidSurvivorPodIdleParticles = "RoR2/DLC1/VoidSurvivor/VoidSurvivorPodIdleParticles.prefab"; public static string DLC1RunBehavior = "RoR2/DLC1/Common/DLC1RunBehavior.prefab"; public static string InfiniteTowerLobbyBackground = "RoR2/DLC1/Common/LobbyBackgrounds/InfiniteTowerLobbyBackground.prefab"; public static string VoidOrb = "RoR2/DLC1/Common/VoidOrb.prefab"; public static string SuppressedItemInventory = "RoR2/DLC1/Common/SuppressedItemInventory.prefab"; public static string FakePointGeoSphere = "RoR2/DLC1/Common/VFX/FakePointGeoSphere.FBX"; public static string FakePointLight31 = "RoR2/DLC1/Common/VFX/FakePointLight.prefab"; public static string voidsharedvfx = "RoR2/DLC1/Common/Void/void shared vfx.fbx"; public static string AffixEarthBodyAttachment = "RoR2/DLC1/EliteEarth/AffixEarthBodyAttachment.prefab"; public static string AffixEarthHealExplosion = "RoR2/DLC1/EliteEarth/AffixEarthHealExplosion.prefab"; public static string AffixEarthTetherVFX = "RoR2/DLC1/EliteEarth/AffixEarthTetherVFX.prefab"; public static string DisplayEliteMendingAntlers = "RoR2/DLC1/EliteEarth/DisplayEliteMendingAntlers.prefab"; public static string AffixEarthHealerBody = "RoR2/DLC1/EliteEarth/AffixEarthHealerBody.prefab"; public static string AffixEarthHealerMaster = "RoR2/DLC1/EliteEarth/AffixEarthHealerMaster.prefab"; public static string mdlEliteMendingAntlers = "RoR2/DLC1/EliteEarth/mdlEliteMendingAntlers.fbx"; public static string PickupAffixEarth = "RoR2/DLC1/EliteEarth/PickupAffixEarth.prefab"; public static string mdlAffixEarthCore = "RoR2/DLC1/EliteEarth/mdlAffixEarthCore.fbx"; public static string DisplayEliteRabbitEars = "RoR2/DLC1/DisplayEliteRabbitEars.prefab"; public static string mdlRabbitEars = "RoR2/DLC1/mdlRabbitEars.fbx"; public static string PickupAffixSecretSpeed = "RoR2/DLC1/PickupAffixSecretSpeed.prefab"; public static string DisplayAffixVoid = "RoR2/DLC1/EliteVoid/DisplayAffixVoid.prefab"; public static string PickupAffixVoid = "RoR2/DLC1/EliteVoid/PickupAffixVoid.prefab"; public static string VoidAffixEffect = "RoR2/DLC1/EliteVoid/VoidAffixEffect.prefab"; public static string VoidInfestorDeath = "RoR2/DLC1/EliteVoid/VoidInfestorDeath.prefab"; public static string VoidInfestorLeapEffect = "RoR2/DLC1/EliteVoid/VoidInfestorLeapEffect.prefab"; public static string VoidInfestorSpawn = "RoR2/DLC1/EliteVoid/VoidInfestorSpawn.prefab"; public static string VoidInfestorVFX = "RoR2/DLC1/EliteVoid/VoidInfestorVFX.prefab"; public static string mdlVoidInfestor = "RoR2/DLC1/EliteVoid/mdlVoidInfestor.fbx"; public static string mdlVoidInfestorAirloops = "RoR2/DLC1/EliteVoid/mdlVoidInfestor@Airloops.fbx"; public static string mdlVoidInfestorFlinches = "RoR2/DLC1/EliteVoid/mdlVoidInfestor@Flinches.fbx"; public static string mdlVoidInfestorIdle = "RoR2/DLC1/EliteVoid/mdlVoidInfestor@Idle.fbx"; public static string mdlVoidInfestorJumpSquat = "RoR2/DLC1/EliteVoid/mdlVoidInfestor@JumpSquat.fbx"; public static string mdlVoidInfestorPitchYaw = "RoR2/DLC1/EliteVoid/mdlVoidInfestor@PitchYaw.fbx"; public static string mdlVoidInfestorRest = "RoR2/DLC1/EliteVoid/mdlVoidInfestor@Rest.fbx"; public static string mdlVoidInfestorRoll = "RoR2/DLC1/EliteVoid/mdlVoidInfestor@Roll.fbx"; public static string mdlVoidInfestorWalk = "RoR2/DLC1/EliteVoid/mdlVoidInfestor@Walk.fbx"; public static string mdlVoidInfestorAttached = "RoR2/DLC1/EliteVoid/mdlVoidInfestor_Attached.fbx"; public static string VoidInfestEffect = "RoR2/DLC1/EliteVoid/VoidInfestEffect.prefab"; public static string VoidInfestorBody = "RoR2/DLC1/EliteVoid/VoidInfestorBody.prefab"; public static string VoidInfestorMaster = "RoR2/DLC1/EliteVoid/VoidInfestorMaster.prefab"; public static string DisplayBlunderbuss = "RoR2/DLC1/BossHunter/DisplayBlunderbuss.prefab"; public static string DisplayBlunderbussFollower = "RoR2/DLC1/BossHunter/DisplayBlunderbussFollower.prefab"; public static string DisplayTricornGhost = "RoR2/DLC1/BossHunter/DisplayTricornGhost.prefab"; public static string DisplayTricornUsed = "RoR2/DLC1/BossHunter/DisplayTricornUsed.prefab"; public static string mdlBlunderbuss = "RoR2/DLC1/BossHunter/mdlBlunderbuss.fbx"; public static string mdlBlunderbussPickup = "RoR2/DLC1/BossHunter/mdlBlunderbussPickup.fbx"; public static string mdlBlunderbussShard = "RoR2/DLC1/BossHunter/mdlBlunderbussShard.fbx"; public static string mdlTricornGhost = "RoR2/DLC1/BossHunter/mdlTricornGhost.fbx"; public static string BossHunterGunEffect = "RoR2/DLC1/BossHunter/BossHunterGunEffect.prefab"; public static string BossHunterHatEffect = "RoR2/DLC1/BossHunter/BossHunterHatEffect.prefab"; public static string BossHunterIndicator = "RoR2/DLC1/BossHunter/BossHunterIndicator.prefab"; public static string BossHunterKillEffect = "RoR2/DLC1/BossHunter/BossHunterKillEffect.prefab"; public static string PickupBlunderbuss = "RoR2/DLC1/BossHunter/PickupBlunderbuss.prefab"; public static string PickupTricorn = "RoR2/DLC1/BossHunter/PickupTricorn.prefab"; public static string GummyCloneExplosion = "RoR2/DLC1/GummyClone/GummyCloneExplosion.prefab"; public static string DisplayGummyClone = "RoR2/DLC1/GummyClone/DisplayGummyClone.prefab"; public static string mdlGummyClone = "RoR2/DLC1/GummyClone/mdlGummyClone.fbx"; public static string GummyCloneProjectile = "RoR2/DLC1/GummyClone/GummyCloneProjectile.prefab"; public static string GummyCloneProjectileGhost = "RoR2/DLC1/GummyClone/GummyCloneProjectileGhost.prefab"; public static string PickupGummyClone = "RoR2/DLC1/GummyClone/PickupGummyClone.prefab"; public static string DisplayIrradiatingLaser = "RoR2/DLC1/IrradiatingLaser/DisplayIrradiatingLaser.prefab"; public static string mdlIrradiatingLaser = "RoR2/DLC1/IrradiatingLaser/mdlIrradiatingLaser.fbx"; public static string PickupIrradiatingLaser = "RoR2/DLC1/IrradiatingLaser/PickupIrradiatingLaser.prefab"; public static string DisplayLunarPortalOnUse = "RoR2/DLC1/LunarPortalOnUse/DisplayLunarPortalOnUse.prefab"; public static string DisplayLunarPortalOnUseFollower = "RoR2/DLC1/LunarPortalOnUse/DisplayLunarPortalOnUseFollower.prefab"; public static string mdlLunarPortalOnUse = "RoR2/DLC1/LunarPortalOnUse/mdlLunarPortalOnUse.fbx"; public static string mdlLunarPortalOnUsePickup = "RoR2/DLC1/LunarPortalOnUse/mdlLunarPortalOnUsePickup.fbx"; public static string PickupLunarPortalOnUse = "RoR2/DLC1/LunarPortalOnUse/PickupLunarPortalOnUse.prefab"; public static string MolotovClusterGhost = "RoR2/DLC1/Molotov/MolotovClusterGhost.prefab"; public static string MolotovClusterIgniteExplosionVFX = "RoR2/DLC1/Molotov/MolotovClusterIgniteExplosionVFX.prefab"; public static string MolotovClusterProjectile = "RoR2/DLC1/Molotov/MolotovClusterProjectile.prefab"; public static string MolotovExplosion = "RoR2/DLC1/Molotov/MolotovExplosion.prefab"; public static string MolotovGhost = "RoR2/DLC1/Molotov/MolotovGhost.prefab"; public static string DisplayMolotov = "RoR2/DLC1/Molotov/DisplayMolotov.prefab"; public static string mdlMolotov = "RoR2/DLC1/Molotov/mdlMolotov.fbx"; public static string MolotovProjectileDotZone = "RoR2/DLC1/Molotov/MolotovProjectileDotZone.prefab"; public static string MolotovSingleIgniteExplosionVFXVariant = "RoR2/DLC1/Molotov/MolotovSingleIgniteExplosionVFX Variant.prefab"; public static string MolotovSingleProjectile = "RoR2/DLC1/Molotov/MolotovSingleProjectile.prefab"; public static string PickupMolotov = "RoR2/DLC1/Molotov/PickupMolotov.prefab"; public static string DisplayExecutiveCard = "RoR2/DLC1/MultiShopCard/DisplayExecutiveCard.prefab"; public static string mdlExecutiveCard = "RoR2/DLC1/MultiShopCard/mdlExecutiveCard.fbx"; public static string PickupExecutiveCard = "RoR2/DLC1/MultiShopCard/PickupExecutiveCard.prefab"; public static string mdlOrbOnUsePickup = "RoR2/DLC1/OrbOnUse/mdlOrbOnUsePickup.fbx"; public static string PickupOrbOnUse = "RoR2/DLC1/OrbOnUse/PickupOrbOnUse.prefab"; public static string PickupVendingMachine = "RoR2/DLC1/VendingMachine/PickupVendingMachine.prefab"; public static string VendingMachineHealEffect = "RoR2/DLC1/VendingMachine/VendingMachineHealEffect.prefab"; public static string VendingMachineImpact = "RoR2/DLC1/VendingMachine/VendingMachineImpact.prefab"; public static string mdlVendingMachine = "RoR2/DLC1/VendingMachine/mdlVendingMachine.fbx"; public static string VendingMachine26 = "RoR2/DLC1/VendingMachine/VendingMachine.prefab"; public static string VendingMachineOrbEffect = "RoR2/DLC1/VendingMachine/VendingMachineOrbEffect.prefab"; public static string DisplayVendingMachine = "RoR2/DLC1/VendingMachine/DisplayVendingMachine.prefab"; public static string DisplayVendingMachine2 = "RoR2/DLC1/VendingMachine/DisplayVendingMachine2.prefab"; public static string mdlVendingMachineBustedPickup = "RoR2/DLC1/VendingMachine/mdlVendingMachineBustedPickup.fbx"; public static string mdlVendingMachineDisplay = "RoR2/DLC1/VendingMachine/mdlVendingMachineDisplay.fbx"; public static string mdlVendingMachinePickup = "RoR2/DLC1/VendingMachine/mdlVendingMachinePickup.fbx"; public static string mdlVendingMachineSoda = "RoR2/DLC1/VendingMachine/mdlVendingMachineSoda.fbx"; public static string VendingMachineProjectile = "RoR2/DLC1/VendingMachine/VendingMachineProjectile.prefab"; public static string VendingMachineProjectileGhost = "RoR2/DLC1/VendingMachine/VendingMachineProjectileGhost.prefab"; public static string InfiniteTowerGameEndReportPanel = "RoR2/DLC1/GameModes/InfiniteTowerRun/InfiniteTowerGameEndReportPanel.prefab"; public static string InfiniteTowerRun = "RoR2/DLC1/GameModes/InfiniteTowerRun/InfiniteTowerRun.prefab"; public static string InfiniteTowerRunMenu = "RoR2/DLC1/GameModes/InfiniteTowerRun/InfiniteTowerRunMenu.prefab"; public static string DistantPlanetAncientLoft1 = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_AncientLoft1.fbx"; public static string DistantPlanetAncientLoft1opt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_AncientLoft1_opt.fbx"; public static string DistantPlanetAncientLoft2 = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_AncientLoft2.fbx"; public static string DistantPlanetAncientLoft2opt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_AncientLoft2_opt.fbx"; public static string DistantPlanetDampCave = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_DampCave.fbx"; public static string DistantPlanetDampCaveopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_DampCave_opt.fbx"; public static string DistantPlanetFrozenWall = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_FrozenWall.fbx"; public static string DistantPlanetFrozenWallopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_FrozenWall_opt.fbx"; public static string DistantPlanetGolemPlains = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_GolemPlains.fbx"; public static string DistantPlanetGolemPlainsopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_GolemPlains_opt.fbx"; public static string DistantPlanetGooLake = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_GooLake.fbx"; public static string DistantPlanetGooLakeopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_GooLake_opt.fbx"; public static string DistantPlanetOuterSphere = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_OuterSphere.fbx"; public static string DistantPlanetOuterSphereopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_OuterSphere_opt.fbx"; public static string DistantPlanetSkyMeadow = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SkyMeadow.fbx"; public static string DistantPlanetSkyMeadowopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SkyMeadow_opt.fbx"; public static string DistantPlanetSpecialBeautiful = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialBeautiful.fbx"; public static string DistantPlanetSpecialBeautifulopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialBeautiful_opt.fbx"; public static string DistantPlanetSpecialDream = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialDream.fbx"; public static string DistantPlanetSpecialDreamopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialDream_opt.fbx"; public static string DistantPlanetSpecialFD = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialFD.fbx"; public static string DistantPlanetSpecialHenge = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialHenge.fbx"; public static string DistantPlanetSpecialHengeopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialHenge_opt.fbx"; public static string DistantPlanetSpecialNebStation = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialNebStation.fbx"; public static string DistantPlanetSpecialShatteredPlanet = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialShatteredPlanet.fbx"; public static string DistantPlanetSpecialShatteredPlanetopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialShatteredPlanet_opt.fbx"; public static string DistantPlanetSpecialWeirdStation = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/DistantPlanet_SpecialWeirdStation.fbx"; public static string VoidArenaDistantPlanets = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/VoidArena Distant Planets.prefab"; public static string InfiniteTowerSphereShield = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerSphereShield.fbx"; public static string InfiniteTowerSphereShieldTypeB = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerSphereShieldTypeB.fbx"; public static string VoidArenaShieldFX = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/VoidArena Shield FX.prefab"; public static string mdlVoidWhale = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/mdlVoidWhale.fbx"; public static string mdlVoidWhaleBlink = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/mdlVoidWhale@Blink.fbx"; public static string mdlVoidWhalePitch = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/mdlVoidWhale@Pitch.fbx"; public static string mdlVoidWhaleSwim = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/mdlVoidWhale@Swim.fbx"; public static string mdlVoidWhaleYaw = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/mdlVoidWhale@Yaw.fbx"; public static string VoidWhale = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/VoidWhale.prefab"; public static string SkyboxOrbitingObjectsTemplate = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/Skybox Orbiting Objects Template.prefab"; public static string InfiniteTowerEdgeEffect = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerEdgeEffect.prefab"; public static string InfiniteTowerFogDamager = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerFogDamager.prefab"; public static string InfiniteTowerGameOverController = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerGameOverController.prefab"; public static string InfiniteTowerSafeWard = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerSafeWard.prefab"; public static string InfiniteTowerSafeWardAwaitingInteraction = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerSafeWardAwaitingInteraction.prefab"; public static string ITSafeWardPositionIndicator = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ITSafeWardPositionIndicator.prefab"; public static string InfiniteTowerSceneDirector = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerSceneDirector.prefab"; public static string InfiniteTowerWaveArtifactBomb = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveArtifactBomb.prefab"; public static string InfiniteTowerWaveArtifactCommand = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveArtifactCommand.prefab"; public static string InfiniteTowerWaveArtifactEnigma = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveArtifactEnigma.prefab"; public static string InfiniteTowerWaveArtifactGlass = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveArtifactGlass.prefab"; public static string InfiniteTowerWaveArtifactMixEnemy = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveArtifactMixEnemy.prefab"; public static string InfiniteTowerWaveArtifactSingleMonsterType = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveArtifactSingleMonsterType.prefab"; public static string InfiniteTowerWaveArtifactWeakAssKnees = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveArtifactWeakAssKnees.prefab"; public static string InfiniteTowerWaveArtifactWispOnDeath = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveArtifactWispOnDeath.prefab"; public static string InfiniteTowerWaveBase = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveBase.prefab"; public static string InfiniteTowerWaveBoss = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveBoss.prefab"; public static string InfiniteTowerWaveBossBrother = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveBossBrother.prefab"; public static string InfiniteTowerWaveBossLunar = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveBossLunar.prefab"; public static string InfiniteTowerWaveBossScav = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveBossScav.prefab"; public static string InfiniteTowerWaveBossVoid = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveBossVoid.prefab"; public static string InfiniteTowerWaveDefault = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerWaveDefault.prefab"; public static string InfiniteTowerBossWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerBossWaveUI.prefab"; public static string InfiniteTowerCurrentArtifactBombWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentArtifactBombWaveUI.prefab"; public static string InfiniteTowerCurrentArtifactCommandWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentArtifactCommandWaveUI.prefab"; public static string InfiniteTowerCurrentArtifactEnigmaWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentArtifactEnigmaWaveUI.prefab"; public static string InfiniteTowerCurrentArtifactGlassWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentArtifactGlassWaveUI.prefab"; public static string InfiniteTowerCurrentArtifactMixEnemyWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentArtifactMixEnemyWaveUI.prefab"; public static string InfiniteTowerCurrentArtifactSingleMonsterTypeWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentArtifactSingleMonsterTypeWaveUI.prefab"; public static string InfiniteTowerCurrentArtifactWeakAssKneesUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentArtifactWeakAssKneesUI.prefab"; public static string InfiniteTowerCurrentArtifactWispOnDeathUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentArtifactWispOnDeathUI.prefab"; public static string InfiniteTowerCurrentBossBrotherUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentBossBrotherUI.prefab"; public static string InfiniteTowerCurrentBossLunarWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentBossLunarWaveUI.prefab"; public static string InfiniteTowerCurrentBossScavWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentBossScavWaveUI.prefab"; public static string InfiniteTowerCurrentBossVoidWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentBossVoidWaveUI.prefab"; public static string InfiniteTowerCurrentBossWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentBossWaveUI.prefab"; public static string InfiniteTowerCurrentWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerCurrentWaveUI.prefab"; public static string InfiniteTowerDefaultWaveUI36 = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerDefaultWaveUI.prefab"; public static string InfiniteTowerNextWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerNextWaveUI.prefab"; public static string InfiniteTowerUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerUI.prefab"; public static string WaveEndPositionIndicator = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/WaveEndPositionIndicator.prefab"; public static string WeatherInfiniteTowerFrozenwallVariantVariant = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/Weather, InfiniteTower Frozenwall Variant Variant.prefab"; public static string WeatherInfiniteTower = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/Weather, InfiniteTower.prefab"; public static string PortalInfiniteTower = "RoR2/DLC1/GameModes/InfiniteTowerRun/PortalInfiniteTower.prefab"; public static string CategoryChest2DamageVariant = "RoR2/DLC1/CategoryChest2/CategoryChest2Damage Variant.prefab"; public static string CategoryChest2HealingVariant = "RoR2/DLC1/CategoryChest2/CategoryChest2Healing Variant.prefab"; public static string CategoryChest2UtilityVariant = "RoR2/DLC1/CategoryChest2/CategoryChest2Utility Variant.prefab"; public static string mdlChest2Category = "RoR2/DLC1/CategoryChest2/mdlChest2Category.fbx"; public static string mdlChest2CategorySymbols = "RoR2/DLC1/CategoryChest2/mdlChest2CategorySymbols.fbx"; public static string ArtifactworldPortalSpawnEffect1 = "RoR2/DLC1/DeepVoidPortal/ArtifactworldPortalSpawnEffect 1.prefab"; public static string DeepVoidPortal = "RoR2/DLC1/DeepVoidPortal/DeepVoidPortal.prefab"; public static string DeepVoidPortalBattery = "RoR2/DLC1/DeepVoidPortalBattery/DeepVoidPortalBattery.prefab"; public static string DeepVoidPortalBatteryPositionIndicator = "RoR2/DLC1/DeepVoidPortalBattery/DeepVoidPortalBatteryPositionIndicator.prefab"; public static string mdlVoidSignal = "RoR2/DLC1/DeepVoidPortalBattery/mdlVoidSignal.fbx"; public static string mdlVoidSignalREFERENCEOBJECTDELETE = "RoR2/DLC1/DeepVoidPortalBattery/mdlVoidSignalREFERENCEOBJECTDELETE.prefab"; public static string FreeChestMultiShop = "RoR2/DLC1/FreeChestMultiShop/FreeChestMultiShop.prefab"; public static string mdlShippingDrone = "RoR2/DLC1/FreeChestMultiShop/mdlShippingDrone.fbx"; public static string mdlShippingDroneBackLightFlashing = "RoR2/DLC1/FreeChestMultiShop/mdlShippingDrone@BackLightFlashing.fbx"; public static string mdlShippingDroneChooseLeft = "RoR2/DLC1/FreeChestMultiShop/mdlShippingDrone@ChooseLeft.fbx"; public static string mdlShippingDroneChooseRight = "RoR2/DLC1/FreeChestMultiShop/mdlShippingDrone@ChooseRight.fbx"; public static string mdlShippingDroneFansSpinning = "RoR2/DLC1/FreeChestMultiShop/mdlShippingDrone@FansSpinning.fbx"; public static string mdlShippingDroneFloat = "RoR2/DLC1/FreeChestMultiShop/mdlShippingDrone@Float.fbx"; public static string mdlShippingDroneFrontLightFlashing = "RoR2/DLC1/FreeChestMultiShop/mdlShippingDrone@FrontLightFlashing.fbx"; public static string mdlShippingDroneStill = "RoR2/DLC1/FreeChestMultiShop/mdlShippingDrone@Still.fbx"; public static string mdlShippingDronePod = "RoR2/DLC1/FreeChestMultiShop/mdlShippingDronePod.fbx"; public static string FreeChestTerminal = "RoR2/DLC1/FreeChestTerminal/FreeChestTerminal.prefab"; public static string FreeChestTerminalShippingDrone = "RoR2/DLC1/FreeChestTerminalShippingDrone/FreeChestTerminalShippingDrone.prefab"; public static string OptionPickerPanel = "RoR2/DLC1/OptionPickup/OptionPickerPanel.prefab"; public static string OptionPickup = "RoR2/DLC1/OptionPickup/OptionPickup.prefab"; public static string mdlVoidSeerPortal = "RoR2/DLC1/PortalVoid/mdlVoidSeerPortal.fbx"; public static string PortalVoid = "RoR2/DLC1/PortalVoid/PortalVoid.prefab"; public static string affixvoidvfx = "RoR2/DLC1/VoidCamp/affix void vfx.fbx"; public static string PurchaseLockVoid = "RoR2/DLC1/VoidCamp/PurchaseLockVoid.prefab"; public static string voidcampinvertedsphere = "RoR2/DLC1/VoidCamp/void camp inverted sphere.fbx"; public static string VoidCamp = "RoR2/DLC1/VoidCamp/VoidCamp.prefab"; public static string VoidCampGrass = "RoR2/DLC1/VoidCamp/VoidCampGrass.prefab"; public static string VoidCampKelp = "RoR2/DLC1/VoidCamp/VoidCampKelp.prefab"; public static string VoidCampTallGrassCluster1 = "RoR2/DLC1/VoidCamp/VoidCampTallGrassCluster1.prefab"; public static string VoidCampTallGrassCluster2 = "RoR2/DLC1/VoidCamp/VoidCampTallGrassCluster2.prefab"; public static string VoidCampTallGrassCluster3 = "RoR2/DLC1/VoidCamp/VoidCampTallGrassCluster3.prefab"; public static string VoidCampXYZ = "RoR2/DLC1/VoidCamp/VoidCampXYZ.prefab"; public static string VoidCampXYZOpen = "RoR2/DLC1/VoidCamp/VoidCampXYZOpen.prefab"; public static string VoidCampPositionIndicator = "RoR2/DLC1/VoidCamp/VoidCampPositionIndicator.prefab"; public static string VoidChest = "RoR2/DLC1/VoidChest/VoidChest.prefab"; public static string mdlVoidChest = "RoR2/DLC1/VoidChest/mdlVoidChest.fbx"; public static string VoidChestPurchaseEffect = "RoR2/DLC1/VoidChest/VoidChestPurchaseEffect.prefab"; public static string mdlVoidCoinBarrel = "RoR2/DLC1/VoidCoinBarrel/mdlVoidCoinBarrel.fbx"; public static string VoidCoinBarrel = "RoR2/DLC1/VoidCoinBarrel/VoidCoinBarrel.prefab"; public static string VoidCoinBarrelExplosion = "RoR2/DLC1/VoidCoinBarrel/VoidCoinBarrelExplosion.prefab"; public static string mdlVoidFogEmitter = "RoR2/DLC1/mdlVoidFogEmitter.fbx"; public static string VoidOutroPortal = "RoR2/DLC1/VoidOutroPortal/VoidOutroPortal.prefab"; public static string SuppressorBreakFromShellFirstTimeEffect = "RoR2/DLC1/VoidSuppressor/SuppressorBreakFromShellFirstTimeEffect.prefab"; public static string SuppressorClapEffect = "RoR2/DLC1/VoidSuppressor/SuppressorClapEffect.prefab"; public static string SuppressorDieEffect = "RoR2/DLC1/VoidSuppressor/SuppressorDieEffect.prefab"; public static string SuppressorEradicateItemEffect = "RoR2/DLC1/VoidSuppressor/SuppressorEradicateItemEffect.prefab"; public static string SuppressorItemSpawnEffect = "RoR2/DLC1/VoidSuppressor/SuppressorItemSpawnEffect.prefab"; public static string SuppressorPreEradicateItemEffect = "RoR2/DLC1/VoidSuppressor/SuppressorPreEradicateItemEffect.prefab"; public static string SuppressorRetreatToShellEffect = "RoR2/DLC1/VoidSuppressor/SuppressorRetreatToShellEffect.prefab"; public static string SuppressorVibrateDownStonesEffect = "RoR2/DLC1/VoidSuppressor/SuppressorVibrateDownStonesEffect.prefab"; public static string VoidSuppressor = "RoR2/DLC1/VoidSuppressor/VoidSuppressor.prefab"; public static string mdlVoidSuppressor = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor.fbx"; public static string mdlVoidSuppressorBurst = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@Burst.fbx"; public static string mdlVoidSuppressorDeathSuddenEnd = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@DeathSuddenEnd.fbx"; public static string mdlVoidSuppressorDie = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@Die.fbx"; public static string mdlVoidSuppressorHide = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@Hide.fbx"; public static string mdlVoidSuppressorIdle = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@Idle.fbx"; public static string mdlVoidSuppressorPitch = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@Pitch.fbx"; public static string mdlVoidSuppressorSuppress = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@Suppress.fbx"; public static string mdlVoidSuppressorVibrate = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@Vibrate.fbx"; public static string mdlVoidSuppressorVibrateIntoGround = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@VibrateIntoGround.fbx"; public static string mdlVoidSuppressorYaw = "RoR2/DLC1/VoidSuppressor/mdlVoidSuppressor@Yaw.fbx"; public static string mdlVoidTriple = "RoR2/DLC1/VoidTriple/mdlVoidTriple.fbx"; public static string VoidTriple = "RoR2/DLC1/VoidTriple/VoidTriple.prefab"; public static string mdlVoidWardCrab = "RoR2/DLC1/VoidWardCrab/mdlVoidWardCrab.fbx"; public static string mdlVoidWardCrabAnims = "RoR2/DLC1/VoidWardCrab/mdlVoidWardCrab@Anims.fbx"; public static string VoidWardCrabBurrowEffect = "RoR2/DLC1/VoidWardCrab/VoidWardCrabBurrowEffect.prefab"; public static string VoidWardCrabLandEffect = "RoR2/DLC1/VoidWardCrab/VoidWardCrabLandEffect.prefab"; public static string mdlVoidWatcher = "RoR2/DLC1/mdlVoidWatcher.fbx"; public static string mdlVoidWatcheropt = "RoR2/DLC1/mdlVoidWatcher_opt.fbx"; public static string VoidWatcher = "RoR2/DLC1/VoidWatcher.prefab"; public static string VoidWatcheropt = "RoR2/DLC1/VoidWatcher_opt.prefab"; public static string DisplayCoffee = "RoR2/DLC1/AttackSpeedAndMoveSpeed/DisplayCoffee.prefab"; public static string mdlCoffee = "RoR2/DLC1/AttackSpeedAndMoveSpeed/mdlCoffee.fbx"; public static string PickupCoffee = "RoR2/DLC1/AttackSpeedAndMoveSpeed/PickupCoffee.prefab"; public static string BearVoidEffect = "RoR2/DLC1/BearVoid/BearVoidEffect.prefab"; public static string DisplayBearVoid = "RoR2/DLC1/BearVoid/DisplayBearVoid.prefab"; public static string DisplayBearVoidSit = "RoR2/DLC1/BearVoid/DisplayBearVoidSit.prefab"; public static string mdlBearVoid = "RoR2/DLC1/BearVoid/mdlBearVoid.fbx"; public static string BearVoidProc = "RoR2/DLC1/BearVoid/BearVoidProc.prefab"; public static string PickupBearVoid = "RoR2/DLC1/BearVoid/PickupBearVoid.prefab"; public static string FractureImpactEffect = "RoR2/DLC1/BleedOnHitVoid/FractureImpactEffect.prefab"; public static string PickupTriTipVoid = "RoR2/DLC1/BleedOnHitVoid/PickupTriTipVoid.prefab"; public static string PreFractureEffect = "RoR2/DLC1/BleedOnHitVoid/PreFractureEffect.prefab"; public static string DisplayTriTipVoid = "RoR2/DLC1/BleedOnHitVoid/DisplayTriTipVoid.prefab"; public static string mdlTriTipVoid = "RoR2/DLC1/BleedOnHitVoid/mdlTriTipVoid.fbx"; public static string PickupUkuleleVoid = "RoR2/DLC1/ChainLightningVoid/PickupUkuleleVoid.prefab"; public static string DisplayUkuleleVoid = "RoR2/DLC1/ChainLightningVoid/DisplayUkuleleVoid.prefab"; public static string mdlUkuleleVoid = "RoR2/DLC1/ChainLightningVoid/mdlUkuleleVoid.fbx"; public static string VoidLightningOrbEffect = "RoR2/DLC1/ChainLightningVoid/VoidLightningOrbEffect.prefab"; public static string VoidLightningStrikeImpact = "RoR2/DLC1/ChainLightningVoid/VoidLightningStrikeImpact.prefab"; public static string CloverVoidEffect = "RoR2/DLC1/CloverVoid/CloverVoidEffect.prefab"; public static string DisplayCloverVoid = "RoR2/DLC1/CloverVoid/DisplayCloverVoid.prefab"; public static string mdlCloverVoid = "RoR2/DLC1/CloverVoid/mdlCloverVoid.fbx"; public static string mdlCloverVoidLeaf = "RoR2/DLC1/CloverVoid/mdlCloverVoidLeaf.fbx"; public static string CloverVoidTransformationNotificationPanel = "RoR2/DLC1/CloverVoid/CloverVoidTransformationNotificationPanel.prefab"; public static string PickupCloverVoid = "RoR2/DLC1/CloverVoid/PickupCloverVoid.prefab"; public static string DisplayLaserSight = "RoR2/DLC1/CritDamage/DisplayLaserSight.prefab"; public static string mdlLaserSight = "RoR2/DLC1/CritDamage/mdlLaserSight.fbx"; public static string PickupLaserSight = "RoR2/DLC1/CritDamage/PickupLaserSight.prefab"; public static string CritGlassesVoidExecuteEffect = "RoR2/DLC1/CritGlassesVoid/CritGlassesVoidExecuteEffect.prefab"; public static string DisplayGlassesVoid = "RoR2/DLC1/CritGlassesVoid/DisplayGlassesVoid.prefab"; public static string mdlCritGlassesVoid = "RoR2/DLC1/CritGlassesVoid/mdlCritGlassesVoid.fbx"; public static string mdlCritGlassesVoidPickup = "RoR2/DLC1/CritGlassesVoid/mdlCritGlassesVoidPickup.fbx"; public static string PickupGlassesVoid = "RoR2/DLC1/CritGlassesVoid/PickupGlassesVoid.prefab"; public static string ChainGunOrbEffect = "RoR2/DLC1/DroneWeapons/ChainGunOrbEffect.prefab"; public static string DroneWeaponsChainGunController = "RoR2/DLC1/DroneWeapons/DroneWeaponsChainGunController.prefab"; public static string DisplayDroneWeaponLauncher = "RoR2/DLC1/DroneWeapons/DisplayDroneWeaponLauncher.prefab"; public static string DisplayDroneWeaponMinigun = "RoR2/DLC1/DroneWeapons/DisplayDroneWeaponMinigun.prefab"; public static string DisplayDroneWeaponRobotArm = "RoR2/DLC1/DroneWeapons/DisplayDroneWeaponRobotArm.prefab"; public static string mdlDroneWeaponLauncher = "RoR2/DLC1/DroneWeapons/mdlDroneWeaponLauncher.fbx"; public static string mdlDroneWeaponMinigun = "RoR2/DLC1/DroneWeapons/mdlDroneWeaponMinigun.fbx"; public static string mdlDroneWeaponRobotArm = "RoR2/DLC1/DroneWeapons/mdlDroneWeaponRobotArm.fbx"; public static string mdlDroneWeaponsPickup = "RoR2/DLC1/DroneWeapons/mdlDroneWeaponsPickup.fbx"; public static string MicroMissileOrbEffect = "RoR2/DLC1/DroneWeapons/MicroMissileOrbEffect.prefab"; public static string PickupDroneWeapons = "RoR2/DLC1/DroneWeapons/PickupDroneWeapons.prefab"; public static string ElementalRingVoidBlackHole = "RoR2/DLC1/ElementalRingVoid/ElementalRingVoidBlackHole.prefab"; public static string ElementalRingVoidImplodeEffect = "RoR2/DLC1/ElementalRingVoid/ElementalRingVoidImplodeEffect.prefab"; public static string PickupVoidRing = "RoR2/DLC1/ElementalRingVoid/PickupVoidRing.prefab"; public static string DisplayVoidRing = "RoR2/DLC1/ElementalRingVoid/DisplayVoidRing.prefab"; public static string mdlVoidRing = "RoR2/DLC1/ElementalRingVoid/mdlVoidRing.fbx"; public static string mdlVoidRingLowRes = "RoR2/DLC1/ElementalRingVoid/mdlVoidRing_LowRes.fbx"; public static string DisplayFuelCellVoid = "RoR2/DLC1/EquipmentMagazineVoid/DisplayFuelCellVoid.prefab"; public static string mdlFuelCellVoid = "RoR2/DLC1/EquipmentMagazineVoid/mdlFuelCellVoid.fbx"; public static string PickupFuelCellVoid = "RoR2/DLC1/EquipmentMagazineVoid/PickupFuelCellVoid.prefab"; public static string ExplodeOnDeathVoidExplosion = "RoR2/DLC1/ExplodeOnDeathVoid/ExplodeOnDeathVoidExplosion.prefab"; public static string ExplodeOnDeathVoidExplosionEffect = "RoR2/DLC1/ExplodeOnDeathVoid/ExplodeOnDeathVoidExplosionEffect.prefab"; public static string PickupWillowWispVoid = "RoR2/DLC1/ExplodeOnDeathVoid/PickupWillowWispVoid.prefab"; public static string DisplayWillowWispVoid = "RoR2/DLC1/ExplodeOnDeathVoid/DisplayWillowWispVoid.prefab"; public static string mdlWilloWispVoid = "RoR2/DLC1/ExplodeOnDeathVoid/mdlWilloWispVoid.fbx"; public static string DisplayHippoVoid = "RoR2/DLC1/ExtraLifeVoid/DisplayHippoVoid.prefab"; public static string mdlHippoVoid = "RoR2/DLC1/ExtraLifeVoid/mdlHippoVoid.fbx"; public static string PickupHippoVoid = "RoR2/DLC1/ExtraLifeVoid/PickupHippoVoid.prefab"; public static string VoidRezEffect = "RoR2/DLC1/ExtraLifeVoid/VoidRezEffect.prefab"; public static string DisplayDelicateWatch = "RoR2/DLC1/FragileDamageBonus/DisplayDelicateWatch.prefab"; public static string mdlDelicateWatchDisplay = "RoR2/DLC1/FragileDamageBonus/mdlDelicateWatchDisplay.fbx"; public static string mdlDelicateWatchPickup = "RoR2/DLC1/FragileDamageBonus/mdlDelicateWatchPickup.fbx"; public static string DelicateWatchProcEffect = "RoR2/DLC1/FragileDamageBonus/DelicateWatchProcEffect.prefab"; public static string PickupDelicateWatch = "RoR2/DLC1/FragileDamageBonus/PickupDelicateWatch.prefab"; public static string PickupShippingRequestForm = "RoR2/DLC1/FreeChest/PickupShippingRequestForm.prefab"; public static string DisplayShippingRequestForm = "RoR2/DLC1/FreeChest/DisplayShippingRequestForm.prefab"; public static string mdlShippingRequestFormDisplay = "RoR2/DLC1/FreeChest/mdlShippingRequestFormDisplay.fbx"; public static string mdlShippingRequestFormPickup = "RoR2/DLC1/FreeChest/mdlShippingRequestFormPickup.fbx"; public static string GainCoinsImpact = "RoR2/DLC1/GoldOnHurt/GainCoinsImpact.prefab"; public static string PickupRollOfPennies = "RoR2/DLC1/GoldOnHurt/PickupRollOfPennies.prefab"; public static string DisplayRollOfPennies = "RoR2/DLC1/GoldOnHurt/DisplayRollOfPennies.prefab"; public static string mdlRollOfPenniesDisplay = "RoR2/DLC1/GoldOnHurt/mdlRollOfPenniesDisplay.fbx"; public static string mdlRollOfPenniesPickup = "RoR2/DLC1/GoldOnHurt/mdlRollOfPenniesPickup.fbx"; public static string DisplayLunarShoulderNature = "RoR2/DLC1/HalfAttackSpeedHalfCooldowns/DisplayLunarShoulderNature.prefab"; public static string mdlLunarShoulderNature = "RoR2/DLC1/HalfAttackSpeedHalfCooldowns/mdlLunarShoulderNature.fbx"; public static string PickupLunarShoulderNature = "RoR2/DLC1/HalfAttackSpeedHalfCooldowns/PickupLunarShoulderNature.prefab"; public static string DisplayLunarShoulderStone = "RoR2/DLC1/HalfSpeedDoubleHealth/DisplayLunarShoulderStone.prefab"; public static string mdlhalfspeeddoublehealth = "RoR2/DLC1/HalfSpeedDoubleHealth/mdlhalfspeeddoublehealth.fbx"; public static string mdlLunarShoulderStone = "RoR2/DLC1/HalfSpeedDoubleHealth/mdlLunarShoulderStone.fbx"; public static string mdlLunarShoulderStonePickup = "RoR2/DLC1/HalfSpeedDoubleHealth/mdlLunarShoulderStonePickup.fbx"; public static string PickupLunarShoulderStone = "RoR2/DLC1/HalfSpeedDoubleHealth/PickupLunarShoulderStone.prefab"; public static string HealingPotionEffect = "RoR2/DLC1/HealingPotion/HealingPotionEffect.prefab"; public static string DisplayHealingPotion = "RoR2/DLC1/HealingPotion/DisplayHealingPotion.prefab"; public static string mdlHealingPotion = "RoR2/DLC1/HealingPotion/mdlHealingPotion.fbx"; public static string mdlHealingPotionEmpty = "RoR2/DLC1/HealingPotion/mdlHealingPotionEmpty.fbx"; public static string PickupHealingPotion = "RoR2/DLC1/HealingPotion/PickupHealingPotion.prefab"; public static string ImmuneToDebuffEffect = "RoR2/DLC1/ImmuneToDebuff/ImmuneToDebuffEffect.prefab"; public static string PickupRaincoat = "RoR2/DLC1/ImmuneToDebuff/PickupRaincoat.prefab"; public static string DisplayRainCoatBelt = "RoR2/DLC1/ImmuneToDebuff/DisplayRainCoatBelt.prefab"; public static string mdlRaincoatDisplayBelt = "RoR2/DLC1/ImmuneToDebuff/mdlRaincoatDisplayBelt.fbx"; public static string mdlRaincoatDisplayFolded = "RoR2/DLC1/ImmuneToDebuff/mdlRaincoatDisplayFolded.fbx"; public static string mdlRaincoatPickup = "RoR2/DLC1/ImmuneToDebuff/mdlRaincoatPickup.fbx"; public static string mdlRaincoatSpecialPickup = "RoR2/DLC1/ImmuneToDebuff/mdlRaincoatSpecialPickup.fbx"; public static string ExplosionLunarSun = "RoR2/DLC1/LunarSun/ExplosionLunarSun.prefab"; public static string LunarSunProjectile = "RoR2/DLC1/LunarSun/LunarSunProjectile.prefab"; public static string LunarSunProjectileGhost = "RoR2/DLC1/LunarSun/LunarSunProjectileGhost.prefab"; public static string PickupSunHead = "RoR2/DLC1/LunarSun/PickupSunHead.prefab"; public static string DisplaySunHead = "RoR2/DLC1/LunarSun/DisplaySunHead.prefab"; public static string DisplaySunHeadNeck = "RoR2/DLC1/LunarSun/DisplaySunHeadNeck.prefab"; public static string mdlSunHead = "RoR2/DLC1/LunarSun/mdlSunHead.fbx"; public static string mdlSunHeadNeck = "RoR2/DLC1/LunarSun/mdlSunHeadNeck.fbx"; public static string mdlSunHeadPickup = "RoR2/DLC1/LunarSun/mdlSunHeadPickup.fbx"; public static string DisplayLunarWings = "RoR2/DLC1/LunarWings/DisplayLunarWings.prefab"; public static string mdlLunarWings = "RoR2/DLC1/LunarWings/mdlLunarWings.fbx"; public static string mdlLunarWingsPickup = "RoR2/DLC1/LunarWings/mdlLunarWingsPickup.fbx"; public static string PickupLunarWings = "RoR2/DLC1/LunarWings/PickupLunarWings.prefab"; public static string DisplayDefenseNucleus = "RoR2/DLC1/MinorConstructOnKill/DisplayDefenseNucleus.prefab"; public static string DisplayDefenseNucleusFollower = "RoR2/DLC1/MinorConstructOnKill/DisplayDefenseNucleusFollower.prefab"; public static string mdlDefenseNucleus = "RoR2/DLC1/MinorConstructOnKill/mdlDefenseNucleus.fbx"; public static string mdlDefenseNucleusIdle = "RoR2/DLC1/MinorConstructOnKill/mdlDefenseNucleus@Idle.fbx"; public static string PickupDefenseNucleus = "RoR2/DLC1/MinorConstructOnKill/PickupDefenseNucleus.prefab"; public static string MinorConstructOnKillProjectile = "RoR2/DLC1/MinorConstructOnKill/MinorConstructOnKillProjectile.prefab"; public static string MinorConstructOnKillProjectileGhost = "RoR2/DLC1/MinorConstructOnKill/MinorConstructOnKillProjectileGhost.prefab"; public static string DisplayMissileLauncherVoid = "RoR2/DLC1/MissileVoid/DisplayMissileLauncherVoid.prefab"; public static string mdlMissileLauncherVoid = "RoR2/DLC1/MissileVoid/mdlMissileLauncherVoid.fbx"; public static string MissileVoidGhost = "RoR2/DLC1/MissileVoid/MissileVoidGhost.prefab"; public static string MissileVoidOrbEffect = "RoR2/DLC1/MissileVoid/MissileVoidOrbEffect.prefab"; public static string MissileVoidProjectile = "RoR2/DLC1/MissileVoid/MissileVoidProjectile.prefab"; public static string PickupMissileLauncherVoid = "RoR2/DLC1/MissileVoid/PickupMissileLauncherVoid.prefab"; public static string VoidImpactEffect = "RoR2/DLC1/MissileVoid/VoidImpactEffect.prefab"; public static string DisplayICBM = "RoR2/DLC1/MoreMissile/DisplayICBM.prefab"; public static string mdlICBM = "RoR2/DLC1/MoreMissile/mdlICBM.fbx"; public static string PickupICBM = "RoR2/DLC1/MoreMissile/PickupICBM.prefab"; public static string DisplayGrappleHook = "RoR2/DLC1/MoveSpeedOnKill/DisplayGrappleHook.prefab"; public static string mdlGrappleHookDisplay = "RoR2/DLC1/MoveSpeedOnKill/mdlGrappleHookDisplay.fbx"; public static string mdlGrappleHookPickup = "RoR2/DLC1/MoveSpeedOnKill/mdlGrappleHookPickup.fbx"; public static string MoveSpeedOnKillActivate = "RoR2/DLC1/MoveSpeedOnKill/MoveSpeedOnKillActivate.prefab"; public static string PickupGrappleHook = "RoR2/DLC1/MoveSpeedOnKill/PickupGrappleHook.prefab"; public static string MushroomVoidEffect = "RoR2/DLC1/MushroomVoid/MushroomVoidEffect.prefab"; public static string DisplayMushroomVoid = "RoR2/DLC1/MushroomVoid/DisplayMushroomVoid.prefab"; public static string mdlMushroomVoid = "RoR2/DLC1/MushroomVoid/mdlMushroomVoid.fbx"; public static string PickupMushroomVoid = "RoR2/DLC1/MushroomVoid/PickupMushroomVoid.prefab"; public static string DisplayOddlyShapedOpal = "RoR2/DLC1/OutOfCombatArmor/DisplayOddlyShapedOpal.prefab"; public static string mdlOddlyShapedOpalDisplay = "RoR2/DLC1/OutOfCombatArmor/mdlOddlyShapedOpalDisplay.fbx"; public static string mdlOddlyShapedOpalPickup = "RoR2/DLC1/OutOfCombatArmor/mdlOddlyShapedOpalPickup.fbx"; public static string OutOfCombatArmorEffect = "RoR2/DLC1/OutOfCombatArmor/OutOfCombatArmorEffect.prefab"; public static string PickupOddlyShapedOpal = "RoR2/DLC1/OutOfCombatArmor/PickupOddlyShapedOpal.prefab"; public static string PermanentDebuffEffect = "RoR2/DLC1/PermanentDebuffOnHit/PermanentDebuffEffect.prefab"; public static string PickupScorpion = "RoR2/DLC1/PermanentDebuffOnHit/PickupScorpion.prefab"; public static string DisplayScorpion = "RoR2/DLC1/PermanentDebuffOnHit/DisplayScorpion.prefab"; public static string mdlScorpion = "RoR2/DLC1/PermanentDebuffOnHit/mdlScorpion.fbx"; public static string mdlScorpionPickup = "RoR2/DLC1/PermanentDebuffOnHit/mdlScorpionPickup.fbx"; public static string PickupShuriken = "RoR2/DLC1/PrimarySkillShuriken/PickupShuriken.prefab"; public static string ShurikenGhost = "RoR2/DLC1/PrimarySkillShuriken/ShurikenGhost.prefab"; public static string ShurikenImpact = "RoR2/DLC1/PrimarySkillShuriken/ShurikenImpact.prefab"; public static string DisplayShuriken = "RoR2/DLC1/PrimarySkillShuriken/DisplayShuriken.prefab"; public static string mdlShuriken = "RoR2/DLC1/PrimarySkillShuriken/mdlShuriken.fbx"; public static string mdlShurikenPickup = "RoR2/DLC1/PrimarySkillShuriken/mdlShurikenPickup.fbx"; public static string ShurikenProjectile = "RoR2/DLC1/PrimarySkillShuriken/ShurikenProjectile.prefab"; public static string DisplayBottledChaos = "RoR2/DLC1/RandomEquipmentTrigger/DisplayBottledChaos.prefab"; public static string mdlBottledChaos = "RoR2/DLC1/RandomEquipmentTrigger/mdlBottledChaos.fbx"; public static string PickupBottledChaos = "RoR2/DLC1/RandomEquipmentTrigger/PickupBottledChaos.prefab"; public static string RandomEquipmentTriggerProcEffect = "RoR2/DLC1/RandomEquipmentTrigger/RandomEquipmentTriggerProcEffect.prefab"; public static string DisplayDomino = "RoR2/DLC1/RandomlyLunar/DisplayDomino.prefab"; public static string DisplayDominoFollower = "RoR2/DLC1/RandomlyLunar/DisplayDominoFollower.prefab"; public static string mdlDomino = "RoR2/DLC1/RandomlyLunar/mdlDomino.fbx"; public static string mdlDomino35 = "RoR2/DLC1/RandomlyLunar/mdlDomino.prefab"; public static string mdlDominoopt = "RoR2/DLC1/RandomlyLunar/mdlDomino_opt.fbx"; public static string mdlDominoopt20 = "RoR2/DLC1/RandomlyLunar/mdlDomino_opt.prefab"; public static string PickupDomino = "RoR2/DLC1/RandomlyLunar/PickupDomino.prefab"; public static string PickupRegeneratingScrap = "RoR2/DLC1/RegeneratingScrap/PickupRegeneratingScrap.prefab"; public static string RegeneratingScrapExplosionDisplay = "RoR2/DLC1/RegeneratingScrap/RegeneratingScrapExplosionDisplay.prefab"; public static string RegeneratingScrapExplosionInPrinter = "RoR2/DLC1/RegeneratingScrap/RegeneratingScrapExplosionInPrinter.prefab"; public static string DisplayRegeneratingScrap = "RoR2/DLC1/RegeneratingScrap/DisplayRegeneratingScrap.prefab"; public static string mdlRegeneratingScrap = "RoR2/DLC1/RegeneratingScrap/mdlRegeneratingScrap.fbx"; public static string RegeneratingScrapRegenTransformationNotificationPanel = "RoR2/DLC1/RegeneratingScrap/RegeneratingScrapRegenTransformationNotificationPanel.prefab"; public static string PickupScrapVoid = "RoR2/DLC1/ScrapVoid/PickupScrapVoid.prefab"; public static string PickupScrapVoidGreen = "RoR2/DLC1/ScrapVoid/PickupScrapVoidGreen.prefab"; public static string PickupScrapVoidRed = "RoR2/DLC1/ScrapVoid/PickupScrapVoidRed.prefab"; public static string PickupScrapVoidWhite = "RoR2/DLC1/ScrapVoid/PickupScrapVoidWhite.prefab"; public static string DisplayScrapVoid = "RoR2/DLC1/ScrapVoid/DisplayScrapVoid.prefab"; public static string DisplayScrapVoidGreen = "RoR2/DLC1/ScrapVoid/DisplayScrapVoidGreen.prefab"; public static string DisplayScrapVoidRed = "RoR2/DLC1/ScrapVoid/DisplayScrapVoidRed.prefab"; public static string DisplayScrapVoidWhite = "RoR2/DLC1/ScrapVoid/DisplayScrapVoidWhite.prefab"; public static string mdlScrapVoid = "RoR2/DLC1/ScrapVoid/mdlScrapVoid.fbx"; public static string DisplayBaubleVoid = "RoR2/DLC1/SlowOnHitVoid/DisplayBaubleVoid.prefab"; public static string DisplayBaubleVoidEasyPlacement = "RoR2/DLC1/SlowOnHitVoid/DisplayBaubleVoidEasyPlacement.prefab"; public static string mdlBaubleVoid = "RoR2/DLC1/SlowOnHitVoid/mdlBaubleVoid.fbx"; public static string mdlBaubleVoidDisplay = "RoR2/DLC1/SlowOnHitVoid/mdlBaubleVoidDisplay.fbx"; public static string PickupBaubleVoid = "RoR2/DLC1/SlowOnHitVoid/PickupBaubleVoid.prefab"; public static string DisplayGasTank = "RoR2/DLC1/StrengthenBurn/DisplayGasTank.prefab"; public static string mdlGasTank = "RoR2/DLC1/StrengthenBurn/mdlGasTank.fbx"; public static string PickupGasTank = "RoR2/DLC1/StrengthenBurn/PickupGasTank.prefab"; public static string StrongerBurnEffect = "RoR2/DLC1/StrengthenBurn/StrongerBurnEffect.prefab"; public static string DisplayKeyVoid = "RoR2/DLC1/TreasureCacheVoid/DisplayKeyVoid.prefab"; public static string mdlKeyVoid = "RoR2/DLC1/TreasureCacheVoid/mdlKeyVoid.fbx"; public static string LockboxVoid = "RoR2/DLC1/TreasureCacheVoid/LockboxVoid.prefab"; public static string mdlLockboxVoid = "RoR2/DLC1/TreasureCacheVoid/mdlLockboxVoid.fbx"; public static string mdlLockboxVoidEggShards = "RoR2/DLC1/TreasureCacheVoid/mdlLockboxVoidEggShards.fbx"; public static string PickupKeyVoid = "RoR2/DLC1/TreasureCacheVoid/PickupKeyVoid.prefab"; public static string VoidCacheOpenExplosion = "RoR2/DLC1/TreasureCacheVoid/VoidCacheOpenExplosion.prefab"; public static string DisplayMegaCrabItem = "RoR2/DLC1/DisplayMegaCrabItem.prefab"; public static string mdlSubthorax = "RoR2/DLC1/mdlSubthorax.fbx"; public static string mdlSubthoraxPickup = "RoR2/DLC1/mdlSubthoraxPickup.fbx"; public static string PickupMegaCrabItem = "RoR2/DLC1/PickupMegaCrabItem.prefab"; public static string mdlVoidCoin = "RoR2/DLC1/VoidCoin/mdlVoidCoin.fbx"; public static string PickupVoidCoin = "RoR2/DLC1/VoidCoin/PickupVoidCoin.prefab"; public static string ancientloftPOIManager = "RoR2/DLC1/ancientloft/ancientloft_POIManager.prefab"; public static string AncientLoftDioramaDisplay = "RoR2/DLC1/ancientloft/AncientLoftDioramaDisplay.prefab"; public static string AncientLoftGrass = "RoR2/DLC1/ancientloft/AncientLoftGrass.spm"; public static string AncientLoftGrassopt = "RoR2/DLC1/ancientloft/AncientLoftGrass_opt.spm"; public static string mdlFloatingPillarStone = "RoR2/DLC1/ancientloft/mdlFloatingPillarStone.fbx"; public static string mdlPillarHalfIntact = "RoR2/DLC1/ancientloft/mdlPillar_HalfIntact.fbx"; public static string ancientloftdioramabase = "RoR2/DLC1/ancientloft/ancient_loft_diorama_base.fbx"; public static string mdlAncientLoftBonsaiCLS = "RoR2/DLC1/ancientloft/mdlAncientLoft_BonsaiCLS.fbx"; public static string mdlAncientLoftCircleArchway = "RoR2/DLC1/ancientloft/mdlAncientLoft_CircleArchway.fbx"; public static string mdlAncientLoftCircleArchwayopt = "RoR2/DLC1/ancientloft/mdlAncientLoft_CircleArchway_opt.fbx"; public static string mdlAncientLoftCircleArchwayCollision = "RoR2/DLC1/ancientloft/mdlAncientLoft_CircleArchwayCollision.fbx"; public static string mdlAncientLoftCloud = "RoR2/DLC1/ancientloft/mdlAncientLoft_Cloud.fbx"; public static string mdlAncientLoftCloudopt = "RoR2/DLC1/ancientloft/mdlAncientLoft_Cloud_opt.fbx"; public static string mdlAncientLoftFBridge = "RoR2/DLC1/ancientloft/mdlAncientLoft_FBridge.fbx"; public static string mdlAncientLoftFloatingPillar = "RoR2/DLC1/ancientloft/mdlAncientLoft_FloatingPillar.fbx"; public static string mdlAncientLoftFloorTile = "RoR2/DLC1/ancientloft/mdlAncientLoft_FloorTile.fbx"; public static string mdlAncientLoftFountainCLS = "RoR2/DLC1/ancientloft/mdlAncientLoft_FountainCLS.fbx"; public static string mdlAncientLoftPots = "RoR2/DLC1/ancientloft/mdlAncientLoft_Pots.fbx"; public static string mdlAncientLoftPotsopt = "RoR2/DLC1/ancientloft/mdlAncientLoft_Pots_opt.fbx"; public static string mdlAncientLoftRubble = "RoR2/DLC1/ancientloft/mdlAncientLoft_Rubble.fbx"; public static string mdlAncientLoftTerrain = "RoR2/DLC1/ancientloft/mdlAncientLoft_Terrain.fbx"; public static string mdlAncientLoftTerrainopt = "RoR2/DLC1/ancientloft/mdlAncientLoft_Terrain_opt.fbx"; public static string mdlAncientLoftWaterfall = "RoR2/DLC1/ancientloft/mdlAncientLoft_Waterfall.fbx"; public static string mdlDecorFence = "RoR2/DLC1/ancientloft/mdlDecorFence.fbx"; public static string mdlFountainLG = "RoR2/DLC1/ancientloft/mdlFountainLG.fbx"; public static string mdlFountainLGopt = "RoR2/DLC1/ancientloft/mdlFountainLG_opt.fbx"; public static string mdlFountainSM = "RoR2/DLC1/ancientloft/mdlFountainSM.fbx"; public static string mdlFountainSMopt = "RoR2/DLC1/ancientloft/mdlFountainSM_opt.fbx"; public static string mdlGatedPool = "RoR2/DLC1/ancientloft/mdlGatedPool.fbx"; public static string mdlLightStatue = "RoR2/DLC1/ancientloft/mdlLightStatue.fbx"; public static string mdlLightStatueopt = "RoR2/DLC1/ancientloft/mdlLightStatue_opt.fbx"; public static string mdlLilyPad = "RoR2/DLC1/ancientloft/mdlLilyPad.fbx"; public static string mdlLilyPadopt = "RoR2/DLC1/ancientloft/mdlLilyPad_opt.fbx"; public static string mdlSMSculpture = "RoR2/DLC1/ancientloft/mdlSMSculpture.fbx"; public static string mdlSMSculptureopt = "RoR2/DLC1/ancientloft/mdlSMSculpture_opt.fbx"; public static string mdlTempleShrine = "RoR2/DLC1/ancientloft/mdlTempleShrine.fbx"; public static string mdlTempleShrineopt = "RoR2/DLC1/ancientloft/mdlTempleShrine_opt.fbx"; public static string spmBonsai1V1opt6 = "RoR2/DLC1/ancientloft/spmBonsai1V1_opt.fbx"; public static string ALBBBoulderNatural = "RoR2/DLC1/ancientloft/AL_BBBoulderNatural.prefab"; public static string ALBBBoulderRubble = "RoR2/DLC1/ancientloft/AL_BBBoulderRubble.prefab"; public static string ALBbRuinStep = "RoR2/DLC1/ancientloft/AL_BbRuinStep.prefab"; public static string ALBridge = "RoR2/DLC1/ancientloft/AL_Bridge.prefab"; public static string ALBrokenPot = "RoR2/DLC1/ancientloft/AL_BrokenPot.prefab"; public static string ALBrokenPotBig = "RoR2/DLC1/ancientloft/AL_BrokenPotBig.prefab"; public static string ALCircleArchway = "RoR2/DLC1/ancientloft/AL_CircleArchway.prefab"; public static string ALCirclePot = "RoR2/DLC1/ancientloft/AL_CirclePot.prefab"; public static string ALCirclePotopt = "RoR2/DLC1/ancientloft/AL_CirclePot_opt.prefab"; public static string ALCloud = "RoR2/DLC1/ancientloft/AL_Cloud.prefab"; public static string ALDistantTree = "RoR2/DLC1/ancientloft/AL_DistantTree.prefab"; public static string ALFloorTiles = "RoR2/DLC1/ancientloft/AL_FloorTiles.prefab"; public static string ALFountainLG = "RoR2/DLC1/ancientloft/AL_FountainLG.prefab"; public static string ALFountainSM = "RoR2/DLC1/ancientloft/AL_FountainSM.prefab"; public static string ALGeyser = "RoR2/DLC1/ancientloft/AL_Geyser.prefab"; public static string ALGPRuinBlockQuarterVariant = "RoR2/DLC1/ancientloft/AL_GPRuinBlockQuarter Variant.prefab"; public static string ALLightStatue = "RoR2/DLC1/ancientloft/AL_LightStatue.prefab"; public static string ALLightStatueOn = "RoR2/DLC1/ancientloft/AL_LightStatue_On.prefab"; public static string ALLightStatueStone = "RoR2/DLC1/ancientloft/AL_LightStatue_Stone.prefab"; public static string ALLilyPad = "RoR2/DLC1/ancientloft/AL_LilyPad.prefab"; public static string ALLilyPad1 = "RoR2/DLC1/ancientloft/AL_LilyPad1.prefab"; public static string ALLilyPad2 = "RoR2/DLC1/ancientloft/AL_LilyPad2.prefab"; public static string ALLilyPad3 = "RoR2/DLC1/ancientloft/AL_LilyPad3.prefab"; public static string ALLotus1 = "RoR2/DLC1/ancientloft/AL_Lotus1.prefab"; public static string ALLotus1opt = "RoR2/DLC1/ancientloft/AL_Lotus1_opt.prefab"; public static string ALLotus2 = "RoR2/DLC1/ancientloft/AL_Lotus2.prefab"; public static string ALPebble = "RoR2/DLC1/ancientloft/AL_Pebble.prefab"; public static string ALPillarBroken = "RoR2/DLC1/ancientloft/AL_PillarBroken.prefab"; public static string ALPillarBrokenStill = "RoR2/DLC1/ancientloft/AL_PillarBroken_Still.prefab"; public static string ALPillarHalfIntact = "RoR2/DLC1/ancientloft/AL_PillarHalfIntact.prefab"; public static string ALPillarHalfIntactSimpler = "RoR2/DLC1/ancientloft/AL_PillarHalfIntactSimpler.prefab"; public static string ALPillarIntact = "RoR2/DLC1/ancientloft/AL_PillarIntact.prefab"; public static string ALPillarStone = "RoR2/DLC1/ancientloft/AL_PillarStone.prefab"; public static string ALPlanter2WithBonsaiTreeVariant = "RoR2/DLC1/ancientloft/AL_Planter2WithBonsaiTree Variant.prefab"; public static string ALPlanter2WithBonsaiTreeVariantopt = "RoR2/DLC1/ancientloft/AL_Planter2WithBonsaiTree Variant_opt.prefab"; public static string ALRubble = "RoR2/DLC1/ancientloft/AL_Rubble.prefab"; public static string ALRubbleDirtOne = "RoR2/DLC1/ancientloft/AL_Rubble_Dirt_One.prefab"; public static string ALRubbleDirtTwo = "RoR2/DLC1/ancientloft/AL_Rubble_Dirt_Two.prefab"; public static string ALRubbleOne = "RoR2/DLC1/ancientloft/AL_Rubble_One.prefab"; public static string ALRubbleTwo = "RoR2/DLC1/ancientloft/AL_Rubble_Two.prefab"; public static string ALSculptureSM = "RoR2/DLC1/ancientloft/AL_SculptureSM.prefab"; public static string ALSpnningRocks = "RoR2/DLC1/ancientloft/AL_SpnningRocks.prefab"; public static string ALSun = "RoR2/DLC1/ancientloft/AL_Sun.prefab"; public static string ALTempleMain001 = "RoR2/DLC1/ancientloft/AL_TempleMain.001.prefab"; public static string ALTempleMain002 = "RoR2/DLC1/ancientloft/AL_TempleMain.002.prefab"; public static string ALTempleMain003 = "RoR2/DLC1/ancientloft/AL_TempleMain.003.prefab"; public static string ALTempleMain = "RoR2/DLC1/ancientloft/AL_TempleMain.prefab"; public static string ALTempleShrine = "RoR2/DLC1/ancientloft/AL_TempleShrine.prefab"; public static string ALTerrain = "RoR2/DLC1/ancientloft/AL_Terrain.prefab"; public static string ALTerrainDistantPlatform = "RoR2/DLC1/ancientloft/AL_Terrain_DistantPlatform.prefab"; public static string ALTerrainDistantTemple = "RoR2/DLC1/ancientloft/AL_Terrain_DistantTemple.prefab"; public static string ALTerrainFarthestDistantPlatforms = "RoR2/DLC1/ancientloft/AL_Terrain_FarthestDistantPlatforms.prefab"; public static string ALTerrainPlatform = "RoR2/DLC1/ancientloft/AL_Terrain_Platform.prefab"; public static string ALWaterFenceTypeA = "RoR2/DLC1/ancientloft/AL_WaterFenceTypeA.prefab"; public static string ALWaterFenceTypeB = "RoR2/DLC1/ancientloft/AL_WaterFenceTypeB.prefab"; public static string AncientLoftDecorFence = "RoR2/DLC1/ancientloft/AncientLoft_DecorFence.prefab"; public static string AncientLoftFenceTri = "RoR2/DLC1/ancientloft/AncientLoft_FenceTri.prefab"; public static string GatedPool = "RoR2/DLC1/ancientloft/GatedPool.prefab"; public static string WeatherAncientLoft = "RoR2/DLC1/ancientloft/Weather, AncientLoft.prefab"; public static string WeatherAncientLoftopt = "RoR2/DLC1/ancientloft/Weather, AncientLoft_opt.prefab"; public static string fullhollowcube = "RoR2/DLC1/gauntlet2/full_hollow_cube.obj"; public static string hollowcube = "RoR2/DLC1/gauntlet2/hollow_cube.obj"; public static string nubbycube = "RoR2/DLC1/gauntlet2/nubby_cube.obj"; public static string RampLeftPillar1 = "RoR2/DLC1/gauntlet4/Ramp Left Pillar 1.prefab"; public static string RampRightPillar = "RoR2/DLC1/gauntlet4/Ramp Right Pillar.prefab"; public static string RampwithPillars1 = "RoR2/DLC1/gauntlet4/Ramp with Pillars 1.prefab"; public static string fullhollowcube29 = "RoR2/DLC1/gauntlets/full_hollow_cube.obj"; public static string hollowcube27 = "RoR2/DLC1/gauntlets/hollow_cube.obj"; public static string nubbycube11 = "RoR2/DLC1/gauntlets/nubby_cube.obj"; public static string gauntletexitorbfractured = "RoR2/DLC1/gauntlets/gauntlet exit orb fractured.fbx"; public static string gauntletexitorb = "RoR2/DLC1/gauntlets/gauntlet exit orb.fbx"; public static string GauntletEntranceOrb = "RoR2/DLC1/gauntlets/GauntletEntranceOrb.prefab"; public static string GauntletExitOrb = "RoR2/DLC1/gauntlets/GauntletExitOrb.prefab"; public static string GauntletExitOrbEffect = "RoR2/DLC1/gauntlets/GauntletExitOrbEffect.prefab"; public static string VoidRaidCrabGauntletTeleportEffect = "RoR2/DLC1/gauntlets/VoidRaidCrabGauntletTeleportEffect.prefab"; public static string HOLDERGauntlet1Layout = "RoR2/DLC1/gauntlets/HOLDER_ Gauntlet1 Layout.prefab"; public static string HOLDERGauntlet2Layout = "RoR2/DLC1/gauntlets/HOLDER_ Gauntlet2 Layout.prefab"; public static string HOLDERGauntlet3Layout = "RoR2/DLC1/gauntlets/HOLDER_ Gauntlet3 Layout.prefab"; public static string HOLDERGauntlet4Layout = "RoR2/DLC1/gauntlets/HOLDER_ Gauntlet4 Layout.prefab"; public static string HOLDERGauntlets = "RoR2/DLC1/gauntlets/HOLDER_ Gauntlets.prefab"; public static string InitialGauntlet = "RoR2/DLC1/gauntlets/InitialGauntlet.prefab"; public static string RampLeftPillar114 = "RoR2/DLC1/gauntlets/Ramp Left Pillar 1.prefab"; public static string RampRightPillar25 = "RoR2/DLC1/gauntlets/Ramp Right Pillar.prefab"; public static string RampwithPillars135 = "RoR2/DLC1/gauntlets/Ramp with Pillars 1.prefab"; public static string GauntletChainLinkGravityStones = "RoR2/DLC1/gauntlets/GauntletChainLinkGravityStones.prefab"; public static string GauntletCubesGravityStones = "RoR2/DLC1/gauntlets/GauntletCubesGravityStones.prefab"; public static string GauntletCylinderGravityStones = "RoR2/DLC1/gauntlets/GauntletCylinderGravityStones.prefab"; public static string GauntletGoalGravityRingStones = "RoR2/DLC1/gauntlets/GauntletGoalGravityRingStones.prefab"; public static string GauntletPebbleDark = "RoR2/DLC1/gauntlets/GauntletPebbleDark.prefab"; public static string GauntletPebbleLight = "RoR2/DLC1/gauntlets/GauntletPebbleLight.prefab"; public static string GauntletRock1 = "RoR2/DLC1/gauntlets/GauntletRock1.prefab"; public static string GauntletRock2Small = "RoR2/DLC1/gauntlets/GauntletRock2Small.prefab"; public static string GauntletRock3 = "RoR2/DLC1/gauntlets/GauntletRock3.prefab"; public static string GauntletStartGravityStones = "RoR2/DLC1/gauntlets/GauntletStartGravityStones.prefab"; public static string mdlGauntletDirtPiles = "RoR2/DLC1/gauntlets/mdlGauntletDirtPiles.fbx"; public static string mdlGauntletSpiralSeaweed = "RoR2/DLC1/gauntlets/mdlGauntletSpiralSeaweed.fbx"; public static string mdlGauntletWaterTube = "RoR2/DLC1/gauntlets/mdlGauntletWaterTube.fbx"; public static string mdlGauntlet1Objects = "RoR2/DLC1/gauntlets/mdlGauntlet1Objects.fbx"; public static string mdlGauntlet1Objectsopt = "RoR2/DLC1/gauntlets/mdlGauntlet1Objects_opt.fbx"; public static string mdlGauntlet2Objects = "RoR2/DLC1/gauntlets/mdlGauntlet2Objects.fbx"; public static string mdlGauntlet2Objectsopt = "RoR2/DLC1/gauntlets/mdlGauntlet2Objects_opt.fbx"; public static string mdlGauntlet3Objects = "RoR2/DLC1/gauntlets/mdlGauntlet3Objects.fbx"; public static string mdlGauntlet3Objectsopt = "RoR2/DLC1/gauntlets/mdlGauntlet3Objects_opt.fbx"; public static string mdlGauntlet4Objects = "RoR2/DLC1/gauntlets/mdlGauntlet4Objects.fbx"; public static string mdlGauntlet4Objectsopt = "RoR2/DLC1/gauntlets/mdlGauntlet4Objects_opt.fbx"; public static string WeatherVoidGauntlet = "RoR2/DLC1/gauntlets/Weather, VoidGauntlet.prefab"; public static string AncientLoftGrassInfiniteTower = "RoR2/DLC1/itancientloft/AncientLoftGrassInfiniteTower.spm"; public static string AncientLoftGrassInfiniteToweropt = "RoR2/DLC1/itancientloft/AncientLoftGrassInfiniteTower_opt.spm"; public static string spmGlGrassInfiniteTower = "RoR2/DLC1/itancientloft/spmGlGrassInfiniteTower.spm"; public static string spmGlGrassInfiniteToweropt = "RoR2/DLC1/itancientloft/spmGlGrassInfiniteTower_opt.spm"; public static string mdlInfiniteTowerAncientLoft = "RoR2/DLC1/itancientloft/mdlInfiniteTowerAncientLoft.fbx"; public static string mdlInfiniteTowerAncientLoftBrokenArch = "RoR2/DLC1/itancientloft/mdlInfiniteTowerAncientLoftBrokenArch.fbx"; public static string itALTerrain = "RoR2/DLC1/itancientloft/itAL_Terrain.prefab"; public static string itALBoulderMediumFlat = "RoR2/DLC1/itancientloft/itALBoulderMediumFlat.prefab"; public static string itALCircleArchway = "RoR2/DLC1/itancientloft/itALCircleArchway.prefab"; public static string itALCircleArchwayBroken = "RoR2/DLC1/itancientloft/itALCircleArchwayBroken.prefab"; public static string DCPebbleInfiniteTower = "RoR2/DLC1/itdampcave/DCPebbleInfiniteTower.prefab"; public static string mdlInfiniteTowerDampcave = "RoR2/DLC1/itdampcave/mdlInfiniteTowerDampcave.fbx"; public static string mdlInfiniteTowerDampcave22 = "RoR2/DLC1/itdampcave/mdlInfiniteTowerDampcave.prefab"; public static string mdlInfiniteTowerDampcaveopt = "RoR2/DLC1/itdampcave/mdlInfiniteTowerDampcave_opt.fbx"; public static string mdlInfiniteTowerDampCaveOuterSpaceChains = "RoR2/DLC1/itdampcave/mdlInfiniteTowerDampCaveOuterSpaceChains.fbx"; public static string DCHeroPillars1 = "RoR2/DLC1/itdampcave/DCHeroPillars1.prefab"; public static string itDCRuinGate = "RoR2/DLC1/itdampcave/itDCRuinGate.prefab"; public static string itDCRuinPillar = "RoR2/DLC1/itdampcave/itDCRuinPillar.prefab"; public static string spmDCGrassInfiniteTower = "RoR2/DLC1/itdampcave/spmDCGrassInfiniteTower.prefab"; public static string FWSimpleGrassInfiniteTower = "RoR2/DLC1/itfrozenwall/FW_SimpleGrassInfiniteTower.prefab"; public static string InfiniteTowerFrozenwall = "RoR2/DLC1/itfrozenwall/Infinite Tower Frozenwall.fbx"; public static string InfiniteTowerFrozenwallopt = "RoR2/DLC1/itfrozenwall/Infinite Tower Frozenwall_opt.fbx"; public static string FWSlicedPillar = "RoR2/DLC1/itfrozenwall/FW_SlicedPillar.prefab"; public static string FWSlicedShippingContainer001 = "RoR2/DLC1/itfrozenwall/FW_SlicedShippingContainer.001.prefab"; public static string FWSlicedShippingContainer = "RoR2/DLC1/itfrozenwall/FW_SlicedShippingContainer.prefab"; public static string FWSlicedTerrain = "RoR2/DLC1/itfrozenwall/FW_SlicedTerrain.prefab"; public static string FWSlicedTree = "RoR2/DLC1/itfrozenwall/FW_SlicedTree.prefab"; public static string spmGPGrassInfiniteTower = "RoR2/DLC1/itgolemplains/spmGPGrassInfiniteTower.prefab"; public static string InfiniteTowerGolemplains = "RoR2/DLC1/itgolemplains/Infinite Tower Golemplains.fbx"; public static string InfiniteTowerGolemplainsopt = "RoR2/DLC1/itgolemplains/Infinite Tower Golemplains_opt.fbx"; public static string HOLDERVoidArenaCustoms = "RoR2/DLC1/itgolemplains/HOLDER_ Void Arena Customs.prefab"; public static string itGPBoulder = "RoR2/DLC1/itgolemplains/itGPBoulder.prefab"; public static string itGPBoulderMediumRound = "RoR2/DLC1/itgolemplains/itGPBoulderMediumRound.prefab"; public static string itGPBoulderMediumRound2 = "RoR2/DLC1/itgolemplains/itGPBoulderMediumRound2.prefab"; public static string itGPBoulderOrbit = "RoR2/DLC1/itgolemplains/itGPBoulderOrbit.prefab"; public static string itGPGiantRockSlab1001 = "RoR2/DLC1/itgolemplains/itGPGiantRockSlab_1.001.prefab"; public static string itGPGiantRockSlab1002 = "RoR2/DLC1/itgolemplains/itGPGiantRockSlab_1.002.prefab"; public static string itGPRockSlab = "RoR2/DLC1/itgolemplains/itGPRockSlab.prefab"; public static string itGPRockSlabOrbit = "RoR2/DLC1/itgolemplains/itGPRockSlabOrbit.prefab"; public static string itGPTerrainColumn = "RoR2/DLC1/itgolemplains/itGPTerrainColumn.prefab"; public static string glSimpleGrassInfiniteTower = "RoR2/DLC1/itgoolake/glSimpleGrassInfiniteTower.prefab"; public static string InfiniteTowerGoolakeOrbitingGoo = "RoR2/DLC1/itgoolake/InfiniteTowerGoolakeOrbitingGoo.fbx"; public static string mdlInfiniteTowerGoolake = "RoR2/DLC1/itgoolake/mdlInfinite Tower Goolake.fbx"; public static string mdlInfiniteTowerGoolakeopt = "RoR2/DLC1/itgoolake/mdlInfinite Tower Goolake_opt.fbx"; public static string InfiniteTowerGoolake = "RoR2/DLC1/itgoolake/Infinite Tower Goolake.prefab"; public static string itMoonBoulderMediumRound = "RoR2/DLC1/itmoon/itMoonBoulderMediumRound.prefab"; public static string itMoonGiantRockSlab = "RoR2/DLC1/itmoon/itMoonGiantRockSlab.prefab"; public static string mdlBrotherConstellation = "RoR2/DLC1/itmoon/mdlBrotherConstellation.fbx"; public static string mdlBrotherConstellation22 = "RoR2/DLC1/itmoon/mdlBrotherConstellation.prefab"; public static string mdlConstellationPiece = "RoR2/DLC1/itmoon/mdlConstellationPiece.fbx"; public static string mdlProvidenceConstellation = "RoR2/DLC1/itmoon/mdlProvidenceConstellation.fbx"; public static string mdlProvidenceConstellation12 = "RoR2/DLC1/itmoon/mdlProvidenceConstellation.prefab"; public static string InfiniteTowerSkymeadow = "RoR2/DLC1/itskymeadow/InfiniteTowerSkymeadow.prefab"; public static string mdlInfiniteTowerSkymeadow = "RoR2/DLC1/itskymeadow/mdlInfiniteTowerSkymeadow.fbx"; public static string mdlInfiniteTowerSkymeadowopt = "RoR2/DLC1/itskymeadow/mdlInfiniteTowerSkymeadow_opt.fbx"; public static string SMInfiniteTowerMaulingRockLarge = "RoR2/DLC1/itskymeadow/SMInfiniteTowerMaulingRockLarge.prefab"; public static string SMInfiniteTowerMaulingRockMedium = "RoR2/DLC1/itskymeadow/SMInfiniteTowerMaulingRockMedium.prefab"; public static string SMInfiniteTowerMaulingRockSmall = "RoR2/DLC1/itskymeadow/SMInfiniteTowerMaulingRockSmall.prefab"; public static string spmSGMushroom2Cluster19 = "RoR2/DLC1/itskymeadow/spmSGMushroom2Cluster.spm"; public static string spmSMFruitPlantDuoInfiniteTower = "RoR2/DLC1/itskymeadow/spmSMFruitPlantDuoInfiniteTower.spm"; public static string spmSMFruitPlantInfiniteTower = "RoR2/DLC1/itskymeadow/spmSMFruitPlantInfiniteTower.spm"; public static string spmSMGrassInfiniteTower = "RoR2/DLC1/itskymeadow/spmSMGrassInfiniteTower.spm"; public static string spmSMGrassInfiniteToweropt = "RoR2/DLC1/itskymeadow/spmSMGrassInfiniteTower_opt.spm"; public static string spmSMGrassSmallClusterInfiniteTower = "RoR2/DLC1/itskymeadow/spmSMGrassSmallClusterInfiniteTower.spm"; public static string spmSMGrassSmallClusterInfiniteToweropt = "RoR2/DLC1/itskymeadow/spmSMGrassSmallClusterInfiniteTower_opt.spm"; public static string itSMHangingVinesClusterPrefab = "RoR2/DLC1/itskymeadow/itSMHangingVinesCluster_Prefab.prefab"; public static string itSMHangingVinesClusterPrefabopt = "RoR2/DLC1/itskymeadow/itSMHangingVinesCluster_Prefab_opt.prefab"; public static string spmSMHangingVinesInfiniteTowerCluster = "RoR2/DLC1/itskymeadow/spmSMHangingVinesInfiniteTowerCluster.spm"; public static string spmSMHangingVinesInfiniteTowerClusteropt = "RoR2/DLC1/itskymeadow/spmSMHangingVinesInfiniteTowerCluster_opt.spm"; public static string mdlRailGunnerPromoRig = "RoR2/DLC1/mdlRailGunnerPromoRig.fbx"; public static string mdlSFGodrays = "RoR2/DLC1/snowyforest/mdlSFGodrays.fbx"; public static string mdlSnowyForestAurora = "RoR2/DLC1/snowyforest/mdlSnowyForestAurora.fbx"; public static string mdlSnowyForestBarriers = "RoR2/DLC1/snowyforest/mdlSnowyForestBarriers.fbx"; public static string mdlSnowyForestCaveProps = "RoR2/DLC1/snowyforest/mdlSnowyForestCaveProps.fbx"; public static string mdlSnowyForestCavePropsopt = "RoR2/DLC1/snowyforest/mdlSnowyForestCaveProps_opt.fbx"; public static string mdlSnowyForestCollisionMeshes = "RoR2/DLC1/snowyforest/mdlSnowyForestCollisionMeshes.fbx"; public static string mdlSnowyForestCollisionMeshesopt = "RoR2/DLC1/snowyforest/mdlSnowyForestCollisionMeshes_opt.fbx"; public static string mdlSnowyForestCrate = "RoR2/DLC1/snowyforest/mdlSnowyForestCrate.fbx"; public static string mdlSnowyForestDiorama = "RoR2/DLC1/snowyforest/mdlSnowyForestDiorama.fbx"; public static string mdlSnowyForestGiantTreetops = "RoR2/DLC1/snowyforest/mdlSnowyForestGiantTreetops.fbx"; public static string mdlSnowyForestHumanProps = "RoR2/DLC1/snowyforest/mdlSnowyForestHumanProps.fbx"; public static string mdlSnowyForestHumanPropsopt = "RoR2/DLC1/snowyforest/mdlSnowyForestHumanProps_opt.fbx"; public static string mdlSnowyForestNatureProps = "RoR2/DLC1/snowyforest/mdlSnowyForestNatureProps.fbx"; public static string mdlSnowyForestNaturePropsopt = "RoR2/DLC1/snowyforest/mdlSnowyForestNatureProps_opt.fbx"; public static string mdlSnowyForestSurroundingTrees = "RoR2/DLC1/snowyforest/mdlSnowyForestSurroundingTrees.fbx"; public static string mdlSnowyForestSurroundingTreesopt = "RoR2/DLC1/snowyforest/mdlSnowyForestSurroundingTrees_opt.fbx"; public static string mdlSnowyForestTerrain = "RoR2/DLC1/snowyforest/mdlSnowyForestTerrain.fbx"; public static string mdlSnowyForestTerrainopt = "RoR2/DLC1/snowyforest/mdlSnowyForestTerrain_opt.fbx"; public static string mdlSnowyForestTreeStump = "RoR2/DLC1/snowyforest/mdlSnowyForestTreeStump.fbx"; public static string SFRuinGateLOD1 = "RoR2/DLC1/snowyforest/SFRuinGate_LOD1.fbx"; public static string SFRuinGateLOD1opt = "RoR2/DLC1/snowyforest/SFRuinGate_LOD1_opt.fbx"; public static string meshSnowyForestRockMD = "RoR2/DLC1/snowyforest/meshSnowyForestRockMD.prefab"; public static string SFGodrayParticles = "RoR2/DLC1/snowyforest/SF Godray Particles.prefab"; public static string SFAqueduct = "RoR2/DLC1/snowyforest/SF_Aqueduct.prefab"; public static string SFAqueductTopLG = "RoR2/DLC1/snowyforest/SF_AqueductTopLG.prefab"; public static string SFAqueductTopSM = "RoR2/DLC1/snowyforest/SF_AqueductTopSM.prefab"; public static string SFBbRuinGate = "RoR2/DLC1/snowyforest/SF_BbRuinGate.prefab"; public static string SFBbRuinGateDoor1 = "RoR2/DLC1/snowyforest/SF_BbRuinGateDoor1.prefab"; public static string SFBbRuinGateDoor2 = "RoR2/DLC1/snowyforest/SF_BbRuinGateDoor2.prefab"; public static string SFBrokenLantern = "RoR2/DLC1/snowyforest/SF_BrokenLantern.prefab"; public static string SFCeilingSpikes = "RoR2/DLC1/snowyforest/SF_CeilingSpikes.prefab"; public static string SFCrate = "RoR2/DLC1/snowyforest/SF_Crate.prefab"; public static string SFEgg = "RoR2/DLC1/snowyforest/SF_Egg.prefab"; public static string SFFirepit = "RoR2/DLC1/snowyforest/SF_Firepit.prefab"; public static string SFFirepitRing = "RoR2/DLC1/snowyforest/SF_FirepitRing.prefab"; public static string SFGiantTrees = "RoR2/DLC1/snowyforest/SF_GiantTrees.prefab"; public static string SFGiantTreesTops = "RoR2/DLC1/snowyforest/SF_GiantTreesTops.prefab"; public static string SFHangingLantern = "RoR2/DLC1/snowyforest/SF_HangingLantern.prefab"; public static string SFLanternRope = "RoR2/DLC1/snowyforest/SF_LanternRope.prefab"; public static string SFLeafPlane = "RoR2/DLC1/snowyforest/SF_LeafPlane.prefab"; public static string SFLowerBarrier = "RoR2/DLC1/snowyforest/SF_LowerBarrier.prefab"; public static string SFPebble = "RoR2/DLC1/snowyforest/SF_Pebble.prefab"; public static string SFPot = "RoR2/DLC1/snowyforest/SF_Pot.prefab"; public static string SFPotPaper = "RoR2/DLC1/snowyforest/SF_PotPaper.prefab"; public static string SFPotRope = "RoR2/DLC1/snowyforest/SF_PotRope.prefab"; public static string SFPots = "RoR2/DLC1/snowyforest/SF_Pots.prefab"; public static string SFPotSap = "RoR2/DLC1/snowyforest/SF_PotSap.prefab"; public static string SFRockFormationMedium3 = "RoR2/DLC1/snowyforest/SF_RockFormationMedium3.prefab"; public static string SFRockFormationSmall1 = "RoR2/DLC1/snowyforest/SF_RockFormationSmall1.prefab"; public static string SFRockFormationSmall1opt = "RoR2/DLC1/snowyforest/SF_RockFormationSmall1_opt.prefab"; public static string SFRockLG = "RoR2/DLC1/snowyforest/SF_RockLG.prefab"; public static string SFRockMD = "RoR2/DLC1/snowyforest/SF_RockMD.prefab"; public static string SFRuinGateDoorIce = "RoR2/DLC1/snowyforest/SF_RuinGateDoorIce.prefab"; public static string SFSap = "RoR2/DLC1/snowyforest/SF_Sap.prefab"; public static string SFSnowPile = "RoR2/DLC1/snowyforest/SF_SnowPile.prefab"; public static string SFSurroundingTrees = "RoR2/DLC1/snowyforest/SF_SurroundingTrees.prefab"; public static string SFTerrainCave = "RoR2/DLC1/snowyforest/SF_TerrainCave.prefab"; public static string SFTerrainDistantGround = "RoR2/DLC1/snowyforest/SF_TerrainDistantGround.prefab"; public static string SFTerrainGround = "RoR2/DLC1/snowyforest/SF_TerrainGround.prefab"; public static string SFTerrainTreeStump = "RoR2/DLC1/snowyforest/SF_TerrainTreeStump.prefab"; public static string SFTerrainWall = "RoR2/DLC1/snowyforest/SF_TerrainWall.prefab"; public static string SFTerrainWater = "RoR2/DLC1/snowyforest/SF_TerrainWater.prefab"; public static string SFTreeLog1 = "RoR2/DLC1/snowyforest/SF_TreeLog1.prefab"; public static string SFTreeLog2 = "RoR2/DLC1/snowyforest/SF_TreeLog2.prefab"; public static string SFTreeTrunk1 = "RoR2/DLC1/snowyforest/SF_TreeTrunk1.prefab"; public static string SFTreeTrunk2 = "RoR2/DLC1/snowyforest/SF_TreeTrunk2.prefab"; public static string SFUpperBarrier = "RoR2/DLC1/snowyforest/SF_UpperBarrier.prefab"; public static string SFDistantTrees = "RoR2/DLC1/snowyforest/SFDistantTrees.prefab"; public static string SFGeyser = "RoR2/DLC1/snowyforest/SFGeyser.prefab"; public static string SFNatureProps = "RoR2/DLC1/snowyforest/SFNatureProps.prefab"; public static string spmBbDryBush18 = "RoR2/DLC1/snowyforest/spmBbDryBush.prefab"; public static string spmBbDryBushopt12 = "RoR2/DLC1/snowyforest/spmBbDryBush_opt.prefab"; public static string spmGPGrass10 = "RoR2/DLC1/snowyforest/spmGPGrass.prefab"; public static string spmGPGrassopt25 = "RoR2/DLC1/snowyforest/spmGPGrass_opt.prefab"; public static string snowyforestPOIManager = "RoR2/DLC1/snowyforest/snowyforest_POIManager.prefab"; public static string SnowyForestDioramaDisplay = "RoR2/DLC1/snowyforest/SnowyForestDioramaDisplay.prefab"; public static string mdlSPDiorama = "RoR2/DLC1/sulfurpools/mdlSPDiorama.fbx"; public static string mdlSPMountainsopt = "RoR2/DLC1/sulfurpools/mdlSPMountains_opt.fbx"; public static string mdlSPProps = "RoR2/DLC1/sulfurpools/mdlSPProps.fbx"; public static string mdlSPPropsopt = "RoR2/DLC1/sulfurpools/mdlSPProps_opt.fbx"; public static string mdlSPSphere = "RoR2/DLC1/sulfurpools/mdlSPSphere.fbx"; public static string mdlSPSulfurPod = "RoR2/DLC1/sulfurpools/mdlSPSulfurPod.fbx"; public static string mdlSPSulfurPodopt = "RoR2/DLC1/sulfurpools/mdlSPSulfurPod_opt.fbx"; public static string mdlSPTerrain = "RoR2/DLC1/sulfurpools/mdlSPTerrain.fbx"; public static string mdlSPTerrainopt = "RoR2/DLC1/sulfurpools/mdlSPTerrain_opt.fbx"; public static string mdlSPTerrainChunksopt = "RoR2/DLC1/sulfurpools/mdlSPTerrainChunks_opt.FBX"; public static string mdlSPTerrainWaterPPCollision = "RoR2/DLC1/sulfurpools/mdlSPTerrainWaterPPCollision.fbx"; public static string CameraRelative = "RoR2/DLC1/sulfurpools/CameraRelative.prefab"; public static string CameraRelativeopt = "RoR2/DLC1/sulfurpools/CameraRelative_opt.prefab"; public static string mdlSPSphere1 = "RoR2/DLC1/sulfurpools/mdlSPSphere.prefab"; public static string mdlSPTerrain31 = "RoR2/DLC1/sulfurpools/mdlSPTerrain.prefab"; public static string mdlSPTerrainopt19 = "RoR2/DLC1/sulfurpools/mdlSPTerrain_opt.prefab"; public static string SPCoralLG = "RoR2/DLC1/sulfurpools/SPCoralLG.prefab"; public static string SPCoralLGopt = "RoR2/DLC1/sulfurpools/SPCoralLG_opt.prefab"; public static string SPCoralMDLit = "RoR2/DLC1/sulfurpools/SPCoralMDLit.prefab"; public static string SPCoralMDLitopt = "RoR2/DLC1/sulfurpools/SPCoralMDLit_opt.prefab"; public static string SPCoralSM = "RoR2/DLC1/sulfurpools/SPCoralSM.prefab"; public static string SPCoralSMopt = "RoR2/DLC1/sulfurpools/SPCoralSM_opt.prefab"; public static string SPCrystal = "RoR2/DLC1/sulfurpools/SPCrystal.prefab"; public static string SPHeatVent = "RoR2/DLC1/sulfurpools/SPHeatVent.prefab"; public static string SPHeatVentNoSmoke = "RoR2/DLC1/sulfurpools/SPHeatVent_NoSmoke.prefab"; public static string SPHeatVentopt = "RoR2/DLC1/sulfurpools/SPHeatVent_opt.prefab"; public static string SPMoss = "RoR2/DLC1/sulfurpools/SPMoss.prefab"; public static string SPMossopt = "RoR2/DLC1/sulfurpools/SPMoss_opt.prefab"; public static string SPMossUnlit = "RoR2/DLC1/sulfurpools/SPMossUnlit.prefab"; public static string spmSPGrass = "RoR2/DLC1/sulfurpools/spmSPGrass.prefab"; public static string spmSPGrassopt = "RoR2/DLC1/sulfurpools/spmSPGrass_opt.prefab"; public static string spmSPGrassEmi = "RoR2/DLC1/sulfurpools/spmSPGrassEmi.prefab"; public static string spmSPGrassEmiopt = "RoR2/DLC1/sulfurpools/spmSPGrassEmi_opt.prefab"; public static string spmSPHangingVinesCluster = "RoR2/DLC1/sulfurpools/spmSPHangingVinesCluster.prefab"; public static string spmSPHangingVinesClusteropt = "RoR2/DLC1/sulfurpools/spmSPHangingVinesCluster_opt.prefab"; public static string spmSPTallGrass = "RoR2/DLC1/sulfurpools/spmSPTallGrass.prefab"; public static string spmSPTallGrassopt = "RoR2/DLC1/sulfurpools/spmSPTallGrass_opt.prefab"; public static string SPPebble = "RoR2/DLC1/sulfurpools/SPPebble.prefab"; public static string SPPebbleopt = "RoR2/DLC1/sulfurpools/SPPebble_opt.prefab"; public static string SPPoolSteam = "RoR2/DLC1/sulfurpools/SPPoolSteam.prefab"; public static string SPPoolSteamopt = "RoR2/DLC1/sulfurpools/SPPoolSteam_opt.prefab"; public static string SPStinkyFlies = "RoR2/DLC1/sulfurpools/SPStinkyFlies.prefab"; public static string SPSulfurPodBase = "RoR2/DLC1/sulfurpools/SPSulfurPodBase.prefab"; public static string SPVolcanoSmoke = "RoR2/DLC1/sulfurpools/SPVolcanoSmoke.prefab"; public static string sulfurpoolsPOIManager = "RoR2/DLC1/sulfurpools/sulfurpools_POIManager.prefab"; public static string SulfurpoolsDioramaDisplay = "RoR2/DLC1/sulfurpools/SulfurpoolsDioramaDisplay.prefab"; public static string spacecabinSimulacrum = "RoR2/DLC1/title/spacecabinSimulacrum.fbx"; public static string CapturedMithrixPlant14 = "RoR2/DLC1/voidoutro/Captured Mithrix Plant.prefab"; public static string mdlCrispyEdgeRing = "RoR2/DLC1/voidoutro/mdlCrispyEdgeRing.fbx"; public static string NullifierDummy = "RoR2/DLC1/voidoutro/NullifierDummy.prefab"; public static string NullifierDummyDeactivated = "RoR2/DLC1/voidoutro/NullifierDummyDeactivated.prefab"; public static string VerminDummy = "RoR2/DLC1/voidoutro/VerminDummy.prefab"; public static string VoidMegaCrabDummy = "RoR2/DLC1/voidoutro/VoidMegaCrabDummy.prefab"; public static string mdlVoidRaidCrabLowLOD = "RoR2/DLC1/voidoutro/mdlVoidRaidCrabLowLOD.fbx"; public static string RaidCrabLowLOD10 = "RoR2/DLC1/voidoutro/RaidCrabLowLOD.prefab"; public static string mdlShatteredMoonOutroVoid = "RoR2/DLC1/voidoutro/mdlShatteredMoonOutroVoid.fbx"; public static string ShatteredMoonOutroVoid22 = "RoR2/DLC1/voidoutro/Shattered Moon, Outro Void.prefab"; public static string mdlVoidOutroCrabEgg = "RoR2/DLC1/voidoutro/mdlVoidOutroCrabEgg.fbx"; public static string mdlVoidOutroCrabEgg6 = "RoR2/DLC1/voidoutro/mdlVoidOutroCrabEgg.prefab"; public static string mdlVoidOutroCrabEggEmpty = "RoR2/DLC1/voidoutro/mdlVoidOutroCrabEggEmpty.fbx"; public static string mdlVoidOutroCrabEggShattered = "RoR2/DLC1/voidoutro/mdlVoidOutroCrabEggShattered.prefab"; public static string mdlVoidOutroGiantTerrain = "RoR2/DLC1/voidoutro/mdlVoidOutroGiantTerrain.fbx"; public static string mdlRaidALBonusTerrain = "RoR2/DLC1/voidraid/mdlRaidALBonusTerrain.fbx"; public static string mdlRaidALBonusTerrainopt = "RoR2/DLC1/voidraid/mdlRaidALBonusTerrain_opt.fbx"; public static string mdlRaidColossusHeadDestroyed = "RoR2/DLC1/voidraid/mdlRaidColossusHeadDestroyed.fbx"; public static string mdlRaidDCRoof = "RoR2/DLC1/voidraid/mdlRaidDCRoof.fbx"; public static string mdlVoidRaidWaterCircle = "RoR2/DLC1/voidraid/mdlVoidRaidWaterCircle.fbx"; public static string mdlRaidSGWreckedShips = "RoR2/DLC1/voidraid/mdlRaidSGWreckedShips.fbx"; public static string mdlRaidSGWreckedShipsopt = "RoR2/DLC1/voidraid/mdlRaidSGWreckedShips_opt.fbx"; public static string mdlRaidSGWreckedShips2 = "RoR2/DLC1/voidraid/mdlRaidSGWreckedShips2.fbx"; public static string mdlVoidRaidVoidObjects = "RoR2/DLC1/voidraid/mdlVoidRaidVoidObjects.fbx"; public static string mdlVoidRaidVoidObjectsopt = "RoR2/DLC1/voidraid/mdlVoidRaidVoidObjects_opt.fbx"; public static string mdlRaidSwirlyCenterGlow = "RoR2/DLC1/voidraid/mdlRaidSwirlyCenterGlow.fbx"; public static string mdlRaidSwirlySmoke = "RoR2/DLC1/voidraid/mdlRaidSwirlySmoke.fbx"; public static string mdlRaidTerrainHG = "RoR2/DLC1/voidraid/mdlRaidTerrainHG.fbx"; public static string mdlRaidTerrainHGopt = "RoR2/DLC1/voidraid/mdlRaidTerrainHG_opt.fbx"; public static string mdl2DPlanetEgg = "RoR2/DLC1/voidraid/mdl2DPlanetEgg.fbx"; public static string mdl2DPlanetRing = "RoR2/DLC1/voidraid/mdl2DPlanetRing.fbx"; public static string mdl2DPlanetStar = "RoR2/DLC1/voidraid/mdl2DPlanetStar.fbx"; public static string mdlCircle = "RoR2/DLC1/voidraid/mdlCircle.fbx"; public static string mdlVoidRaidPlanet = "RoR2/DLC1/voidraid/mdlVoidRaidPlanet.fbx"; public static string mdlVoidRaidPlanetopt = "RoR2/DLC1/voidraid/mdlVoidRaidPlanet_opt.fbx"; public static string mdlVoidRaidPlanetRing = "RoR2/DLC1/voidraid/mdlVoidRaidPlanetRing.fbx"; public static string mdlVoidRaidPlanetRingopt = "RoR2/DLC1/voidraid/mdlVoidRaidPlanetRing_opt.fbx"; public static string mdlVoidRaidPlanetVertexShadow = "RoR2/DLC1/voidraid/mdlVoidRaidPlanetVertexShadow.fbx"; public static string mdlVoidRaidPlanetVertexShadowopt = "RoR2/DLC1/voidraid/mdlVoidRaidPlanetVertexShadow_opt.fbx"; public static string VoidRaidPlanetAcid = "RoR2/DLC1/voidraid/VoidRaidPlanetAcid.prefab"; public static string VoidRaidPlanetIcey = "RoR2/DLC1/voidraid/VoidRaidPlanetIcey.prefab"; public static string VoidRaidPlanetBlueMarble = "RoR2/DLC1/voidraid/VoidRaidPlanetBlueMarble.prefab"; public static string VoidRaidPlanetEvilCrater = "RoR2/DLC1/voidraid/VoidRaidPlanetEvilCrater.prefab"; public static string VoidRaidPlanetGreenMarble = "RoR2/DLC1/voidraid/VoidRaidPlanetGreenMarble.prefab"; public static string VoidRaidPlanetMars = "RoR2/DLC1/voidraid/VoidRaidPlanetMars.prefab"; public static string VoidRaidPlanetPinkVomit = "RoR2/DLC1/voidraid/VoidRaidPlanetPinkVomit.prefab"; public static string VoidRaidPlanetPurpleCrater = "RoR2/DLC1/voidraid/VoidRaidPlanetPurpleCrater.prefab"; public static string VoidRaidPlanetPurpleWave = "RoR2/DLC1/voidraid/VoidRaidPlanetPurpleWave.prefab"; public static string VoidRaidPlanetSmallBlue = "RoR2/DLC1/voidraid/VoidRaidPlanetSmallBlue.prefab"; public static string VoidRaidPlanetVomitwave = "RoR2/DLC1/voidraid/VoidRaidPlanetVomitwave.prefab"; public static string VoidRaidPlanet = "RoR2/DLC1/voidraid/VoidRaidPlanet.prefab"; public static string mdlRaidTerrain = "RoR2/DLC1/voidraid/mdlRaidTerrain.fbx"; public static string mdlRaidALFLPlatform = "RoR2/DLC1/voidraid/mdlRaidALFLPlatform.fbx"; public static string mdlRaidALPlatform = "RoR2/DLC1/voidraid/mdlRaidALPlatform.fbx"; public static string mdlRaidALPlatformLong = "RoR2/DLC1/voidraid/mdlRaidALPlatformLong.fbx"; public static string mdlRaidALTemple = "RoR2/DLC1/voidraid/mdlRaidALTemple.fbx"; public static string mdlRaidDCBridge = "RoR2/DLC1/voidraid/mdlRaidDCBridge.fbx"; public static string mdlVoidRaidDiorama = "RoR2/DLC1/voidraid/mdlVoidRaid_Diorama.fbx"; public static string mdlRaidGPSlope = "RoR2/DLC1/voidraid/mdlRaidGPSlope.fbx"; public static string mdlRaidVoidIsland = "RoR2/DLC1/voidraid/mdlRaidVoidIsland.fbx"; public static string mdlRaidVoidPlatform = "RoR2/DLC1/voidraid/mdlRaidVoidPlatform.fbx"; public static string mdlVoidStageRaidIsland = "RoR2/DLC1/voidraid/mdlVoidStageRaidIsland.fbx"; public static string RaidALBonusTerrain = "RoR2/DLC1/voidraid/RaidALBonusTerrain.prefab"; public static string RaidALBoulder = "RoR2/DLC1/voidraid/RaidALBoulder.prefab"; public static string RaidALtGrass = "RoR2/DLC1/voidraid/RaidALtGrass.prefab"; public static string spmGlGrass125 = "RoR2/DLC1/voidraid/spmGlGrass1.prefab"; public static string RaidBBColossusHeadDestroyed = "RoR2/DLC1/voidraid/RaidBB_ColossusHeadDestroyed.prefab"; public static string RaidBBColumnBridge = "RoR2/DLC1/voidraid/RaidBB_ColumnBridge.prefab"; public static string RaidBBInnerRingTerrain003 = "RoR2/DLC1/voidraid/RaidBB_InnerRing_Terrain_003.prefab"; public static string RaidBBRuinMarker = "RoR2/DLC1/voidraid/RaidBB_RuinMarker.prefab"; public static string RaidBBRuinPillar = "RoR2/DLC1/voidraid/RaidBB_RuinPillar.prefab"; public static string RaidBBTerrainArch = "RoR2/DLC1/voidraid/RaidBB_TerrainArch.prefab"; public static string RaidBBTerrainBridge = "RoR2/DLC1/voidraid/RaidBB_TerrainBridge.prefab"; public static string RaidBBBoulder = "RoR2/DLC1/voidraid/RaidBBBoulder.prefab"; public static string RaidBBPebble = "RoR2/DLC1/voidraid/RaidBBPebble.prefab"; public static string RaidBBRuinArch = "RoR2/DLC1/voidraid/RaidBBRuinArch.prefab"; public static string RaidBBRuinStep = "RoR2/DLC1/voidraid/RaidBBRuinStep.prefab"; public static string RaidBBSimpleGrass = "RoR2/DLC1/voidraid/RaidBBSimpleGrass.prefab"; public static string RaidDCBridge = "RoR2/DLC1/voidraid/RaidDC_Bridge.prefab"; public static string RaidDCHeroPillar = "RoR2/DLC1/voidraid/RaidDC_HeroPillar.prefab"; public static string RaidDCHeroPillarCluster = "RoR2/DLC1/voidraid/RaidDC_HeroPillarCluster.prefab"; public static string RaidDCPebble = "RoR2/DLC1/voidraid/RaidDC_Pebble.prefab"; public static string RaidDCPebbleCrystal = "RoR2/DLC1/voidraid/RaidDC_PebbleCrystal.prefab"; public static string RaidDCRoof = "RoR2/DLC1/voidraid/RaidDC_Roof.prefab"; public static string RaidDCRuinPillar = "RoR2/DLC1/voidraid/RaidDC_RuinPillar.prefab"; public static string spmGPGrassRaid = "RoR2/DLC1/voidraid/spmGPGrassRaid.spm"; public static string spmGPGrassRaidopt = "RoR2/DLC1/voidraid/spmGPGrassRaid_opt.spm"; public static string RaidGPGiantRockSlab = "RoR2/DLC1/voidraid/RaidGP_GiantRockSlab.prefab"; public static string RaidGPRock = "RoR2/DLC1/voidraid/RaidGP_Rock.prefab"; public static string RaidGPSlope = "RoR2/DLC1/voidraid/RaidGP_Slope.prefab"; public static string RaidSGRockSmall = "RoR2/DLC1/voidraid/RaidSG_RockSmall.prefab"; public static string RaidSGSpike1 = "RoR2/DLC1/voidraid/RaidSG_Spike1.prefab"; public static string RaidSGSpike2 = "RoR2/DLC1/voidraid/RaidSG_Spike2.prefab"; public static string RaidSGTorusShipCore = "RoR2/DLC1/voidraid/RaidSG_TorusShip Core.prefab"; public static string RaidSGRectShipMiddle = "RoR2/DLC1/voidraid/RaidSGRectShipMiddle.prefab"; public static string RaidSGRectShipTailCrushed = "RoR2/DLC1/voidraid/RaidSGRectShipTailCrushed.prefab"; public static string RaidTerrainHG = "RoR2/DLC1/voidraid/RaidTerrainHG.prefab"; public static string RaidVoidCoralPlatformTypeA001 = "RoR2/DLC1/voidraid/RaidVoid_CoralPlatformTypeA.001.prefab"; public static string RaidVoidCoralPlatformTypeA002 = "RoR2/DLC1/voidraid/RaidVoid_CoralPlatformTypeA.002.prefab"; public static string RaidVoidCoralPlatformTypeA003 = "RoR2/DLC1/voidraid/RaidVoid_CoralPlatformTypeA.003.prefab"; public static string RaidVoidCoralPlatformTypeA004 = "RoR2/DLC1/voidraid/RaidVoid_CoralPlatformTypeA.004.prefab"; public static string RaidVoidCoralPlatformTypeB001 = "RoR2/DLC1/voidraid/RaidVoid_CoralPlatformTypeB.001.prefab"; public static string RaidVoidEastPlatform = "RoR2/DLC1/voidraid/RaidVoid_EastPlatform.prefab"; public static string RaidVoidPavement = "RoR2/DLC1/voidraid/RaidVoid_Pavement.prefab"; public static string RaidVoidPavementVoided = "RoR2/DLC1/voidraid/RaidVoid_PavementVoided.prefab"; public static string RaidVoidSupportPlatform = "RoR2/DLC1/voidraid/RaidVoid_SupportPlatform.prefab"; public static string RaidVoidTerrainEastSmall = "RoR2/DLC1/voidraid/RaidVoid_TerrainEastSmall.prefab"; public static string RaidVoidTerrainEastSmallTwo = "RoR2/DLC1/voidraid/RaidVoid_TerrainEastSmall_Two.prefab"; public static string RaidVoidTerrainNESmallBridge = "RoR2/DLC1/voidraid/RaidVoid_TerrainNESmallBridge.prefab"; public static string RaidVoidTerrainSouthSmall = "RoR2/DLC1/voidraid/RaidVoid_TerrainSouthSmall.prefab"; public static string RaidVoidVoidSupportPlatform = "RoR2/DLC1/voidraid/RaidVoid_VoidSupportPlatform.prefab"; public static string RaidVoidWalkwayGenericBaseLong001 = "RoR2/DLC1/voidraid/RaidVoid_WalkwayGenericBaseLong.001.prefab"; public static string RaidVoidDecalHuge = "RoR2/DLC1/voidraid/RaidVoidDecal, Huge.prefab"; public static string RaidVoidDecal = "RoR2/DLC1/voidraid/RaidVoidDecal.prefab"; public static string WeatherVoidRaidStarryNightVariant = "RoR2/DLC1/voidraid/Weather, Void Raid Starry Night Variant.prefab"; public static string WeatherVoidRaid = "RoR2/DLC1/voidraid/Weather, Void Raid.prefab"; public static string VoidRaidCrabCombatEncounter = "RoR2/DLC1/voidraid/VoidRaidCrabCombatEncounter.prefab"; public static string VoidRaidDioramaDisplay = "RoR2/DLC1/voidraid/VoidRaidDioramaDisplay.prefab"; public static string mdlGravityField = "RoR2/DLC1/voidstage/mdlGravityField.fbx"; public static string mdlVoidCoralPlatformTypeA004 = "RoR2/DLC1/voidstage/mdlVoidCoralPlatformTypeA.004.prefab"; public static string mdlVoidCoralPlatformTypeB001 = "RoR2/DLC1/voidstage/mdlVoidCoralPlatformTypeB.001.prefab"; public static string mdlVoidGravityGeyser = "RoR2/DLC1/voidstage/mdlVoidGravityGeyser.prefab"; public static string mdlVoidStageBridges = "RoR2/DLC1/voidstage/mdlVoidStageBridges.fbx"; public static string mdlVoidStageDiorama = "RoR2/DLC1/voidstage/mdlVoidStageDiorama.fbx"; public static string mdlVoidStageIslandEastSmall = "RoR2/DLC1/voidstage/mdlVoidStageIslandEastSmall.fbx"; public static string mdlVoidStageIslandEastSmallopt = "RoR2/DLC1/voidstage/mdlVoidStageIslandEastSmall_opt.fbx"; public static string mdlVoidStageIslandMainCore = "RoR2/DLC1/voidstage/mdlVoidStageIslandMainCore.fbx"; public static string mdlVoidStageIslandMainCoreopt = "RoR2/DLC1/voidstage/mdlVoidStageIslandMainCore_opt.fbx"; public static string mdlVoidStageIslandNE = "RoR2/DLC1/voidstage/mdlVoidStageIslandNE.fbx"; public static string mdlVoidStageIslandNEopt = "RoR2/DLC1/voidstage/mdlVoidStageIslandNE_opt.fbx"; public static string mdlVoidStageIslandNESmallBridge = "RoR2/DLC1/voidstage/mdlVoidStageIslandNESmallBridge.fbx"; public static string mdlVoidStageIslandNESmallBridgeopt = "RoR2/DLC1/voidstage/mdlVoidStageIslandNESmallBridge_opt.fbx"; public static string mdlVoidStageIslandNW = "RoR2/DLC1/voidstage/mdlVoidStageIslandNW.fbx"; public static string mdlVoidStageIslandNWopt = "RoR2/DLC1/voidstage/mdlVoidStageIslandNW_opt.fbx"; public static string mdlVoidStageIslandSE = "RoR2/DLC1/voidstage/mdlVoidStageIslandSE.fbx"; public static string mdlVoidStageIslandSEopt = "RoR2/DLC1/voidstage/mdlVoidStageIslandSE_opt.fbx"; public static string mdlVoidStageIslandSouthSmall = "RoR2/DLC1/voidstage/mdlVoidStageIslandSouthSmall.fbx"; public static string mdlVoidStageIslandSouthSmallopt = "RoR2/DLC1/voidstage/mdlVoidStageIslandSouthSmall_opt.fbx"; public static string mdlVoidStageRings = "RoR2/DLC1/voidstage/mdlVoidStageRings.fbx"; public static string mdlVoidStageRingsopt = "RoR2/DLC1/voidstage/mdlVoidStageRings_opt.fbx"; public static string mdlVoidStageRoof = "RoR2/DLC1/voidstage/mdlVoidStageRoof.fbx"; public static string mdlVoidStageRoofopt = "RoR2/DLC1/voidstage/mdlVoidStageRoof_opt.fbx"; public static string mdlVoidStageSkybox = "RoR2/DLC1/voidstage/mdlVoidStageSkybox.fbx"; public static string mdlVoidStageIslandEastSmall4 = "RoR2/DLC1/voidstage/mdlVoidStageIslandEastSmall.prefab"; public static string mdlVoidStageIslandMainCore21 = "RoR2/DLC1/voidstage/mdlVoidStageIslandMainCore.prefab"; public static string mdlVoidStageIslandNE35 = "RoR2/DLC1/voidstage/mdlVoidStageIslandNE.prefab"; public static string mdlVoidStageIslandNESmallBridge14 = "RoR2/DLC1/voidstage/mdlVoidStageIslandNESmallBridge.prefab"; public static string mdlVoidStageIslandNW33 = "RoR2/DLC1/voidstage/mdlVoidStageIslandNW.prefab"; public static string mdlVoidStageIslandSE18 = "RoR2/DLC1/voidstage/mdlVoidStageIslandSE.prefab"; public static string mdlVoidStageIslandSouthSmall25 = "RoR2/DLC1/voidstage/mdlVoidStageIslandSouthSmall.prefab"; public static string mdlVoidStageRings28 = "RoR2/DLC1/voidstage/mdlVoidStageRings.prefab"; public static string mdlVoidStageRoof19 = "RoR2/DLC1/voidstage/mdlVoidStageRoof.prefab"; public static string voidstageskyboxmeshes = "RoR2/DLC1/voidstage/voidstage skybox meshes.fbx"; public static string mdlVoidCrystal = "RoR2/DLC1/voidstage/mdlVoidCrystal.fbx"; public static string mdlVoidCrystalopt = "RoR2/DLC1/voidstage/mdlVoidCrystal_opt.fbx"; public static string mdlVoidCurrent = "RoR2/DLC1/voidstage/mdlVoidCurrent.fbx"; public static string mdlVoidFountain = "RoR2/DLC1/voidstage/mdlVoidFountain.fbx"; public static string mdlVoidOverhang = "RoR2/DLC1/voidstage/mdlVoidOverhang.fbx"; public static string mdlVoidOverhangopt = "RoR2/DLC1/voidstage/mdlVoidOverhang_opt.fbx"; public static string mdlVoidPillar = "RoR2/DLC1/voidstage/mdlVoidPillar.fbx"; public static string mdlVoidRingNew = "RoR2/DLC1/voidstage/mdlVoidRingNew.fbx"; public static string mdlVoidScroll = "RoR2/DLC1/voidstage/mdlVoidScroll.fbx"; public static string mdlVoidTallGrass = "RoR2/DLC1/voidstage/mdlVoidTallGrass.fbx"; public static string mdlVoidTallGrassopt = "RoR2/DLC1/voidstage/mdlVoidTallGrass_opt.fbx"; public static string mdlVoidTerrain = "RoR2/DLC1/voidstage/mdlVoidTerrain.fbx"; public static string mdlVoidCoral = "RoR2/DLC1/voidstage/mdlVoidCoral.fbx"; public static string mdlVoidCoralopt = "RoR2/DLC1/voidstage/mdlVoidCoral_opt.fbx"; public static string VoidBubbleCoral = "RoR2/DLC1/voidstage/VoidBubbleCoral.prefab"; public static string VoidBubbleCoralopt = "RoR2/DLC1/voidstage/VoidBubbleCoral_opt.prefab"; public static string VoidFanCoral = "RoR2/DLC1/voidstage/VoidFanCoral.prefab"; public static string VoidFanCoralFlat = "RoR2/DLC1/voidstage/VoidFanCoralFlat.prefab"; public static string VoidGrass = "RoR2/DLC1/voidstage/VoidGrass.prefab"; public static string VoidGrassopt = "RoR2/DLC1/voidstage/VoidGrass_opt.prefab"; public static string VoidStagePebble = "RoR2/DLC1/voidstage/VoidStagePebble.prefab"; public static string VoidTallGrass = "RoR2/DLC1/voidstage/VoidTallGrass.prefab"; public static string VoidTallGrassopt = "RoR2/DLC1/voidstage/VoidTallGrass_opt.prefab"; public static string VoidTallGrassPair = "RoR2/DLC1/voidstage/VoidTallGrassPair.prefab"; public static string VoidTallGrassTrio = "RoR2/DLC1/voidstage/VoidTallGrassTrio.prefab"; public static string VoidTallGrassTrioopt = "RoR2/DLC1/voidstage/VoidTallGrassTrio_opt.prefab"; public static string VoidCrystalClusterLG = "RoR2/DLC1/voidstage/VoidCrystalClusterLG.prefab"; public static string VoidCrystalClusterMD = "RoR2/DLC1/voidstage/VoidCrystalClusterMD.prefab"; public static string VoidCrystalClusterSM = "RoR2/DLC1/voidstage/VoidCrystalClusterSM.prefab"; public static string VoidFountain = "RoR2/DLC1/voidstage/VoidFountain.prefab"; public static string VoidGrowth = "RoR2/DLC1/voidstage/VoidGrowth.prefab"; public static string VoidPillar = "RoR2/DLC1/voidstage/VoidPillar.prefab"; public static string VoidScrollLight = "RoR2/DLC1/voidstage/VoidScrollLight.prefab"; public static string VoidVent = "RoR2/DLC1/voidstage/VoidVent.prefab"; public static string VoidVentopt = "RoR2/DLC1/voidstage/VoidVent_opt.prefab"; public static string voidmathshapes = "RoR2/DLC1/voidstage/void math shapes.fbx"; public static string voidmathshapesopt = "RoR2/DLC1/voidstage/void math shapes_opt.fbx"; public static string VoidXYZCluster = "RoR2/DLC1/voidstage/Void XYZ Cluster.prefab"; public static string VoidXYZMesh1 = "RoR2/DLC1/voidstage/VoidXYZMesh1.prefab"; public static string VoidXYZMesh1Hallowed = "RoR2/DLC1/voidstage/VoidXYZMesh1Hallowed.prefab"; public static string VoidXYZMesh1OpenVariant = "RoR2/DLC1/voidstage/VoidXYZMesh1OpenVariant.prefab"; public static string VoidXYZMesh1Small = "RoR2/DLC1/voidstage/VoidXYZMesh1Small.prefab"; public static string VoidStageDiorama = "RoR2/DLC1/voidstage/VoidStageDiorama.prefab"; public static string WeatherVoidStage = "RoR2/DLC1/voidstage/Weather, Void Stage.prefab"; public static string WeatherVoidStageopt = "RoR2/DLC1/voidstage/Weather, Void Stage_opt.prefab"; public static string VoidTransformationNotificationPanel = "RoR2/DLC1/UI/VoidTransformationNotificationPanel.prefab"; public static string DelusionComponentTracker = "RoR2/DLC2/DelusionComponentTracker.prefab"; public static string PickupRebirth = "RoR2/DLC2/PickupRebirth.prefab"; public static string ChefDeath = "RoR2/DLC2/Chef/Chef_Death.fbx"; public static string ChefHurt1 = "RoR2/DLC2/Chef/Chef_Hurt1.fbx"; public static string ChefHurt2 = "RoR2/DLC2/Chef/Chef_Hurt2.fbx"; public static string ChefHurt3 = "RoR2/DLC2/Chef/Chef_Hurt3.fbx"; public static string ChefSprintBackward = "RoR2/DLC2/Chef/Chef_SprintBackward.fbx"; public static string ChefSprintLeft = "RoR2/DLC2/Chef/Chef_SprintLeft.fbx"; public static string ChefSprintRight = "RoR2/DLC2/Chef/Chef_SprintRight.fbx"; public static string ChefAimPitch = "RoR2/DLC2/Chef/Chef_AimPitch.fbx"; public static string ChefAimYaw = "RoR2/DLC2/Chef/Chef_AimYaw.fbx"; public static string ChefFlinch1 = "RoR2/DLC2/Chef/Chef_Flinch1.fbx"; public static string ChefFlinch2 = "RoR2/DLC2/Chef/Chef_Flinch2.fbx"; public static string ChefFlinch3 = "RoR2/DLC2/Chef/Chef_Flinch3.fbx"; public static string ChefIdle = "RoR2/DLC2/Chef/Chef_Idle.fbx"; public static string ChefJump = "RoR2/DLC2/Chef/Chef_Jump.fbx"; public static string ChefReboot = "RoR2/DLC2/Chef/Chef_Reboot.fbx"; public static string ChefRunBackward = "RoR2/DLC2/Chef/Chef_RunBackward.fbx"; public static string ChefRunForward = "RoR2/DLC2/Chef/Chef_RunForward.fbx"; public static string ChefRunLeft = "RoR2/DLC2/Chef/Chef_RunLeft.fbx"; public static string ChefRunRight = "RoR2/DLC2/Chef/Chef_RunRight.fbx"; public static string ChefRunToIdle = "RoR2/DLC2/Chef/Chef_RunToIdle.fbx"; public static string ChefSprintForward = "RoR2/DLC2/Chef/Chef_SprintForward.fbx"; public static string ChefSprintToIdle = "RoR2/DLC2/Chef/Chef_SprintToIdle.fbx"; public static string ChefLobbyIdle = "RoR2/DLC2/Chef/Chef_LobbyIdle.fbx"; public static string ChefLobbyIdleAlternate = "RoR2/DLC2/Chef/Chef_LobbyIdleAlternate.fbx"; public static string ChefLobbyIdleAlternate2 = "RoR2/DLC2/Chef/Chef_LobbyIdleAlternate2.fbx"; public static string ChefLobbyIntro = "RoR2/DLC2/Chef/Chef_LobbyIntro.fbx"; public static string ChefDiceOutnormalexport = "RoR2/DLC2/Chef/Chef_DiceOut_normalexport.fbx"; public static string ChefPrimaryDice2 = "RoR2/DLC2/Chef/Chef_PrimaryDice2.fbx"; public static string ChefSliceAndDiceEnraged = "RoR2/DLC2/Chef/Chef_SliceAndDiceEnraged.fbx"; public static string ASChefOilSpillIdle = "RoR2/DLC2/Chef/AS_Chef_Oil_Spill_Idle.fbx"; public static string ASChefOilSpillv2novolume = "RoR2/DLC2/Chef/AS_Chef_Oil_Spill_v2novolume.fbx"; public static string ASChefOilSpillnovolume = "RoR2/DLC2/Chef/AS_Chef_Oil_Spillnovolume.fbx"; public static string ChefGlaze = "RoR2/DLC2/Chef/Chef_Glaze.fbx"; public static string ChefOilSpill = "RoR2/DLC2/Chef/Chef_OilSpill.fbx"; public static string ChefPrimaryDice1 = "RoR2/DLC2/Chef/Chef_PrimaryDice1.fbx"; public static string ChefPrimaryDice1Return = "RoR2/DLC2/Chef/Chef_PrimaryDice1_Return.fbx"; public static string ChefRolyPoly = "RoR2/DLC2/Chef/Chef_RolyPoly.fbx"; public static string ChefRolyPolyBoosted = "RoR2/DLC2/Chef/Chef_RolyPoly_Boosted.fbx"; public static string ChefRolyPolyStart = "RoR2/DLC2/Chef/Chef_RolyPoly_Start.fbx"; public static string ChefSearBlaze = "RoR2/DLC2/Chef/Chef_SearBlaze.fbx"; public static string ChefSliceAndDice = "RoR2/DLC2/Chef/Chef_SliceAndDice.fbx"; public static string ChefYesChef = "RoR2/DLC2/Chef/Chef_YesChef.fbx"; public static string ChefBody = "RoR2/DLC2/Chef/ChefBody.prefab"; public static string ChefCleaver = "RoR2/DLC2/Chef/ChefCleaver.prefab"; public static string ChefCleaverGhost = "RoR2/DLC2/Chef/ChefCleaverGhost.prefab"; public static string ChefCrosshair = "RoR2/DLC2/Chef/ChefCrosshair.prefab"; public static string ChefDisplay = "RoR2/DLC2/Chef/ChefDisplay.prefab"; public static string ChefDisplayFire = "RoR2/DLC2/Chef/ChefDisplayFire.prefab"; public static string ChefDisplayFrost = "RoR2/DLC2/Chef/ChefDisplayFrost.prefab"; public static string ChefDisplayOvenFire = "RoR2/DLC2/Chef/ChefDisplayOvenFire.prefab"; public static string ChefDisplayTrail = "RoR2/DLC2/Chef/ChefDisplayTrail.prefab"; public static string ChefGlazeGhost = "RoR2/DLC2/Chef/ChefGlazeGhost.prefab"; public static string ChefGlazeImpactEffect = "RoR2/DLC2/Chef/ChefGlazeImpactEffect.prefab"; public static string ChefGlazeProjectile = "RoR2/DLC2/Chef/ChefGlazeProjectile.prefab"; public static string ChefGlazeProjectileUtility = "RoR2/DLC2/Chef/ChefGlazeProjectileUtility.prefab"; public static string ChefGlazeProjectileUtilityFrozen = "RoR2/DLC2/Chef/ChefGlazeProjectileUtilityFrozen.prefab"; public static string ChefGlazeProjectileUtilityIgnited = "RoR2/DLC2/Chef/ChefGlazeProjectileUtilityIgnited.prefab"; public static string ChefMonsterMaster = "RoR2/DLC2/Chef/ChefMonsterMaster.prefab"; public static string ChefOilGhost = "RoR2/DLC2/Chef/ChefOilGhost.prefab"; public static string ChefUnlock = "RoR2/DLC2/Chef/ChefUnlock.prefab"; public static string ChefUnlockTeleportVFX = "RoR2/DLC2/Chef/ChefUnlockTeleportVFX.prefab"; public static string mdlChefAlt = "RoR2/DLC2/Chef/mdlChefAlt.fbx"; public static string mdlChef = "RoR2/DLC2/Chef/mdlChef.fbx"; public static string mdlIceBoxIceCube = "RoR2/DLC2/Chef/mdlIceBoxIceCube.fbx"; public static string ChefFoodPickup = "RoR2/DLC2/Chef/Buffs/ChefFoodPickup.prefab"; public static string ChefKebob = "RoR2/DLC2/Chef/Buffs/ChefKebob.prefab"; public static string ChefMilk = "RoR2/DLC2/Chef/Buffs/ChefMilk.prefab"; public static string mdlChefKebob = "RoR2/DLC2/Chef/Buffs/mdlChefKebob.fbx"; public static string mdlChefMilk = "RoR2/DLC2/Chef/Buffs/mdlChefMilk.fbx"; public static string mdlPizzaSlice = "RoR2/DLC2/Chef/Buffs/mdlPizzaSlice.fbx"; public static string mdlSakeNigiri = "RoR2/DLC2/Chef/Buffs/mdlSakeNigiri.fbx"; public static string mdlTurkeyLeg = "RoR2/DLC2/Chef/Buffs/mdlTurkeyLeg.fbx"; public static string PizzaSlice = "RoR2/DLC2/Chef/Buffs/PizzaSlice.prefab"; public static string SakeNigiri = "RoR2/DLC2/Chef/Buffs/SakeNigiri.prefab"; public static string TurkeyLeg = "RoR2/DLC2/Chef/Buffs/TurkeyLeg.prefab"; public static string CleaverChargedVFX = "RoR2/DLC2/Chef/CleaverChargedVFX.prefab"; public static string ChefDiceEnhanced = "RoR2/DLC2/Chef/ChefDiceEnhanced.prefab"; public static string ChefDiceEnhancedGhost = "RoR2/DLC2/Chef/ChefDiceEnhancedGhost.prefab"; public static string MuzzleflashChefDiceEnhanced = "RoR2/DLC2/Chef/MuzzleflashChefDiceEnhanced.prefab"; public static string meshChefCleaverGhost1 = "RoR2/DLC2/Chef/meshChefCleaverGhost1.FBX"; public static string MuzzleflashChefDice = "RoR2/DLC2/Chef/MuzzleflashChefDice.prefab"; public static string MuzzleflashChefDiceReturn = "RoR2/DLC2/Chef/MuzzleflashChefDiceReturn.prefab"; public static string BoostedSearFireballGhost = "RoR2/DLC2/Chef/BoostedSearFireballGhost.prefab"; public static string BoostedSearFireballMuzzleFlash = "RoR2/DLC2/Chef/BoostedSearFireballMuzzleFlash.prefab"; public static string BoostedSearFireballProjectile = "RoR2/DLC2/Chef/BoostedSearFireballProjectile.prefab"; public static string BoostedSearFireballProjectileExplosionVFX = "RoR2/DLC2/Chef/BoostedSearFireballProjectileExplosionVFX.prefab"; public static string ChefSecondaryFlameBoostedVFXOriginal = "RoR2/DLC2/Chef/ChefSecondaryFlameBoostedVFXOriginal.prefab"; public static string ChefSecondaryFlameBoostedVFXShort = "RoR2/DLC2/Chef/ChefSecondaryFlameBoostedVFXShort.prefab"; public static string ChefSecondaryFlameBoostedVFXStart = "RoR2/DLC2/Chef/ChefSecondaryFlameBoostedVFXStart.prefab"; public static string ChefSecondaryFlameVFX = "RoR2/DLC2/Chef/ChefSecondaryFlameVFX.prefab"; public static string BoostedIceBoxIceCubeProjectile = "RoR2/DLC2/Chef/BoostedIceBoxIceCubeProjectile.prefab"; public static string BoostedIceCubeProjectileMuzzleFlash = "RoR2/DLC2/Chef/BoostedIceCubeProjectileMuzzleFlash.prefab"; public static string BoostedProjectileExplosionVFX = "RoR2/DLC2/Chef/BoostedProjectileExplosionVFX.prefab"; public static string ChefIceBoxExplosionVFX = "RoR2/DLC2/Chef/ChefIceBoxExplosionVFX.prefab"; public static string ChefIceCubeBurstProjectile = "RoR2/DLC2/Chef/ChefIceCubeBurstProjectile.prefab"; public static string ChefIceCubeBurstProjectileGhost = "RoR2/DLC2/Chef/ChefIceCubeBurstProjectileGhost.prefab"; public static string ChefSecondaryIceBlizzardVFX = "RoR2/DLC2/Chef/ChefSecondaryIceBlizzardVFX.prefab"; public static string ChefSecondaryIceBoxBoostedVFXShort = "RoR2/DLC2/Chef/ChefSecondaryIceBoxBoostedVFXShort.prefab"; public static string IceBoxIceCubeGhost = "RoR2/DLC2/Chef/IceBoxIceCubeGhost.prefab"; public static string IceCubeProjectileMuzzleFlash = "RoR2/DLC2/Chef/IceCubeProjectileMuzzleFlash.prefab"; public static string YesChefFrostGhost = "RoR2/DLC2/Chef/YesChefFrostGhost.prefab"; public static string YesChefHeatGhost = "RoR2/DLC2/Chef/YesChefHeatGhost.prefab"; public static string YesChefInitialExplosion = "RoR2/DLC2/Chef/YesChefInitialExplosion.prefab"; public static string YesChefInitialExplosionFrost = "RoR2/DLC2/Chef/YesChefInitialExplosionFrost.prefab"; public static string YesChefProjectile = "RoR2/DLC2/Chef/YesChefProjectile.prefab"; public static string YesChefSteamVFX = "RoR2/DLC2/Chef/YesChefSteamVFX.prefab"; public static string BoostedRolyPolyGhost = "RoR2/DLC2/Chef/BoostedRolyPolyGhost.prefab"; public static string BoostedRolyPolyProjectile = "RoR2/DLC2/Chef/BoostedRolyPolyProjectile.prefab"; public static string ChefTenderizeSpikes = "RoR2/DLC2/Chef/ChefTenderizeSpikes.prefab"; public static string ChefUtilityAirStreakVFX = "RoR2/DLC2/Chef/ChefUtilityAirStreakVFX.prefab"; public static string ChefUtilityEndVFX = "RoR2/DLC2/Chef/ChefUtilityEndVFX.prefab"; public static string ChefUtilityImpactVFX = "RoR2/DLC2/Chef/ChefUtilityImpactVFX.prefab"; public static string ChefUtilityImpactVFXBoosted = "RoR2/DLC2/Chef/ChefUtilityImpactVFXBoosted.prefab"; public static string ChefUtilityStartEndVFX = "RoR2/DLC2/Chef/ChefUtilityStartEndVFX.prefab"; public static string meshChefTenderizeSpikes = "RoR2/DLC2/Chef/meshChefTenderizeSpikes.FBX"; public static string ChefImpactOil = "RoR2/DLC2/Chef/ChefImpactOil.prefab"; public static string ChefImpactOilBoosted = "RoR2/DLC2/Chef/ChefImpactOilBoosted.prefab"; public static string ChefImpactOilBoostedFrozen = "RoR2/DLC2/Chef/ChefImpactOilBoostedFrozen.prefab"; public static string ChefImpactOilGhost = "RoR2/DLC2/Chef/ChefImpactOilGhost.prefab"; public static string ChefOilBoosted = "RoR2/DLC2/Chef/ChefOilBoosted.prefab"; public static string ChefOilImpactVFX = "RoR2/DLC2/Chef/ChefOilImpactVFX.prefab"; public static string ChefOilSpillFrozenVFX = "RoR2/DLC2/Chef/ChefOilSpillFrozenVFX.prefab"; public static string ChefOilSpillImpactEffect = "RoR2/DLC2/Chef/ChefOilSpillImpactEffect.prefab"; public static string ChefOilSpillSpinVFX = "RoR2/DLC2/Chef/ChefOilSpillSpinVFX.prefab"; public static string RolyPolyChargeExplosionVFX = "RoR2/DLC2/Chef/RolyPolyChargeExplosionVFX.prefab"; public static string RolyPolyChargeStrongerExplosionVFX = "RoR2/DLC2/Chef/RolyPolyChargeStrongerExplosionVFX.prefab"; public static string RolyPolyChargeStrongestExplosionVFX = "RoR2/DLC2/Chef/RolyPolyChargeStrongestExplosionVFX.prefab"; public static string RolyPolySkiddingVFX = "RoR2/DLC2/Chef/RolyPolySkiddingVFX.prefab"; public static string ChildAimPitch = "RoR2/DLC2/Child/Child_Aim_Pitch.fbx"; public static string ChildAimYaw = "RoR2/DLC2/Child/Child_Aim_Yaw.fbx"; public static string ChildDeath = "RoR2/DLC2/Child/Child_Death.fbx"; public static string ChildFlinch1 = "RoR2/DLC2/Child/Child_Flinch1.fbx"; public static string ChildFlinch2 = "RoR2/DLC2/Child/Child_Flinch2.fbx"; public static string ChildFrolicProjectile = "RoR2/DLC2/Child/Child_Frolic_Projectile.fbx"; public static string ChildFrolicSuprise = "RoR2/DLC2/Child/Child_Frolic_Suprise.fbx"; public static string ChildHurt1 = "RoR2/DLC2/Child/Child_Hurt1.fbx"; public static string ChildIdle = "RoR2/DLC2/Child/Child_Idle.fbx"; public static string ChildJump = "RoR2/DLC2/Child/Child_Jump.fbx"; public static string ChildRunF = "RoR2/DLC2/Child/Child_Run_F.fbx"; public static string ChildRunToIdle = "RoR2/DLC2/Child/Child_RunToIdle.fbx"; public static string ChildSparkLaunch = "RoR2/DLC2/Child/Child_Spark_Launch.fbx"; public static string ChildSparkLoop = "RoR2/DLC2/Child/Child_Spark_Loop.fbx"; public static string ChildBody = "RoR2/DLC2/Child/ChildBody.prefab"; public static string ChildDespawnEffect = "RoR2/DLC2/Child/ChildDespawnEffect.prefab"; public static string ChildMaster = "RoR2/DLC2/Child/ChildMaster.prefab"; public static string mdlChild = "RoR2/DLC2/Child/mdlChild.fbx"; public static string ChargeChildTrackingSparkBall = "RoR2/DLC2/Child/ChargeChildTrackingSparkBall.prefab"; public static string ChildTrackingSparkBall = "RoR2/DLC2/Child/ChildTrackingSparkBall.prefab"; public static string ChildTrackingSparkBallExplosion = "RoR2/DLC2/Child/ChildTrackingSparkBallExplosion.prefab"; public static string ChildTrackingSparkBallGhost = "RoR2/DLC2/Child/ChildTrackingSparkBallGhost.prefab"; public static string ChildTrackingSparkBallShootExplosion = "RoR2/DLC2/Child/ChildTrackingSparkBallShootExplosion.prefab"; public static string mdlChildVFXStar = "RoR2/DLC2/Child/mdlChildVFXStar.fbx"; public static string FrolicProjectile = "RoR2/DLC2/Child/FrolicProjectile.prefab"; public static string FrolicProjectileGhost = "RoR2/DLC2/Child/FrolicProjectileGhost.prefab"; public static string FrolicProjectileImpactVFX = "RoR2/DLC2/Child/FrolicProjectileImpactVFX.prefab"; public static string FrolicTeleportVFX = "RoR2/DLC2/Child/FrolicTeleportVFX.prefab"; public static string MuzzleflashFrolic = "RoR2/DLC2/Child/MuzzleflashFrolic.prefab"; public static string CorruptionSpike = "RoR2/DLC2/CorruptionSpike/CorruptionSpike.prefab"; public static string CorruptionSpikeMaster = "RoR2/DLC2/CorruptionSpike/CorruptionSpikeMaster.prefab"; public static string ASFalseSonAimPitch = "RoR2/DLC2/FalseSon/AS_FalseSon_AimPitch.fbx"; public static string ASFalseSonAimYaw = "RoR2/DLC2/FalseSon/AS_FalseSon_AimYaw.fbx"; public static string ASFalseSonFlinchVariant1 = "RoR2/DLC2/FalseSon/AS_FalseSon_FlinchVariant1.fbx"; public static string ASFalseSonFlinchVariant2 = "RoR2/DLC2/FalseSon/AS_FalseSon_FlinchVariant2.fbx"; public static string ASFalseSonFlinchVariant3 = "RoR2/DLC2/FalseSon/AS_FalseSon_FlinchVariant3.fbx"; public static string ASFalseSonIdle = "RoR2/DLC2/FalseSon/AS_FalseSon_Idle.fbx"; public static string ASFalseSonJump = "RoR2/DLC2/FalseSon/AS_FalseSon_Jump.fbx"; public static string ASFalseSonRunBackward = "RoR2/DLC2/FalseSon/AS_FalseSon_RunBackward.fbx"; public static string ASFalseSonRunForward = "RoR2/DLC2/FalseSon/AS_FalseSon_RunForward.fbx"; public static string ASFalseSonRunLeft = "RoR2/DLC2/FalseSon/AS_FalseSon_RunLeft.fbx"; public static string ASFalseSonRunRight = "RoR2/DLC2/FalseSon/AS_FalseSon_RunRight.fbx"; public static string ASFalseSonRunToIdle = "RoR2/DLC2/FalseSon/AS_FalseSon_RunToIdle.fbx"; public static string ASFalseSonSpawnIN = "RoR2/DLC2/FalseSon/AS_FalseSon_SpawnIN.fbx"; public static string ASFalseSonSprintForward = "RoR2/DLC2/FalseSon/AS_FalseSon_SprintForward.fbx"; public static string ASFalseSonSprintToIdle = "RoR2/DLC2/FalseSon/AS_FalseSon_SprintToIdle.fbx"; public static string ASFalseSonLobbyEntry = "RoR2/DLC2/FalseSon/AS_FalseSon_LobbyEntry.fbx"; public static string ASFalseSonLobbyIdle = "RoR2/DLC2/FalseSon/AS_FalseSon_LobbyIdle.fbx"; public static string ASFalseSonLobbyIdleAlternate = "RoR2/DLC2/FalseSon/AS_FalseSon_LobbyIdleAlternate.fbx"; public static string ASFalseSonLobbyIdleAlternate2 = "RoR2/DLC2/FalseSon/AS_FalseSon_LobbyIdleAlternate2.fbx"; public static string ASFalseSonLobbyIdleAlternate3 = "RoR2/DLC2/FalseSon/AS_FalseSon_LobbyIdleAlternate3.fbx"; public static string ASFalseSonPrimaryAllSwings = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimaryAllSwings.fbx"; public static string ASFalseSonPrimaryFirstSwingadjust = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimaryFirstSwing_adjust.fbx"; public static string ASFalseSonPrimarySecondSwingadjust = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimarySecondSwing_adjust.fbx"; public static string ASFalseSonPrimarySlam = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimarySlam.fbx"; public static string ASFalseSonPrimarySlamCharge = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimarySlamCharge.fbx"; public static string ASFalseSonPrimarySlamChargeadjust = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimarySlamCharge_adjust.fbx"; public static string ASFalseSonPrimarySlamChargeadjustloop = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimarySlamCharge_adjust_loop.fbx"; public static string ASFalseSonPrimarySlamChargeadjustmasked = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimarySlamCharge_adjust_masked.fbx"; public static string ASFalseSonPrimarySlamChargeAir = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimarySlamChargeAir.fbx"; public static string ASFalseSonPrimarySlamChargeAirloop = "RoR2/DLC2/FalseSon/AS_FalseSon_PrimarySlamChargeAir_loop.fbx"; public static string ASFalseSonSecondaryCharge = "RoR2/DLC2/FalseSon/AS_FalseSon_SecondaryCharge.fbx"; public static string ASFalseSonSecondaryFire = "RoR2/DLC2/FalseSon/AS_FalseSon_SecondaryFire.fbx"; public static string ASFalseSonSecondaryLower = "RoR2/DLC2/FalseSon/AS_FalseSon_SecondaryLower.fbx"; public static string ASFalseSonSecondaryRaise = "RoR2/DLC2/FalseSon/AS_FalseSon_SecondaryRaise.fbx"; public static string ASFalseSonSpecialadjust = "RoR2/DLC2/FalseSon/AS_FalseSon_Special_adjust.fbx"; public static string ASFalseSonSpecialadjustloop = "RoR2/DLC2/FalseSon/AS_FalseSon_Special_adjust_loop.fbx"; public static string ASFalseSonSpecialquickshot = "RoR2/DLC2/FalseSon/AS_FalseSon_Special_quickshot.fbx"; public static string ASFalseSonSpecialCharge = "RoR2/DLC2/FalseSon/AS_FalseSon_SpecialCharge.fbx"; public static string ASFalseSonSpecialFire = "RoR2/DLC2/FalseSon/AS_FalseSon_SpecialFire.fbx"; public static string ASFalseSonSpecialPrep = "RoR2/DLC2/FalseSon/AS_FalseSon_SpecialPrep.fbx"; public static string ASFalseSonUtilityEnter = "RoR2/DLC2/FalseSon/AS_FalseSon_UtilityEnter.fbx"; public static string ASFalseSonUtilityExit = "RoR2/DLC2/FalseSon/AS_FalseSon_UtilityExit.fbx"; public static string ASFalseSonDash = "RoR2/DLC2/FalseSon/AS_FalseSon_Dash.fbx"; public static string ASFalseSonBossDeath = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_Death.fbx"; public static string ASFalseSonBossIdle = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_Idle.fbx"; public static string ASFalseSonBossLaserBlast = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_LaserBlast.fbx"; public static string ASFalseSonBossLunarGaze = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_LunarGaze.fbx"; public static string ASFalseSonBossLunarGazeJumpIn = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_LunarGazeJumpIn.fbx"; public static string ASFalseSonBossLunarGazeJumpOut = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_LunarGazeJumpOut.fbx"; public static string ASFalseSonBossLunarRain = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_LunarRain.fbx"; public static string ASFalseSonBossLunarSpike = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_LunarSpike.fbx"; public static string ASFalseSonBossOverloadErruption = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_OverloadErruption.fbx"; public static string ASFalseSonBossPhaseChange1 = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_PhaseChange1.fbx"; public static string ASFalseSonBossPhaseChange2 = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_PhaseChange2.fbx"; public static string ASFalseSonBossPrimeDevastator = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_PrimeDevastator.fbx"; public static string ASFalseSonBossSpawnIn = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_SpawnIn.fbx"; public static string ASFalseSonBossSwatAway = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_SwatAway.fbx"; public static string ASFalseSonBossWalkForwardPhase01 = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_WalkForward_Phase01.fbx"; public static string ASFalseSonBossWalkForwardPhase02 = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_WalkForward_Phase02.fbx"; public static string ASFalseSonBossWalkForwardPhase03 = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_WalkForward_Phase03.fbx"; public static string FalseSonDisplay = "RoR2/DLC2/FalseSon/FalseSonDisplay.prefab"; public static string mdlFalseSonDisplayExtras = "RoR2/DLC2/FalseSon/mdlFalseSonDisplayExtras.prefab"; public static string mdlFalseSonDisplayFloor = "RoR2/DLC2/FalseSon/mdlFalseSonDisplayFloor.fbx"; public static string FalseSonBody = "RoR2/DLC2/FalseSon/FalseSonBody.prefab"; public static string FalseSonDisplayUnusedQuestionMark = "RoR2/DLC2/FalseSon/FalseSonDisplay_Unused_QuestionMark.prefab"; public static string FalseSonMeteor = "RoR2/DLC2/FalseSon/FalseSonMeteor.prefab"; public static string FalseSonMeteorGroundImpact = "RoR2/DLC2/FalseSon/FalseSonMeteorGroundImpact.prefab"; public static string FalseSonMonsterMaster = "RoR2/DLC2/FalseSon/FalseSonMonsterMaster.prefab"; public static string FSClubGroundTrail = "RoR2/DLC2/FalseSon/FSClubGroundTrail.prefab"; public static string mdlFalseSonMeteor = "RoR2/DLC2/FalseSon/mdlFalseSonMeteor.fbx"; public static string FalseSonSpike = "RoR2/DLC2/FalseSon/FalseSonSpike.prefab"; public static string FalseSonCoreAnim = "RoR2/DLC2/FalseSon/FalseSonCoreAnim.fbx"; public static string PREFABFalseSonCoreAnim = "RoR2/DLC2/FalseSon/PREFAB_FalseSonCoreAnim.prefab"; public static string mdlFalseSon = "RoR2/DLC2/FalseSon/mdlFalseSon.fbx"; public static string mdlFalseSonBossPhasesSpikes = "RoR2/DLC2/FalseSon/mdlFalseSonBossPhasesSpikes.fbx"; public static string mdlFalseSonChargeSlamEnergy = "RoR2/DLC2/FalseSon/mdlFalseSonChargeSlamEnergy.fbx"; public static string mdlFalseSonCore = "RoR2/DLC2/FalseSon/mdlFalseSonCore.fbx"; public static string mdlFalseSonSpike = "RoR2/DLC2/FalseSon/mdlFalseSonSpike.fbx"; public static string mdlFalseSonStake = "RoR2/DLC2/FalseSon/mdlFalseSonStake.fbx"; public static string FalseSonClubSwoosh = "RoR2/DLC2/FalseSon/FalseSonClubSwoosh.prefab"; public static string FalseSonFistCharge = "RoR2/DLC2/FalseSon/FalseSonFistCharge.prefab"; public static string FalseSonGroundSlam = "RoR2/DLC2/FalseSon/FalseSonGroundSlam.prefab"; public static string FalseSonPrimaryMidAirTrail = "RoR2/DLC2/FalseSon/FalseSonPrimaryMidAirTrail.prefab"; public static string FalseSonSwingBasic = "RoR2/DLC2/FalseSon/FalseSonSwingBasic.prefab"; public static string FalseSonSwingBasic2 = "RoR2/DLC2/FalseSon/FalseSonSwingBasic2.prefab"; public static string FalseSonSwingBasicVertical = "RoR2/DLC2/FalseSon/FalseSonSwingBasicVertical.prefab"; public static string OmniImpactVFXFalseSonGroundSlam = "RoR2/DLC2/FalseSon/OmniImpactVFXFalseSonGroundSlam.prefab"; public static string FalseSonLightningPredictGhost = "RoR2/DLC2/FalseSon/FalseSonLightningPredictGhost.prefab"; public static string FalseSonLightningProjectile = "RoR2/DLC2/FalseSon/FalseSonLightningProjectile.prefab"; public static string LunarSpike = "RoR2/DLC2/FalseSon/LunarSpike.prefab"; public static string LunarSpikeGhost = "RoR2/DLC2/FalseSon/LunarSpikeGhost.prefab"; public static string LunarStake = "RoR2/DLC2/FalseSon/LunarStake.prefab"; public static string LunarStakeGhost = "RoR2/DLC2/FalseSon/LunarStakeGhost.prefab"; public static string LunarStakeLightningStrikeImpactEffect = "RoR2/DLC2/FalseSon/LunarStakeLightningStrikeImpactEffect.prefab"; public static string MuzzleflashFalseSonFire = "RoR2/DLC2/FalseSon/MuzzleflashFalseSonFire.prefab"; public static string MuzzleflashFalseSonFireLunarStake = "RoR2/DLC2/FalseSon/MuzzleflashFalseSonFireLunarStake.prefab"; public static string OmniImpactVFXLunarSpikes = "RoR2/DLC2/FalseSon/OmniImpactVFXLunarSpikes.prefab"; public static string OmniImpactVFXLunarStake = "RoR2/DLC2/FalseSon/OmniImpactVFXLunarStake.prefab"; public static string OmniImpactVFXLunarStakeTerrain = "RoR2/DLC2/FalseSon/OmniImpactVFXLunarStakeTerrain.prefab"; public static string FalseSonChargedLaser = "RoR2/DLC2/FalseSon/FalseSonChargedLaser.prefab"; public static string FalseSonLaserBurstMuzzleFlash = "RoR2/DLC2/FalseSon/FalseSonLaserBurstMuzzleFlash.prefab"; public static string FalseSonLaserCharge = "RoR2/DLC2/FalseSon/FalseSonLaserCharge.prefab"; public static string FalseSonLaserExplosion = "RoR2/DLC2/FalseSon/FalseSonLaserExplosion.prefab"; public static string FalseSonLaserMuzzleFlash = "RoR2/DLC2/FalseSon/FalseSonLaserMuzzleFlash.prefab"; public static string FalseSonLaserMuzzleFlashFire = "RoR2/DLC2/FalseSon/FalseSonLaserMuzzleFlashFire.prefab"; public static string FalseSonLaserTracer = "RoR2/DLC2/FalseSon/FalseSonLaserTracer.prefab"; public static string FalseSonPreLaser = "RoR2/DLC2/FalseSon/FalseSonPreLaser.prefab"; public static string FalseSonDashExplosion = "RoR2/DLC2/FalseSon/FalseSonDashExplosion.prefab"; public static string FalseSonDashTrail = "RoR2/DLC2/FalseSon/FalseSonDashTrail.prefab"; public static string FalseSonMeridiansWillIndicator = "RoR2/DLC2/FalseSon/FalseSonMeridiansWillIndicator.prefab"; public static string FalseSonMeridiansWillPassiveGhost = "RoR2/DLC2/FalseSon/FalseSonMeridiansWillPassiveGhost.prefab"; public static string FalseSonMeridiansWillVortexVFX = "RoR2/DLC2/FalseSon/FalseSonMeridiansWillVortexVFX.prefab"; public static string MeridiansWillInitialLightningImpact = "RoR2/DLC2/FalseSon/MeridiansWillInitialLightningImpact.prefab"; public static string MeridiansWillSecondaryLightningImpact = "RoR2/DLC2/FalseSon/MeridiansWillSecondaryLightningImpact.prefab"; public static string OmniImpactVFXFalseSonDashExplosion = "RoR2/DLC2/FalseSon/OmniImpactVFXFalseSonDashExplosion.prefab"; public static string mdlFalseSonAlt = "RoR2/DLC2/FalseSon/mdlFalseSonAlt.fbx"; public static string FSCrosshair = "RoR2/DLC2/FalseSon/FSCrosshair.prefab"; public static string FSStakeCrosshair = "RoR2/DLC2/FalseSon/FSStakeCrosshair.prefab"; public static string FalseSonBossAppearVFX = "RoR2/DLC2/FalseSonBoss/FalseSonBossAppearVFX.prefab"; public static string FalseSonBossBody = "RoR2/DLC2/FalseSonBoss/FalseSonBossBody.prefab"; public static string FalseSonBossLightningNovaSpawn = "RoR2/DLC2/FalseSonBoss/FalseSonBossLightningNovaSpawn.prefab"; public static string FalseSonBossLightningStreakDeath = "RoR2/DLC2/FalseSonBoss/FalseSonBossLightningStreakDeath.prefab"; public static string FalseSonBossBodyLunarShard = "RoR2/DLC2/FalseSonBoss/FalseSonBossBodyLunarShard.prefab"; public static string FalseSonBossLunarShardMaster = "RoR2/DLC2/FalseSonBoss/FalseSonBossLunarShardMaster.prefab"; public static string LunarGazeChargeEffect = "RoR2/DLC2/FalseSonBoss/LunarGazeChargeEffect.prefab"; public static string LunarGazeChargeLaser = "RoR2/DLC2/FalseSonBoss/LunarGazeChargeLaser.prefab"; public static string LunarGazeFireEffect = "RoR2/DLC2/FalseSonBoss/LunarGazeFireEffect.prefab"; public static string LunarGazeFireLaser = "RoR2/DLC2/FalseSonBoss/LunarGazeFireLaser.prefab"; public static string LunarGazeJumpInVFX = "RoR2/DLC2/FalseSonBoss/LunarGazeJumpInVFX.prefab"; public static string LunarGazeJumpOutVFX = "RoR2/DLC2/FalseSonBoss/LunarGazeJumpOutVFX.prefab"; public static string FalseSonBossBodyBrokenLunarShard = "RoR2/DLC2/FalseSonBoss/FalseSonBossBodyBrokenLunarShard.prefab"; public static string FalseSonBossLunarShardBrokenMaster = "RoR2/DLC2/FalseSonBoss/FalseSonBossLunarShardBrokenMaster.prefab"; public static string PrimeDevastatorBlastImpactVFX = "RoR2/DLC2/FalseSonBoss/PrimeDevastatorBlastImpactVFX.prefab"; public static string PrimeDevastatorBlastVFX = "RoR2/DLC2/FalseSonBoss/PrimeDevastatorBlastVFX.prefab"; public static string PrimeDevastatorChargeVFX = "RoR2/DLC2/FalseSonBoss/PrimeDevastatorChargeVFX.prefab"; public static string PrimeDevastatorLightningOrbEffect = "RoR2/DLC2/FalseSonBoss/PrimeDevastatorLightningOrbEffect.prefab"; public static string PrimeDevastatorProjectile = "RoR2/DLC2/FalseSonBoss/PrimeDevastatorProjectile.prefab"; public static string PrimeDevastatorProjectileGhost = "RoR2/DLC2/FalseSonBoss/PrimeDevastatorProjectileGhost.prefab"; public static string LunarGazePlusChargeEffect = "RoR2/DLC2/FalseSonBoss/LunarGazePlusChargeEffect.prefab"; public static string LunarGazePlusChargeLaser = "RoR2/DLC2/FalseSonBoss/LunarGazePlusChargeLaser.prefab"; public static string LunarGazePlusFireLaser = "RoR2/DLC2/FalseSonBoss/LunarGazePlusFireLaser.prefab"; public static string FalseSonBossMaster = "RoR2/DLC2/FalseSonBoss/FalseSonBossMaster.prefab"; public static string FalseSonBossPhaseSpawnCrystalGrowthVFX = "RoR2/DLC2/FalseSonBoss/FalseSonBossPhaseSpawnCrystalGrowthVFX.prefab"; public static string FalseSonBossTakeOffVFX = "RoR2/DLC2/FalseSonBoss/FalseSonBossTakeOffVFX.prefab"; public static string LunarSpikeBoss = "RoR2/DLC2/FalseSonBoss/LunarSpikeBoss.prefab"; public static string LunarSpikeGhostBoss = "RoR2/DLC2/FalseSonBoss/LunarSpikeGhostBoss.prefab"; public static string MinionDebuffEffect = "RoR2/DLC2/FalseSonBoss/MinionDebuffEffect.prefab"; public static string FalseSonBossSwing = "RoR2/DLC2/FalseSonBoss/FalseSonBossSwing.prefab"; public static string FalseSonFissurePillar = "RoR2/DLC2/FalseSonBoss/FalseSonFissurePillar.prefab"; public static string FalseSonFissurePillarGhost = "RoR2/DLC2/FalseSonBoss/FalseSonFissurePillarGhost.prefab"; public static string FissureSlamCracks = "RoR2/DLC2/FalseSonBoss/FissureSlamCracks.prefab"; public static string FissureSlamExplosion = "RoR2/DLC2/FalseSonBoss/FissureSlamExplosion.prefab"; public static string FissureSlamFistEffect = "RoR2/DLC2/FalseSonBoss/FissureSlamFistEffect.prefab"; public static string FissureSlamInAirExplosion = "RoR2/DLC2/FalseSonBoss/FissureSlamInAirExplosion.prefab"; public static string FissureSlamPredictionEffect = "RoR2/DLC2/FalseSonBoss/FissureSlamPredictionEffect.prefab"; public static string FissureSlamPredictionEffect2 = "RoR2/DLC2/FalseSonBoss/FissureSlamPredictionEffect2.prefab"; public static string FissureSlamSwingEffect = "RoR2/DLC2/FalseSonBoss/FissureSlamSwingEffect.prefab"; public static string meshFissureSlamSwingEffect1 = "RoR2/DLC2/FalseSonBoss/meshFissureSlamSwingEffect1.FBX"; public static string meshFissureSlamSwingEffect2 = "RoR2/DLC2/FalseSonBoss/meshFissureSlamSwingEffect2.FBX"; public static string LunarRain = "RoR2/DLC2/FalseSonBoss/LunarRain.prefab"; public static string LunarRainDistanceTest = "RoR2/DLC2/FalseSonBoss/LunarRain_DistanceTest.prefab"; public static string LunarRainExplosionVFX = "RoR2/DLC2/FalseSonBoss/LunarRainExplosionVFX.prefab"; public static string LunarRainExplosionWarningVFX = "RoR2/DLC2/FalseSonBoss/LunarRainExplosionWarningVFX.prefab"; public static string LunarRainFSBSummonWarningVFX = "RoR2/DLC2/FalseSonBoss/LunarRainFSBSummonWarningVFX.prefab"; public static string LunarRainImpactVFX = "RoR2/DLC2/FalseSonBoss/LunarRainImpactVFX.prefab"; public static string LunarRainModel = "RoR2/DLC2/FalseSonBoss/LunarRainModel.prefab"; public static string LunarRainSummonVFX = "RoR2/DLC2/FalseSonBoss/LunarRainSummonVFX.prefab"; public static string mdlFSBLunarRain = "RoR2/DLC2/FalseSonBoss/mdlFSBLunarRain.fbx"; public static string meshLunarRainSummonVFX1 = "RoR2/DLC2/FalseSonBoss/meshLunarRainSummonVFX1.FBX"; public static string meshLunarRainSummonVFX2 = "RoR2/DLC2/FalseSonBoss/meshLunarRainSummonVFX2.FBX"; public static string TaintedOfferingMuzzleEffect = "RoR2/DLC2/FalseSonBoss/TaintedOfferingMuzzleEffect.prefab"; public static string CorruptedPathsBlasEffect = "RoR2/DLC2/FalseSonBoss/CorruptedPathsBlasEffect.prefab"; public static string CorruptedPathsDash = "RoR2/DLC2/FalseSonBoss/CorruptedPathsDash.prefab"; public static string ASHalcyoniteAggravated = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Aggravated.fbx"; public static string ASHalcyoniteDeath = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Death.fbx"; public static string ASHalcyoniteFlinch = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Flinch.fbx"; public static string ASHalcyoniteIdle = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Idle.fbx"; public static string ASHalcyoniteJump = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Jump.fbx"; public static string ASHalcyoniteMovementBackward = "RoR2/DLC2/Halcyonite/AS_Halcyonite_MovementBackward.fbx"; public static string ASHalcyoniteMovementForward = "RoR2/DLC2/Halcyonite/AS_Halcyonite_MovementForward.fbx"; public static string ASHalcyoniteMovementLeft = "RoR2/DLC2/Halcyonite/AS_Halcyonite_MovementLeft.fbx"; public static string ASHalcyoniteMovementRight = "RoR2/DLC2/Halcyonite/AS_Halcyonite_MovementRight.fbx"; public static string ASHalcyonitePrimarySwing = "RoR2/DLC2/Halcyonite/AS_Halcyonite_PrimarySwing.fbx"; public static string ASHalcyonitePrimaryThrust = "RoR2/DLC2/Halcyonite/AS_Halcyonite_PrimaryThrust.fbx"; public static string ASHalcyoniteSecondaryEnter = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Secondary_Enter.fbx"; public static string ASHalcyoniteSecondaryExit = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Secondary_Exit.fbx"; public static string ASHalcyoniteSecondaryFire = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Secondary_Fire.fbx"; public static string ASHalcyoniteSpawn = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Spawn.fbx"; public static string ASHalcyoniteStunned = "RoR2/DLC2/Halcyonite/AS_Halcyonite_Stunned.fbx"; public static string ASHalcyoniteUtilityPrepEnter = "RoR2/DLC2/Halcyonite/AS_Halcyonite_UtilityPrep_Enter.fbx"; public static string ASHalcyoniteUtilityPrepExit = "RoR2/DLC2/Halcyonite/AS_Halcyonite_UtilityPrep_Exit.fbx"; public static string ASHalcyoniteUtilityPrepLoop = "RoR2/DLC2/Halcyonite/AS_Halcyonite_UtilityPrep_Loop.fbx"; public static string ChargeTriLaser = "RoR2/DLC2/Halcyonite/ChargeTriLaser.prefab"; public static string ExplosionTriLaser = "RoR2/DLC2/Halcyonite/ExplosionTriLaser.prefab"; public static string HaIcyoniteIdleGlow = "RoR2/DLC2/Halcyonite/HaIcyoniteIdleGlow.prefab"; public static string HalcyoniteBody = "RoR2/DLC2/Halcyonite/HalcyoniteBody.prefab"; public static string HalcyoniteMaster = "RoR2/DLC2/Halcyonite/HalcyoniteMaster.prefab"; public static string LaserTriLaser = "RoR2/DLC2/Halcyonite/LaserTriLaser.prefab"; public static string mdlHalcyonite = "RoR2/DLC2/Halcyonite/mdlHalcyonite.fbx"; public static string MuzzleflashTriLaser = "RoR2/DLC2/Halcyonite/MuzzleflashTriLaser.prefab"; public static string GoldenSwipeHalcyoniteVFX = "RoR2/DLC2/Halcyonite/GoldenSwipeHalcyoniteVFX.prefab"; public static string HitsparkHalcyonite = "RoR2/DLC2/Halcyonite/HitsparkHalcyonite.prefab"; public static string SwingTrailHalcyonite = "RoR2/DLC2/Halcyonite/SwingTrailHalcyonite.prefab"; public static string WhirlWindHalcyoniteVortexVFX = "RoR2/DLC2/Halcyonite/WhirlWindHalcyoniteVortexVFX.prefab"; public static string TracerTriLaser = "RoR2/DLC2/Halcyonite/TracerTriLaser.prefab"; public static string ScorchlingBreach = "RoR2/DLC2/Scorchling/Scorchling_Breach.fbx"; public static string ScorchlingBurrow = "RoR2/DLC2/Scorchling/Scorchling_Burrow.fbx"; public static string ScorchlingFlinch1 = "RoR2/DLC2/Scorchling/Scorchling_Flinch1.fbx"; public static string ScorchlingFlinch2 = "RoR2/DLC2/Scorchling/Scorchling_Flinch2.fbx"; public static string ScorchlingHurt = "RoR2/DLC2/Scorchling/Scorchling_Hurt.fbx"; public static string ScorchlingIdle = "RoR2/DLC2/Scorchling/Scorchling_Idle.fbx"; public static string ScorchlingPitch = "RoR2/DLC2/Scorchling/Scorchling_Pitch.fbx"; public static string ScorchlingSpit = "RoR2/DLC2/Scorchling/Scorchling_Spit.fbx"; public static string ScorchlingYaw = "RoR2/DLC2/Scorchling/Scorchling_Yaw.fbx"; public static string mdlScorchling = "RoR2/DLC2/Scorchling/mdlScorchling.fbx"; public static string mdlScorchlingBreachPile = "RoR2/DLC2/Scorchling/mdlScorchlingBreachPile.fbx"; public static string ScorchlingBody = "RoR2/DLC2/Scorchling/ScorchlingBody.prefab"; public static string ScorchlingMaster = "RoR2/DLC2/Scorchling/ScorchlingMaster.prefab"; public static string VFXScorchlingBreachExplosion = "RoR2/DLC2/Scorchling/VFXScorchlingBreachExplosion.prefab"; public static string VFXScorchlingCracks = "RoR2/DLC2/Scorchling/VFXScorchlingCracks.prefab"; public static string VFXScorchlingExplosionImpact = "RoR2/DLC2/Scorchling/VFXScorchlingExplosionImpact.prefab"; public static string LavaBombHeatOrbGhost = "RoR2/DLC2/Scorchling/LavaBombHeatOrbGhost.prefab"; public static string LavaBombHeatOrbProjectile = "RoR2/DLC2/Scorchling/LavaBombHeatOrbProjectile.prefab"; public static string ScorchlingBombGhost = "RoR2/DLC2/Scorchling/ScorchlingBombGhost.prefab"; public static string ScorchlingBombProjectile = "RoR2/DLC2/Scorchling/ScorchlingBombProjectile.prefab"; public static string VFXScorchlingBombExplosion = "RoR2/DLC2/Scorchling/VFXScorchlingBombExplosion.prefab"; public static string VFXScorchlingMuzzleflash = "RoR2/DLC2/Scorchling/VFXScorchlingMuzzleflash.prefab"; public static string VFXScorchlingBurrowing = "RoR2/DLC2/Scorchling/VFXScorchlingBurrowing.prefab"; public static string VFXScorchlingDeathExplosion = "RoR2/DLC2/Scorchling/VFXScorchlingDeathExplosion.prefab"; public static string VFXScorchlingEnterBurrow = "RoR2/DLC2/Scorchling/VFXScorchlingEnterBurrow.prefab"; public static string ASSeekerAimPitch = "RoR2/DLC2/Seeker/AS_Seeker_AimPitch.fbx"; public static string ASSeekerAimYaw = "RoR2/DLC2/Seeker/AS_Seeker_AimYaw.fbx"; public static string ASSeekerFlinchVariant1 = "RoR2/DLC2/Seeker/AS_Seeker_FlinchVariant1.fbx"; public static string ASSeekerFlinchVariant2 = "RoR2/DLC2/Seeker/AS_Seeker_FlinchVariant2.fbx"; public static string ASSeekerFlinchVariant3 = "RoR2/DLC2/Seeker/AS_Seeker_FlinchVariant3.fbx"; public static string ASSeekerIdle = "RoR2/DLC2/Seeker/AS_Seeker_Idle.fbx"; public static string ASSeekerJump = "RoR2/DLC2/Seeker/AS_Seeker_Jump.fbx"; public static string ASSeekerRunBackward = "RoR2/DLC2/Seeker/AS_Seeker_RunBackward.fbx"; public static string ASSeekerRunForward = "RoR2/DLC2/Seeker/AS_Seeker_RunForward.fbx"; public static string ASSeekerRunLeft = "RoR2/DLC2/Seeker/AS_Seeker_RunLeft.fbx"; public static string ASSeekerRunRight = "RoR2/DLC2/Seeker/AS_Seeker_RunRight.fbx"; public static string ASSeekerRunToIdle = "RoR2/DLC2/Seeker/AS_Seeker_RunToIdle.fbx"; public static string ASSeekerSprintBackward = "RoR2/DLC2/Seeker/AS_Seeker_SprintBackward.fbx"; public static string ASSeekerSprintForward = "RoR2/DLC2/Seeker/AS_Seeker_SprintForward.fbx"; public static string ASSeekerSprintLeft = "RoR2/DLC2/Seeker/AS_Seeker_SprintLeft.fbx"; public static string ASSeekerSprintRight = "RoR2/DLC2/Seeker/AS_Seeker_SprintRight.fbx"; public static string ASSeekerSprintToIdle = "RoR2/DLC2/Seeker/AS_Seeker_SprintToIdle.fbx"; public static string ASSeekerLobbyIdleAlt2 = "RoR2/DLC2/Seeker/AS_Seeker_Lobby_IdleAlt2.fbx"; public static string ASSeekerLobbyEntry = "RoR2/DLC2/Seeker/AS_Seeker_LobbyEntry.fbx"; public static string ASSeekerLobbyIdle = "RoR2/DLC2/Seeker/AS_Seeker_LobbyIdle.fbx"; public static string ASSeekerLobbyIdleAlt = "RoR2/DLC2/Seeker/AS_Seeker_LobbyIdleAlt.fbx"; public static string ASSeekerPrimaryFinisher = "RoR2/DLC2/Seeker/AS_Seeker_PrimaryFinisher.fbx"; public static string ASSeekerPrimaryLeft = "RoR2/DLC2/Seeker/AS_Seeker_PrimaryLeft.fbx"; public static string ASSeekerPrimaryRight = "RoR2/DLC2/Seeker/AS_Seeker_PrimaryRight.fbx"; public static string ASSeekerSecondary = "RoR2/DLC2/Seeker/AS_Seeker_Secondary.fbx"; public static string ASSeekerSecondaryAlt = "RoR2/DLC2/Seeker/AS_Seeker_SecondaryAlt.fbx"; public static string ASSeekerSpecialAlt = "RoR2/DLC2/Seeker/AS_Seeker_SpecialAlt.fbx"; public static string ASSeekerSpecialAltFullbody = "RoR2/DLC2/Seeker/AS_Seeker_SpecialAltFullbody.fbx"; public static string ASSeekerSpecialEnd = "RoR2/DLC2/Seeker/AS_Seeker_SpecialEnd.fbx"; public static string ASSeekerSpecialIdle = "RoR2/DLC2/Seeker/AS_Seeker_SpecialIdle.fbx"; public static string ASSeekerSpecialStart = "RoR2/DLC2/Seeker/AS_Seeker_SpecialStart.fbx"; public static string ASSeekerSpecialSuccess = "RoR2/DLC2/Seeker/AS_Seeker_SpecialSuccess.fbx"; public static string ASSeekerUtilityEnd = "RoR2/DLC2/Seeker/AS_Seeker_UtilityEnd.fbx"; public static string ASSeekerUtilityStart = "RoR2/DLC2/Seeker/AS_Seeker_UtilityStart.fbx"; public static string mdlSeekerLotusAnim = "RoR2/DLC2/Seeker/mdlSeekerLotus_Anim.fbx"; public static string SeekerDisplay = "RoR2/DLC2/Seeker/SeekerDisplay.prefab"; public static string mdlSeeker = "RoR2/DLC2/Seeker/mdlSeeker.fbx"; public static string mdlSeekerFist = "RoR2/DLC2/Seeker/mdlSeekerFist.fbx"; public static string mdlSeekerLotus = "RoR2/DLC2/Seeker/mdlSeekerLotus.fbx"; public static string mdlSeekerLotusprefab = "RoR2/DLC2/Seeker/mdlSeekerLotus_prefab.prefab"; public static string mdlSeekerPalm = "RoR2/DLC2/Seeker/mdlSeekerPalm.fbx"; public static string mdlSeekerSpiritPunchCore = "RoR2/DLC2/Seeker/mdlSeekerSpiritPunchCore.fbx"; public static string mdlSeekerAlt = "RoR2/DLC2/Seeker/mdlSeekerAlt.fbx"; public static string SeekerBody = "RoR2/DLC2/Seeker/SeekerBody.prefab"; public static string SeekerMonsterMaster = "RoR2/DLC2/Seeker/SeekerMonsterMaster.prefab"; public static string SoulSearchExplosionVFX = "RoR2/DLC2/Seeker/SoulSearchExplosionVFX.prefab"; public static string SoulSearchGhost = "RoR2/DLC2/Seeker/SoulSearchGhost.prefab"; public static string SoulSearchProjectile = "RoR2/DLC2/Seeker/SoulSearchProjectile.prefab"; public static string SpiritPunchDissipateVFX = "RoR2/DLC2/Seeker/SpiritPunchDissipateVFX.prefab"; public static string SpiritPunchFinisherDissipateVFX = "RoR2/DLC2/Seeker/SpiritPunchFinisherDissipateVFX.prefab"; public static string SpiritPunchFinisherGhost = "RoR2/DLC2/Seeker/SpiritPunchFinisherGhost.prefab"; public static string SpiritPunchFinisherProjectile = "RoR2/DLC2/Seeker/SpiritPunchFinisherProjectile.prefab"; public static string SpiritPunchGhost = "RoR2/DLC2/Seeker/SpiritPunchGhost.prefab"; public static string SpiritPunchMuzzleFlashVFX = "RoR2/DLC2/Seeker/SpiritPunchMuzzleFlashVFX.prefab"; public static string SpiritPunchOmniImpactVFX = "RoR2/DLC2/Seeker/SpiritPunchOmniImpactVFX.prefab"; public static string SpiritPunchProjectile = "RoR2/DLC2/Seeker/SpiritPunchProjectile.prefab"; public static string RevitalizeBuffConsumedVFX = "RoR2/DLC2/Seeker/RevitalizeBuff/RevitalizeBuffConsumedVFX.prefab"; public static string mdlCylinderVertexFade = "RoR2/DLC2/Seeker/mdlCylinderVertexFade.fbx"; public static string SoulSpiralGhost = "RoR2/DLC2/Seeker/SoulSpiralGhost.prefab"; public static string SoulSpiralMuzzleflashVFX = "RoR2/DLC2/Seeker/SoulSpiralMuzzleflashVFX.prefab"; public static string SoulSpiralProjectile = "RoR2/DLC2/Seeker/SoulSpiralProjectile.prefab"; public static string SoulSpiralWhirlWind = "RoR2/DLC2/Seeker/SoulSpiralWhirlWind.prefab"; public static string UnseenHandAreaIndicator = "RoR2/DLC2/Seeker/UnseenHandAreaIndicator.prefab"; public static string UnseenHandImpactVFX = "RoR2/DLC2/Seeker/UnseenHandImpactVFX.prefab"; public static string UnseenHandMovingGhost = "RoR2/DLC2/Seeker/UnseenHandMovingGhost.prefab"; public static string UnseenHandMovingProjectile = "RoR2/DLC2/Seeker/UnseenHandMovingProjectile.prefab"; public static string UnseenHandMuzzleflashVFX = "RoR2/DLC2/Seeker/UnseenHandMuzzleflashVFX.prefab"; public static string UnseenHandProjectile = "RoR2/DLC2/Seeker/UnseenHandProjectile.prefab"; public static string UnseenHandVerticalIndicator = "RoR2/DLC2/Seeker/UnseenHandVerticalIndicator.prefab"; public static string UnseenHandWarmupVFX1 = "RoR2/DLC2/Seeker/UnseenHandWarmupVFX 1.prefab"; public static string UnseenHandWarmupVFX = "RoR2/DLC2/Seeker/UnseenHandWarmupVFX.prefab"; public static string mdlSeeker7thGateLotus = "RoR2/DLC2/Seeker/mdlSeeker7thGateLotus.fbx"; public static string Meditate7thGateVFX = "RoR2/DLC2/Seeker/Meditate7thGateVFX.prefab"; public static string MeditateLotusVFX = "RoR2/DLC2/Seeker/MeditateLotusVFX.prefab"; public static string MeditateSuccessVFX = "RoR2/DLC2/Seeker/MeditateSuccessVFX.prefab"; public static string PalmBlastChargedMovingGhost = "RoR2/DLC2/Seeker/PalmBlastChargedMovingGhost.prefab"; public static string PalmBlastChargedOmniImpactVFX = "RoR2/DLC2/Seeker/PalmBlastChargedOmniImpactVFX.prefab"; public static string PalmBlastChargedProjectile = "RoR2/DLC2/Seeker/PalmBlastChargedProjectile.prefab"; public static string PalmBlastMovingGhost = "RoR2/DLC2/Seeker/PalmBlastMovingGhost.prefab"; public static string PalmBlastOmniImpactVFX = "RoR2/DLC2/Seeker/PalmBlastOmniImpactVFX.prefab"; public static string PalmBlastProjectile = "RoR2/DLC2/Seeker/PalmBlastProjectile.prefab"; public static string SeekerAllyOmniImpactVFX = "RoR2/DLC2/Seeker/SeekerAllyOmniImpactVFX.prefab"; public static string SeekerChargedAllyOmniImpactVFX = "RoR2/DLC2/Seeker/SeekerChargedAllyOmniImpactVFX .prefab"; public static string SeekerPalmBlastChargeVFX = "RoR2/DLC2/Seeker/SeekerPalmBlastChargeVFX.prefab"; public static string CycloneDissipateVFX = "RoR2/DLC2/Seeker/CycloneDissipateVFX.prefab"; public static string SeekerCyclonePrefab = "RoR2/DLC2/Seeker/SeekerCyclonePrefab.prefab"; public static string SeekerCycloneTether = "RoR2/DLC2/Seeker/SeekerCycloneTether.prefab"; public static string ReprieveChargedEffect = "RoR2/DLC2/Seeker/SojournVehicle/ReprieveChargedEffect.prefab"; public static string ReprieveVehicle = "RoR2/DLC2/Seeker/SojournVehicle/ReprieveVehicle.prefab"; public static string SojournExplosionVFX = "RoR2/DLC2/Seeker/SojournVehicle/SojournExplosionVFX.prefab"; public static string SojournVehicle = "RoR2/DLC2/Seeker/SojournVehicle/SojournVehicle.prefab"; public static string SojournVehicleDamageEffect = "RoR2/DLC2/Seeker/SojournVehicle/SojournVehicleDamageEffect.prefab"; public static string SeekerCrosshair = "RoR2/DLC2/Seeker/SeekerCrosshair.prefab"; public static string SeekerExitSojournUI = "RoR2/DLC2/Seeker/SeekerExitSojournUI.prefab"; public static string SeekerLotusUI = "RoR2/DLC2/Seeker/SeekerLotusUI.prefab"; public static string SeekerMeditateUI = "RoR2/DLC2/Seeker/SeekerMeditateUI.prefab"; public static string SeekerTrackingIndicator = "RoR2/DLC2/Seeker/SeekerTrackingIndicator.prefab"; public static string mdlVFXDome = "RoR2/DLC2/Common/mdlVFXDome.fbx"; public static string mdlVFXTorus = "RoR2/DLC2/Common/mdlVFXTorus.fbx"; public static string PowerUpDroplet = "RoR2/DLC2/Common/PowerUpDroplet.prefab"; public static string PowerUpGoldOrb = "RoR2/DLC2/Common/PowerUpGoldOrb.prefab"; public static string AffixAurelioniteArmorBubble = "RoR2/DLC2/Elites/EliteAurelionite/AffixAurelioniteArmorBubble.prefab"; public static string AffixAurelioniteCenterProjectile = "RoR2/DLC2/Elites/EliteAurelionite/AffixAurelioniteCenterProjectile.prefab"; public static string AffixAurelionitePreFistGhost = "RoR2/DLC2/Elites/EliteAurelionite/AffixAurelionitePreFistGhost.prefab"; public static string AffixAurelionitePreStrikeProjectile = "RoR2/DLC2/Elites/EliteAurelionite/AffixAurelionitePreStrikeProjectile.prefab"; public static string AffixAurelioniteStrikeEffect = "RoR2/DLC2/Elites/EliteAurelionite/AffixAurelioniteStrikeEffect.prefab"; public static string AffixAurelioniteStrikeEffectCenter = "RoR2/DLC2/Elites/EliteAurelionite/AffixAurelioniteStrikeEffectCenter.prefab"; public static string AurelioniteBlessingVFX = "RoR2/DLC2/Elites/EliteAurelionite/AurelioniteBlessingVFX.prefab"; public static string DisplayEliteAurelioniteEquipment = "RoR2/DLC2/Elites/EliteAurelionite/DisplayEliteAurelioniteEquipment.prefab"; public static string mdlEliteAurelioniteCrown = "RoR2/DLC2/Elites/EliteAurelionite/mdlEliteAurelioniteCrown.fbx"; public static string mdlEliteAurelionitePillarGhost = "RoR2/DLC2/Elites/EliteAurelionite/mdlEliteAurelionitePillarGhost.fbx"; public static string mdlGildedHitboxDonut = "RoR2/DLC2/Elites/EliteAurelionite/mdlGildedHitboxDonut.fbx"; public static string mdlGildedPillarCluster = "RoR2/DLC2/Elites/EliteAurelionite/mdlGildedPillarCluster.fbx"; public static string mdlGildedPillarClusterTwoRings = "RoR2/DLC2/Elites/EliteAurelionite/mdlGildedPillarClusterTwoRings.fbx"; public static string EliteAurelioniteSummonPillarGhost = "RoR2/DLC2/Elites/EliteAurelionite/EliteAurelioniteSummonPillarGhost.prefab"; public static string EliteAurelioniteSummonPillarProjectile = "RoR2/DLC2/Elites/EliteAurelionite/EliteAurelioniteSummonPillarProjectile.prefab"; public static string EliteAurelioniteSummonPillarVFX = "RoR2/DLC2/Elites/EliteAurelionite/EliteAurelioniteSummonPillarVFX.prefab"; public static string GildedMoneyPack = "RoR2/DLC2/Elites/EliteAurelionite/GildedMoneyPack.prefab"; public static string GildedPillar = "RoR2/DLC2/Elites/EliteAurelionite/GildedPillar.prefab"; public static string GildedPillarSpawnImpact = "RoR2/DLC2/Elites/EliteAurelionite/GildedPillarSpawnImpact.prefab"; public static string mdlGildedPillar = "RoR2/DLC2/Elites/EliteAurelionite/mdlGildedPillar.fbx"; public static string PickupAffixAurelionite = "RoR2/DLC2/Elites/EliteAurelionite/PickupAffixAurelionite.prefab"; public static string AffixBeadBodyAttachment = "RoR2/DLC2/Elites/EliteBead/AffixBeadBodyAttachment.prefab"; public static string AffixBeadHeadCrystal = "RoR2/DLC2/Elites/EliteBead/AffixBeadHeadCrystal.prefab"; public static string AffixBeadWard = "RoR2/DLC2/Elites/EliteBead/AffixBeadWard.prefab"; public static string BeadDamageOrbEffect = "RoR2/DLC2/Elites/EliteBead/BeadDamageOrbEffect.prefab"; public static string BeadProjectileTrackingBomb = "RoR2/DLC2/Elites/EliteBead/BeadProjectileTrackingBomb.prefab"; public static string DisplayEliteBeadEquipment = "RoR2/DLC2/Elites/EliteBead/DisplayEliteBeadEquipment.prefab"; public static string DisplayEliteBeadProjectile = "RoR2/DLC2/Elites/EliteBead/DisplayEliteBeadProjectile.prefab"; public static string DisplayEliteBeadSpike = "RoR2/DLC2/Elites/EliteBead/DisplayEliteBeadSpike.prefab"; public static string EliteBeadCrystalExplosionVFX = "RoR2/DLC2/Elites/EliteBead/EliteBeadCrystalExplosionVFX.prefab"; public static string EliteBeadCrystalGhost = "RoR2/DLC2/Elites/EliteBead/EliteBeadCrystalGhost.prefab"; public static string EliteBeadCrystalImpactAbsorbVFX = "RoR2/DLC2/Elites/EliteBead/EliteBeadCrystalImpactAbsorbVFX.prefab"; public static string EliteBeadCrystalLaunchBurstVFX = "RoR2/DLC2/Elites/EliteBead/EliteBeadCrystalLaunchBurstVFX.prefab"; public static string EliteBeadCrystalPreLaunchChargeVFX = "RoR2/DLC2/Elites/EliteBead/EliteBeadCrystalPreLaunchChargeVFX.prefab"; public static string EliteBeadFire = "RoR2/DLC2/Elites/EliteBead/EliteBeadFire.prefab"; public static string mdlEliteBeadProjectile = "RoR2/DLC2/Elites/EliteBead/mdlEliteBeadProjectile.fbx"; public static string mdlEliteBeadProjectileGrowth = "RoR2/DLC2/Elites/EliteBead/mdlEliteBeadProjectileGrowth.fbx"; public static string mdlEliteBeadProjectileTwist = "RoR2/DLC2/Elites/EliteBead/mdlEliteBeadProjectileTwist.fbx"; public static string mdlEliteBeadSpike = "RoR2/DLC2/Elites/EliteBead/mdlEliteBeadSpike.fbx"; public static string EliteBeadProjectile24 = "RoR2/DLC2/Elites/EliteBead/EliteBeadProjectile.prefab"; public static string EliteBeadSpikeGrowthFinalStepVFX = "RoR2/DLC2/Elites/EliteBead/EliteBeadSpikeGrowthFinalStepVFX.prefab"; public static string EliteBeadSpikeGrowthVFX = "RoR2/DLC2/Elites/EliteBead/EliteBeadSpikeGrowthVFX.prefab"; public static string EliteBeadTether = "RoR2/DLC2/Elites/EliteBead/EliteBeadTether.prefab"; public static string LunarRuinCameraCrackle = "RoR2/DLC2/Elites/EliteBead/LunarRuinCameraCrackle.prefab"; public static string PickupAffixBead = "RoR2/DLC2/Elites/EliteBead/PickupAffixBead.prefab"; public static string DisplayHealAndRevive = "RoR2/DLC2/HealAndRevive/DisplayHealAndRevive.prefab"; public static string fxHealAndReviveGold = "RoR2/DLC2/HealAndRevive/fxHealAndReviveGold.prefab"; public static string fxHealAndReviveGreen = "RoR2/DLC2/HealAndRevive/fxHealAndReviveGreen.prefab"; public static string PickupHealAndRevive = "RoR2/DLC2/HealAndRevive/PickupHealAndRevive.prefab"; public static string mdlSeedOfLife = "RoR2/DLC2/HealAndRevive/mdlSeedOfLife.fbx"; public static string SproutOfLife = "RoR2/DLC2/HealAndRevive/SproutOfLife.prefab"; public static string SproutOfLifeBurst = "RoR2/DLC2/HealAndRevive/SproutOfLifeBurst.prefab"; public static string SproutOfLifeHealing = "RoR2/DLC2/HealAndRevive/SproutOfLifeHealing.prefab"; public static string ChefUnlockVFX = "RoR2/DLC2/ChefUnlockVFX.prefab"; public static string ChefWok = "RoR2/DLC2/ChefWok.prefab"; public static string WokCookingVFX = "RoR2/DLC2/WokCookingVFX.prefab"; public static string MeridianEventTrigger = "RoR2/DLC2/EventTrigger/MeridianEventTrigger.prefab"; public static string MeridianEventTriggerCore = "RoR2/DLC2/EventTrigger/MeridianEventTriggerCore.prefab"; public static string Geode = "RoR2/DLC2/Geode.prefab"; public static string GeodeCleanseVFX = "RoR2/DLC2/GeodeCleanseVFX.prefab"; public static string GeodeIdleVFX = "RoR2/DLC2/GeodeIdleVFX.prefab"; public static string GeodeShatterVFX = "RoR2/DLC2/GeodeShatterVFX.prefab"; public static string mdiGeodeIdleVFX1 = "RoR2/DLC2/mdiGeodeIdleVFX1.FBX"; public static string mdlAurelioniteGeode = "RoR2/DLC2/mdlAurelioniteGeode.fbx"; public static string mdlMiniGeode = "RoR2/DLC2/mdlMiniGeode.fbx"; public static string MiniGeodeBody = "RoR2/DLC2/MiniGeodeBody.prefab"; public static string MiniGeodeShatterVFX = "RoR2/DLC2/MiniGeodeShatterVFX.prefab"; public static string MiniGeodeSpawner = "RoR2/DLC2/MiniGeodeSpawner.prefab"; public static string PMDestinationPortal = "RoR2/DLC2/PM DestinationPortal.prefab"; public static string PortalColossus = "RoR2/DLC2/PortalColossus.prefab"; public static string FragmentPotentialPickerPanel = "RoR2/DLC2/FragmentPotentialPickerPanel.prefab"; public static string FragmentPotentialPickup = "RoR2/DLC2/FragmentPotentialPickup.prefab"; public static string GoldSiphonNearbyBodyAttachment = "RoR2/DLC2/GoldSiphonNearbyBodyAttachment.prefab"; public static string GoldSiphonTetherVFX = "RoR2/DLC2/GoldSiphonTetherVFX.prefab"; public static string HalcyonResurfaceVFX = "RoR2/DLC2/HalcyonResurfaceVFX.prefab"; public static string HalcyonShrineTierReachVFX = "RoR2/DLC2/HalcyonShrineTierReachVFX.prefab"; public static string HalcyonGoldEnergyDecal = "RoR2/DLC2/HalcyonGoldEnergyDecal.prefab"; public static string mdlAurelioniteFragment = "RoR2/DLC2/mdlAurelioniteFragment.fbx"; public static string mdlHalcyoniteShrineStorm = "RoR2/DLC2/mdlHalcyoniteShrineStorm.fbx"; public static string mdlHalcyonShrine = "RoR2/DLC2/mdlHalcyonShrine.fbx"; public static string HalcyoniteShrineShardsA = "RoR2/DLC2/HalcyoniteShrineShardsA.prefab"; public static string HalcyoniteShrineShardsB = "RoR2/DLC2/HalcyoniteShrineShardsB.prefab"; public static string HalcyoniteShrineShardsC = "RoR2/DLC2/HalcyoniteShrineShardsC.prefab"; public static string ShrineHalcyonite = "RoR2/DLC2/ShrineHalcyonite.prefab"; public static string mdlShrineColossusAccess = "RoR2/DLC2/mdlShrineColossusAccess.fbx"; public static string ShrineColossusAccess = "RoR2/DLC2/ShrineColossusAccess.prefab"; public static string ShrineColossusAccessPurchaseLock = "RoR2/DLC2/ShrineColossusAccessPurchaseLock.prefab"; public static string mdlPMShrineRocks = "RoR2/DLC2/mdlPMShrineRocks.fbx"; public static string mdlShrineofRebirth = "RoR2/DLC2/mdlShrineofRebirth.fbx"; public static string RebirthIdleVFX = "RoR2/DLC2/RebirthIdleVFX.prefab"; public static string RebirthOnRebirthVFX = "RoR2/DLC2/RebirthOnRebirthVFX.prefab"; public static string RebirthPickerPanel = "RoR2/DLC2/RebirthPickerPanel.prefab"; public static string ShrineRebirth = "RoR2/DLC2/ShrineRebirth.prefab"; public static string ShrineRocks = "RoR2/DLC2/ShrineRocks.prefab"; public static string OnCollisionEventPrefab = "RoR2/DLC2/OnCollisionEventPrefab.prefab"; public static string BolsteringLanternBonusIndicator = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/BolsteringLanternBonusIndicator.prefab"; public static string BolsteringLanternCollider = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/BolsteringLanternCollider.prefab"; public static string DisplayRageCrystal = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/DisplayRageCrystal.prefab"; public static string mdlRageCrystal = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/mdlRageCrystal.fbx"; public static string PickupRageCrystal = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/PickupRageCrystal.prefab"; public static string BossMissileGhost = "RoR2/DLC2/Items/BarrageOnBoss/BossMissileGhost.prefab"; public static string BossMissileImpact = "RoR2/DLC2/Items/BarrageOnBoss/BossMissileImpact.prefab"; public static string BossMissileProjectile = "RoR2/DLC2/Items/BarrageOnBoss/BossMissileProjectile.prefab"; public static string BossMissileStart = "RoR2/DLC2/Items/BarrageOnBoss/BossMissileStart.prefab"; public static string BossMissileWarning = "RoR2/DLC2/Items/BarrageOnBoss/BossMissileWarning.prefab"; public static string DisplayTreasuryDividends = "RoR2/DLC2/Items/BarrageOnBoss/DisplayTreasuryDividends.prefab"; public static string GoldOnStageStartCoinGain = "RoR2/DLC2/Items/BarrageOnBoss/GoldOnStageStartCoinGain.prefab"; public static string mdlWarbondsMissile = "RoR2/DLC2/Items/BarrageOnBoss/mdlWarbondsMissile.fbx"; public static string PickupTreasuryDividends = "RoR2/DLC2/Items/BarrageOnBoss/PickupTreasuryDividends.prefab"; public static string mdlBarrageOnBoss = "RoR2/DLC2/Items/BarrageOnBoss/mdlBarrageOnBoss.fbx"; public static string WarbondsMissile = "RoR2/DLC2/Items/BarrageOnBoss/WarbondsMissile.prefab"; public static string DisplayGrowthNectar = "RoR2/DLC2/Items/BoostAllStats/DisplayGrowthNectar.prefab"; public static string GrowthNectarActiveVFX = "RoR2/DLC2/Items/BoostAllStats/GrowthNectarActiveVFX.prefab"; public static string GrowthNectarBuffPlusVFX = "RoR2/DLC2/Items/BoostAllStats/GrowthNectarBuffPlusVFX.prefab"; public static string GrowthNectarGlowVFX = "RoR2/DLC2/Items/BoostAllStats/GrowthNectarGlowVFX.prefab"; public static string mdlGrowthNectar = "RoR2/DLC2/Items/BoostAllStats/mdlGrowthNectar.fbx"; public static string mdlGrowthNectarDisplay = "RoR2/DLC2/Items/BoostAllStats/mdlGrowthNectarDisplay.fbx"; public static string mdlGrowthNectarFlower = "RoR2/DLC2/Items/BoostAllStats/mdlGrowthNectarFlower.fbx"; public static string mdlGrowthNectarWreath = "RoR2/DLC2/Items/BoostAllStats/mdlGrowthNectarWreath.fbx"; public static string PickupGrowthNectar = "RoR2/DLC2/Items/BoostAllStats/PickupGrowthNectar.prefab"; public static string DelayedDamageHitVFX = "RoR2/DLC2/Items/DelayedDamage/DelayedDamageHitVFX.prefab"; public static string DelayedDamageIndicator = "RoR2/DLC2/Items/DelayedDamage/DelayedDamageIndicator.prefab"; public static string DelayedDamageOverheadShield = "RoR2/DLC2/Items/DelayedDamage/DelayedDamageOverheadShield.prefab"; public static string DisplayDelayedDamage = "RoR2/DLC2/Items/DelayedDamage/DisplayDelayedDamage.prefab"; public static string mdlDelayedDamageIndicator = "RoR2/DLC2/Items/DelayedDamage/mdlDelayedDamageIndicator.FBX"; public static string PickupDelayedDamage = "RoR2/DLC2/Items/DelayedDamage/PickupDelayedDamage.prefab"; public static string WarpedEchoFX = "RoR2/DLC2/Items/DelayedDamage/WarpedEchoFX.prefab"; public static string mdlDelayedDamageOverheadShield = "RoR2/DLC2/Items/DelayedDamage/mdlDelayedDamageOverheadShield.fbx"; public static string mdlWarpedEcho = "RoR2/DLC2/Items/DelayedDamage/mdlWarpedEcho.fbx"; public static string mdlWarpedEchoShield = "RoR2/DLC2/Items/DelayedDamage/mdlWarpedEchoShield.fbx"; public static string WarpedEchoShieldBaseVFX = "RoR2/DLC2/Items/DelayedDamage/WarpedEchoShieldBaseVFX.prefab"; public static string WarpedEchoShieldCore = "RoR2/DLC2/Items/DelayedDamage/WarpedEchoShieldCore.prefab"; public static string WarpedEchoShieldShatterVFX = "RoR2/DLC2/Items/DelayedDamage/WarpedEchoShieldShatterVFX.prefab"; public static string mdlChanceDollDisplay = "RoR2/DLC2/Items/ExtraShrineItem/mdlChanceDollDisplay.fbx"; public static string mdlChanceDollPickup = "RoR2/DLC2/Items/ExtraShrineItem/mdlChanceDollPickup.fbx"; public static string DisplayChanceDoll = "RoR2/DLC2/Items/ExtraShrineItem/DisplayChanceDoll.prefab"; public static string PickupChanceDoll = "RoR2/DLC2/Items/ExtraShrineItem/PickupChanceDoll.prefab"; public static string DisplayPrayerBeads = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/DisplayPrayerBeads.prefab"; public static string ExtraStatsOnLevelUpEffect = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/ExtraStatsOnLevelUpEffect.prefab"; public static string ExtraStatsOnLevelUpScrapEffect = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/ExtraStatsOnLevelUpScrapEffect.prefab"; public static string mdlBeadFX = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/mdlBeadFX.fbx"; public static string mdlExtraStatsOnLevelUp = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/mdlExtraStatsOnLevelUp.fbx"; public static string PickupPrayerBeads = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/PickupPrayerBeads.prefab"; public static string DisplayIncreaseDamageOnMultiKill = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/DisplayIncreaseDamageOnMultiKill.prefab"; public static string DisplayIncreaseDamageOnMultiKillAttachment = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/DisplayIncreaseDamageOnMultiKillAttachment.prefab"; public static string IncreaseDamageOnMultiKillVFX = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/IncreaseDamageOnMultiKillVFX.prefab"; public static string mdlIncreaseDamageOnMultikill = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/mdlIncreaseDamageOnMultikill.fbx"; public static string PickupIncreaseDamageOnMultiKill = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/PickupIncreaseDamageOnMultiKill.prefab"; public static string DisplayIncreasePrimaryDamage = "RoR2/DLC2/Items/IncreasePrimaryDamage/DisplayIncreasePrimaryDamage.prefab"; public static string IncreasePrimaryDamageDisplayCrackle = "RoR2/DLC2/Items/IncreasePrimaryDamage/IncreasePrimaryDamageDisplayCrackle.prefab"; public static string IncreasePrimaryDamageImpact = "RoR2/DLC2/Items/IncreasePrimaryDamage/IncreasePrimaryDamageImpact.prefab"; public static string mdlLuminousShot = "RoR2/DLC2/Items/IncreasePrimaryDamage/mdlLuminousShot.fbx"; public static string PickupIncreasePrimaryDamage = "RoR2/DLC2/Items/IncreasePrimaryDamage/PickupIncreasePrimaryDamage.prefab"; public static string DisplaySonorousEcho = "RoR2/DLC2/Items/ItemDropChanceOnKill/DisplaySonorousEcho.prefab"; public static string PickupSonorousEcho = "RoR2/DLC2/Items/ItemDropChanceOnKill/PickupSonorousEcho.prefab"; public static string mdlSonorousEcho = "RoR2/DLC2/Items/ItemDropChanceOnKill/mdlSonorousEcho.fbx"; public static string DisplayKnockbackFin = "RoR2/DLC2/Items/KnockBackHitEnemies/DisplayKnockbackFin.prefab"; public static string KnockbackFinDebuffVFX = "RoR2/DLC2/Items/KnockBackHitEnemies/KnockbackFinDebuffVFX.prefab"; public static string KnockBackHitEnemiesImpact = "RoR2/DLC2/Items/KnockBackHitEnemies/KnockBackHitEnemiesImpact.prefab"; public static string KnockBackHitEnemiesTrail = "RoR2/DLC2/Items/KnockBackHitEnemies/KnockBackHitEnemiesTrail.prefab"; public static string mdlKnockbackFin = "RoR2/DLC2/Items/KnockBackHitEnemies/mdlKnockbackFin.fbx"; public static string mdlKnockbackFinAnim = "RoR2/DLC2/Items/KnockBackHitEnemies/mdlKnockbackFinAnim.fbx"; public static string PickupKnockbackFin = "RoR2/DLC2/Items/KnockBackHitEnemies/PickupKnockbackFin.prefab"; public static string DisplayLowerPricedChests = "RoR2/DLC2/Items/LowerPricedChests/DisplayLowerPricedChests.prefab"; public static string FollowerLowerPricedChestsDrone = "RoR2/DLC2/Items/LowerPricedChests/FollowerLowerPricedChestsDrone.prefab"; public static string LowerPricedChestsGlow = "RoR2/DLC2/Items/LowerPricedChests/LowerPricedChestsGlow.prefab"; public static string LowerPricedChestsRegenTransformationNotificationPanel = "RoR2/DLC2/Items/LowerPricedChests/LowerPricedChestsRegenTransformationNotificationPanel.prefab"; public static string mdlSaleStar = "RoR2/DLC2/Items/LowerPricedChests/mdlSaleStar.fbx"; public static string mdlSaleStarString = "RoR2/DLC2/Items/LowerPricedChests/mdlSaleStarString.fbx"; public static string PickupSaleStar = "RoR2/DLC2/Items/LowerPricedChests/PickupSaleStar.prefab"; public static string TeleportOnLowHealthRegenTransformationNotificationPanel = "RoR2/DLC2/Items/LowerPricedChests/TeleportOnLowHealthRegenTransformationNotificationPanel.prefab"; public static string DisplayMeteorAttackOnHighDamage = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/DisplayMeteorAttackOnHighDamage.prefab"; public static string PickupMeteorAttackOnHighDamage = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/PickupMeteorAttackOnHighDamage.prefab"; public static string RunicLensMeteor = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/RunicLensMeteor.prefab"; public static string mdlRunicLens = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/mdlRunicLens.fbx"; public static string RunicMeteorStrikeImpact = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/RunicMeteorStrikeImpact.prefab"; public static string RunicMeteorStrikePredictionEffect = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/RunicMeteorStrikePredictionEffect.prefab"; public static string DisplayOnLevelUpFreeUnlock = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/DisplayOnLevelUpFreeUnlock.prefab"; public static string DisplayOnLevelUpFreeUnlockTablet = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/DisplayOnLevelUpFreeUnlockTablet.prefab"; public static string FollowerOnLevelUpFreeUnlockDrone = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/FollowerOnLevelUpFreeUnlockDrone.prefab"; public static string mdlLongstandingSolitude = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/mdlLongstandingSolitude.fbx"; public static string OnLevelUpFreeUnlockDroneFlash = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/OnLevelUpFreeUnlockDroneFlash.prefab"; public static string PickupOnLevelUpFreeUnlock = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/PickupOnLevelUpFreeUnlock.prefab"; public static string DisplayElusiveAntlersLeft = "RoR2/DLC2/Items/SpeedBoostPickup/DisplayElusiveAntlersLeft.prefab"; public static string DisplayElusiveAntlersRight = "RoR2/DLC2/Items/SpeedBoostPickup/DisplayElusiveAntlersRight.prefab"; public static string ElusiveAntlersBuffGrantedVFX = "RoR2/DLC2/Items/SpeedBoostPickup/ElusiveAntlersBuffGrantedVFX.prefab"; public static string ElusiveAntlersBuffPickupVFX = "RoR2/DLC2/Items/SpeedBoostPickup/ElusiveAntlersBuffPickupVFX.prefab"; public static string ElusiveAntlersPickup = "RoR2/DLC2/Items/SpeedBoostPickup/ElusiveAntlersPickup.prefab"; public static string ElusiveAntlersPickupSpawnHintVFX = "RoR2/DLC2/Items/SpeedBoostPickup/ElusiveAntlersPickupSpawnHintVFX.prefab"; public static string ElusiveAntlersPickupSpawnVFX = "RoR2/DLC2/Items/SpeedBoostPickup/ElusiveAntlersPickupSpawnVFX.prefab"; public static string mdlElusiveAntlers = "RoR2/DLC2/Items/SpeedBoostPickup/mdlElusiveAntlers.fbx"; public static string mdlElusiveAntlersBuffBase = "RoR2/DLC2/Items/SpeedBoostPickup/mdlElusiveAntlersBuffBase.fbx"; public static string NegateAttackEffect = "RoR2/DLC2/Items/SpeedBoostPickup/NegateAttackEffect.prefab"; public static string PickupElusiveAntlers = "RoR2/DLC2/Items/SpeedBoostPickup/PickupElusiveAntlers.prefab"; public static string DisplayElectricBoomerang = "RoR2/DLC2/Items/StunAndPierce/DisplayElectricBoomerang.prefab"; public static string mdlElectricBoomerang = "RoR2/DLC2/Items/StunAndPierce/mdlElectricBoomerang.fbx"; public static string PickupElectricBoomerang = "RoR2/DLC2/Items/StunAndPierce/PickupElectricBoomerang.prefab"; public static string StunAndPierceBoomerang = "RoR2/DLC2/Items/StunAndPierce/StunAndPierceBoomerang.prefab"; public static string StunAndPierceBoomerangGhost = "RoR2/DLC2/Items/StunAndPierce/StunAndPierceBoomerangGhost.prefab"; public static string StunAndPierceBoomerangImpact = "RoR2/DLC2/Items/StunAndPierce/StunAndPierceBoomerangImpact.prefab"; public static string DisplayTeleportOnLowHealth = "RoR2/DLC2/Items/TeleportOnLowHealth/DisplayTeleportOnLowHealth.prefab"; public static string PickupTeleportOnLowHealth = "RoR2/DLC2/Items/TeleportOnLowHealth/PickupTeleportOnLowHealth.prefab"; public static string TeleportOnLowHealthExplosion = "RoR2/DLC2/Items/TeleportOnLowHealth/TeleportOnLowHealthExplosion.prefab"; public static string TeleportOnLowHealthVFX = "RoR2/DLC2/Items/TeleportOnLowHealth/TeleportOnLowHealthVFX.prefab"; public static string mdlUnstableTransmitter = "RoR2/DLC2/Items/TeleportOnLowHealth/mdlUnstableTransmitter.fbx"; public static string UnstableTransmitter = "RoR2/DLC2/Items/TeleportOnLowHealth/UnstableTransmitter.prefab"; public static string ChainVineImpact = "RoR2/DLC2/Items/TriggerEnemyDebuffs/ChainVineImpact.prefab"; public static string ChainVineOrbEffect = "RoR2/DLC2/Items/TriggerEnemyDebuffs/ChainVineOrbEffect.prefab"; public static string DisplayNoxiousThorn = "RoR2/DLC2/Items/TriggerEnemyDebuffs/DisplayNoxiousThorn.prefab"; public static string NoxiousThornExplosion = "RoR2/DLC2/Items/TriggerEnemyDebuffs/NoxiousThornExplosion.prefab"; public static string mdlNoxiousThorn = "RoR2/DLC2/Items/TriggerEnemyDebuffs/mdlNoxiousThorn.fbx"; public static string PickupNoxiousThorn = "RoR2/DLC2/Items/TriggerEnemyDebuffs/PickupNoxiousThorn.prefab"; public static string HRBuildingBase = "RoR2/DLC2/HR_Building_Base.fbx"; public static string HRBuildingbaseHalf = "RoR2/DLC2/HR_Building_base_Half.fbx"; public static string HRBuildingBaseTunnel = "RoR2/DLC2/HR_Building_Base_Tunnel.fbx"; public static string HRColumnCenter = "RoR2/DLC2/HR_Column_Center.fbx"; public static string HRColumnTop = "RoR2/DLC2/HR_Column_Top.fbx"; public static string HRRoofRimFull = "RoR2/DLC2/HR_RoofRim_Full.fbx"; public static string HRRoofRimQuarter = "RoR2/DLC2/HR_RoofRim_Quarter.fbx"; public static string HRRoomfRimHalf = "RoR2/DLC2/HR_RoomfRim_Half.fbx"; public static string HRStairsHalf = "RoR2/DLC2/HR_Stairs_Half.fbx"; public static string HRStairsQuarter = "RoR2/DLC2/HR_Stairs_Quarter.fbx"; public static string Artifactworld01DioramaDisplay = "RoR2/DLC2/artifactworld01/Artifactworld01DioramaDisplay.prefab"; public static string mdlAW1Islands = "RoR2/DLC2/artifactworld01/Assets/mdlAW1_Islands.fbx"; public static string mdlAWPillar = "RoR2/DLC2/artifactworld01/Assets/mdlAWPillar.fbx"; public static string mdlAWWaterfall = "RoR2/DLC2/artifactworld01/Assets/mdlAWWaterfall.fbx"; public static string spmBonsai1V2Collision = "RoR2/DLC2/artifactworld01/Assets/spmBonsai1V2_Collision.fbx"; public static string AW1Island01 = "RoR2/DLC2/artifactworld01/Assets/AW1_Island01.prefab"; public static string AW1Island02 = "RoR2/DLC2/artifactworld01/Assets/AW1_Island02.prefab"; public static string AW1Island03 = "RoR2/DLC2/artifactworld01/Assets/AW1_Island03.prefab"; public static string AW1Island04 = "RoR2/DLC2/artifactworld01/Assets/AW1_Island04.prefab"; public static string AW1Island05 = "RoR2/DLC2/artifactworld01/Assets/AW1_Island05.prefab"; public static string AW1Island06 = "RoR2/DLC2/artifactworld01/Assets/AW1_Island06.prefab"; public static string AW1Island07 = "RoR2/DLC2/artifactworld01/Assets/AW1_Island07.prefab"; public static string AW1Island08 = "RoR2/DLC2/artifactworld01/Assets/AW1_Island08.prefab"; public static string AWPillar = "RoR2/DLC2/artifactworld01/Assets/AWPillar.prefab"; public static string AWWaterfall = "RoR2/DLC2/artifactworld01/Assets/AWWaterfall.prefab"; public static string Artifactworld02DioramaDisplay = "RoR2/DLC2/artifactworld02/Artifactworld02DioramaDisplay.prefab"; public static string mdlAW02EelSkeleton = "RoR2/DLC2/artifactworld02/Assets/mdlAW02_EelSkeleton.fbx"; public static string mdlAW02Terrain = "RoR2/DLC2/artifactworld02/Assets/mdlAW02_Terrain.fbx"; public static string mdlAW02Dune = "RoR2/DLC2/artifactworld02/Assets/mdlAW02Dune.fbx"; public static string AW02A = "RoR2/DLC2/artifactworld02/Assets/AW02_A.prefab"; public static string AW02B = "RoR2/DLC2/artifactworld02/Assets/AW02_B.prefab"; public static string AW02C = "RoR2/DLC2/artifactworld02/Assets/AW02_C.prefab"; public static string AW02D = "RoR2/DLC2/artifactworld02/Assets/AW02_D.prefab"; public static string AW02EelSkeletonSkullBottom = "RoR2/DLC2/artifactworld02/Assets/AW02_EelSkeletonSkull_Bottom.prefab"; public static string AW02EelSkeletonSkullTop = "RoR2/DLC2/artifactworld02/Assets/AW02_EelSkeletonSkull_Top.prefab"; public static string AW02Sandpile = "RoR2/DLC2/artifactworld02/Assets/AW02_Sandpile.prefab"; public static string AW2Dune = "RoR2/DLC2/artifactworld02/Assets/AW2Dune.prefab"; public static string AW2Pebble = "RoR2/DLC2/artifactworld02/Assets/AW2Pebble.prefab"; public static string AW2Pillar = "RoR2/DLC2/artifactworld02/Assets/AW2Pillar.prefab"; public static string AW2Rock = "RoR2/DLC2/artifactworld02/Assets/AW2Rock.prefab"; public static string Artifactworld03DioramaDisplay = "RoR2/DLC2/artifactworld03/Artifactworld03DioramaDisplay.prefab"; public static string mdlAW03Barriers = "RoR2/DLC2/artifactworld03/Assets/mdlAW03Barriers.fbx"; public static string mdlAW03Connectors = "RoR2/DLC2/artifactworld03/Assets/mdlAW03Connectors.fbx"; public static string mdlAW03RoundedPlatform = "RoR2/DLC2/artifactworld03/Assets/mdlAW03RoundedPlatform.fbx"; public static string AWConnector20 = "RoR2/DLC2/artifactworld03/Assets/AWConnector.prefab"; public static string AWConnectorAngle = "RoR2/DLC2/artifactworld03/Assets/AWConnectorAngle.prefab"; public static string AWConnectorMid = "RoR2/DLC2/artifactworld03/Assets/AWConnectorMid.prefab"; public static string AWConnectorRing = "RoR2/DLC2/artifactworld03/Assets/AWConnectorRing.prefab"; public static string AWConnectorTop = "RoR2/DLC2/artifactworld03/Assets/AWConnectorTop.prefab"; public static string AW03Crystal = "RoR2/DLC2/artifactworld03/Assets/AW03Crystal.prefab"; public static string AW03FloatingCube = "RoR2/DLC2/artifactworld03/Assets/AW03FloatingCube.prefab"; public static string AW03Platform2Bar = "RoR2/DLC2/artifactworld03/Assets/AW03Platform2Bar.prefab"; public static string AW03PlatformBar = "RoR2/DLC2/artifactworld03/Assets/AW03PlatformBar.prefab"; public static string AW03PlatformBarrier = "RoR2/DLC2/artifactworld03/Assets/AW03PlatformBarrier.prefab"; public static string AW03PlatformBarrierSolidWood = "RoR2/DLC2/artifactworld03/Assets/AW03PlatformBarrierSolidWood.prefab"; public static string AW03PlatformBarrierWood = "RoR2/DLC2/artifactworld03/Assets/AW03PlatformBarrierWood.prefab"; public static string AW03Ring = "RoR2/DLC2/artifactworld03/Assets/AW03Ring.prefab"; public static string mdlBHPillarVineB = "RoR2/DLC2/habitat/Assets/mdlBHPillarVineB.fbx"; public static string mdlBHStatue = "RoR2/DLC2/habitat/Assets/mdlBHStatue.fbx"; public static string mdlBHStatueopt = "RoR2/DLC2/habitat/Assets/mdlBHStatue_opt.fbx"; public static string mdlBHStatueB = "RoR2/DLC2/habitat/Assets/mdlBHStatueB.fbx"; public static string BHGrass = "RoR2/DLC2/habitat/Assets/BHGrass.spm"; public static string BHGrassopt = "RoR2/DLC2/habitat/Assets/BHGrass_opt.spm"; public static string BHDistantTree = "RoR2/DLC2/habitat/Assets/BHDistantTree.spm"; public static string BHDistantTreeopt = "RoR2/DLC2/habitat/Assets/BHDistantTree_opt.spm"; public static string BHDistantTreeP = "RoR2/DLC2/habitat/Assets/BHDistantTreeP.spm"; public static string BHDistantTreePopt = "RoR2/DLC2/habitat/Assets/BHDistantTreeP_opt.spm"; public static string BHDistantTreePWCollider = "RoR2/DLC2/habitat/Assets/BHDistantTreeP_WCollider.prefab"; public static string BHDistantTreePWCollideropt = "RoR2/DLC2/habitat/Assets/BHDistantTreeP_WCollider_opt.prefab"; public static string mdlBHPalmCollision = "RoR2/DLC2/habitat/Assets/mdlBHPalm_Collision.fbx"; public static string HBShrub = "RoR2/DLC2/habitat/Assets/HBShrub.spm"; public static string HBShrubopt = "RoR2/DLC2/habitat/Assets/HBShrub_opt.spm"; public static string meshHBSchrubB = "RoR2/DLC2/habitat/Assets/meshHBSchrubB.fbx"; public static string SchrubB = "RoR2/DLC2/habitat/Assets/SchrubB.prefab"; public static string mdlBHDiorama = "RoR2/DLC2/habitat/Assets/mdlBHDiorama.fbx"; public static string mdlBHDistantTerrain = "RoR2/DLC2/habitat/Assets/mdlBHDistantTerrain.fbx"; public static string mdlBHDomes = "RoR2/DLC2/habitat/Assets/mdlBHDomes.fbx"; public static string mdlBHFlower = "RoR2/DLC2/habitat/Assets/mdlBHFlower.fbx"; public static string mdlBHFlowerThorn = "RoR2/DLC2/habitat/Assets/mdlBHFlowerThorn.fbx"; public static string mdlBHFruit = "RoR2/DLC2/habitat/Assets/mdlBHFruit.fbx"; public static string mdlBHHives = "RoR2/DLC2/habitat/Assets/mdlBHHives.fbx"; public static string mdlBHHiveSplash = "RoR2/DLC2/habitat/Assets/mdlBHHiveSplash.fbx"; public static string mdlBHLeafTunnel = "RoR2/DLC2/habitat/Assets/mdlBHLeafTunnel.fbx"; public static string mdlBHLilyPad = "RoR2/DLC2/habitat/Assets/mdlBHLilyPad.fbx"; public static string mdlBHNests = "RoR2/DLC2/habitat/Assets/mdlBHNests.fbx"; public static string mdlBHPlatforms = "RoR2/DLC2/habitat/Assets/mdlBHPlatforms.fbx"; public static string mdlBHTerrainVines = "RoR2/DLC2/habitat/Assets/mdlBHTerrainVines.fbx"; public static string meshHabitatDioramaBase = "RoR2/DLC2/habitat/Assets/meshHabitatDioramaBase.fbx"; public static string BHDistantMountain = "RoR2/DLC2/habitat/Assets/BHDistantMountain.prefab"; public static string BHDistantTreeTrunk = "RoR2/DLC2/habitat/Assets/BHDistantTreeTrunk.prefab"; public static string BHDomeDistant = "RoR2/DLC2/habitat/Assets/BHDomeDistant.prefab"; public static string BHDomeGold = "RoR2/DLC2/habitat/Assets/BHDomeGold.prefab"; public static string BHDomes = "RoR2/DLC2/habitat/Assets/BHDomes.prefab"; public static string BHDomeTG = "RoR2/DLC2/habitat/Assets/BHDomeTG.prefab"; public static string BHFlower = "RoR2/DLC2/habitat/Assets/BHFlower.prefab"; public static string BHFruitBig = "RoR2/DLC2/habitat/Assets/BHFruitBig.prefab"; public static string BHFruitSmall = "RoR2/DLC2/habitat/Assets/BHFruitSmall.prefab"; public static string BHGodRay = "RoR2/DLC2/habitat/Assets/BHGodRay.prefab"; public static string BHHive = "RoR2/DLC2/habitat/Assets/BHHive.prefab"; public static string BHHiveClosed = "RoR2/DLC2/habitat/Assets/BHHiveClosed.prefab"; public static string BHHiveDecal = "RoR2/DLC2/habitat/Assets/BHHiveDecal.prefab"; public static string BHHiveSplash = "RoR2/DLC2/habitat/Assets/BHHiveSplash.prefab"; public static string BHHiveWall = "RoR2/DLC2/habitat/Assets/BHHiveWall.prefab"; public static string BHLeafTunnel = "RoR2/DLC2/habitat/Assets/BHLeafTunnel.prefab"; public static string BHLeafTunnelLarge = "RoR2/DLC2/habitat/Assets/BHLeafTunnelLarge.prefab"; public static string BHLeafWalkway = "RoR2/DLC2/habitat/Assets/BHLeafWalkway.prefab"; public static string BHLeafWalkwayTGD = "RoR2/DLC2/habitat/Assets/BHLeafWalkwayTG_D.prefab"; public static string BHLeafWalkwayTGG = "RoR2/DLC2/habitat/Assets/BHLeafWalkwayTG_G.prefab"; public static string BHLilyPad = "RoR2/DLC2/habitat/Assets/BHLilyPad.prefab"; public static string BHMoreDistantMountain = "RoR2/DLC2/habitat/Assets/BHMoreDistantMountain.prefab"; public static string BHMossPile = "RoR2/DLC2/habitat/Assets/BHMossPile.prefab"; public static string BHNestA = "RoR2/DLC2/habitat/Assets/BHNestA.prefab"; public static string BHNestB = "RoR2/DLC2/habitat/Assets/BHNestB.prefab"; public static string BHNestC = "RoR2/DLC2/habitat/Assets/BHNestC.prefab"; public static string BHPebbleTrim = "RoR2/DLC2/habitat/Assets/BHPebbleTrim.prefab"; public static string BHPebbleWood = "RoR2/DLC2/habitat/Assets/BHPebbleWood.prefab"; public static string BHPillarVine = "RoR2/DLC2/habitat/Assets/BHPillarVine.prefab"; public static string BHPillarVineB = "RoR2/DLC2/habitat/Assets/BHPillarVineB.prefab"; public static string BHPlatformDistant = "RoR2/DLC2/habitat/Assets/BHPlatformDistant.prefab"; public static string BHPlatformI = "RoR2/DLC2/habitat/Assets/BHPlatformI.prefab"; public static string BHPlatformPillar = "RoR2/DLC2/habitat/Assets/BHPlatformPillar.prefab"; public static string BHPlatformPillarDistant = "RoR2/DLC2/habitat/Assets/BHPlatformPillarDistant.prefab"; public static string BHPlatforms = "RoR2/DLC2/habitat/Assets/BHPlatforms.prefab"; public static string BHPlatformSilhouette = "RoR2/DLC2/habitat/Assets/BHPlatformSilhouette.prefab"; public static string BHStatue = "RoR2/DLC2/habitat/Assets/BHStatue.prefab"; public static string BHStatueB = "RoR2/DLC2/habitat/Assets/BHStatueB.prefab"; public static string BHTerrainVine = "RoR2/DLC2/habitat/Assets/BHTerrainVine.prefab"; public static string BHTerrainVineTGA = "RoR2/DLC2/habitat/Assets/BHTerrainVineTG_A.prefab"; public static string BHTerrainVineTGB = "RoR2/DLC2/habitat/Assets/BHTerrainVineTG_B.prefab"; public static string BHTerrainVineTGC = "RoR2/DLC2/habitat/Assets/BHTerrainVineTG_C.prefab"; public static string BHTerrainVineTGD = "RoR2/DLC2/habitat/Assets/BHTerrainVineTG_D.prefab"; public static string BHTerrainVineTGE = "RoR2/DLC2/habitat/Assets/BHTerrainVineTG_E.prefab"; public static string BHTerrainVineTGF = "RoR2/DLC2/habitat/Assets/BHTerrainVineTG_F.prefab"; public static string BHTerrainVineTGG = "RoR2/DLC2/habitat/Assets/BHTerrainVineTG_G.prefab"; public static string ColossusGoldEnergyDecal = "RoR2/DLC2/habitat/Assets/ColossusGoldEnergyDecal.prefab"; public static string ColossusGoldEnergyDecalopt = "RoR2/DLC2/habitat/Assets/ColossusGoldEnergyDecal_opt.prefab"; public static string mdlBHSeedPod = "RoR2/DLC2/habitat/Assets/mdlBHSeedPod.fbx"; public static string mdlBHSeedPodVine = "RoR2/DLC2/habitat/Assets/mdlBHSeedPodVine.fbx"; public static string BHDioramaDisplay = "RoR2/DLC2/habitat/BHDioramaDisplay.prefab"; public static string WeatherHabitat = "RoR2/DLC2/habitat/Weather, Habitat.prefab"; public static string BHFallGrass = "RoR2/DLC2/habitatfall/Assets/BHFallGrass.spm"; public static string BHFallGrassopt = "RoR2/DLC2/habitatfall/Assets/BHFallGrass_opt.spm"; public static string BHFallDistantTree = "RoR2/DLC2/habitatfall/Assets/BHFallDistantTree.spm"; public static string BHFallDistantTreeopt = "RoR2/DLC2/habitatfall/Assets/BHFallDistantTree_opt.spm"; public static string HBFallShrub = "RoR2/DLC2/habitatfall/Assets/HBFallShrub.spm"; public static string HBFallShrubopt = "RoR2/DLC2/habitatfall/Assets/HBFallShrub_opt.spm"; public static string HBFallShrubB = "RoR2/DLC2/habitatfall/Assets/HBFallShrubB.prefab"; public static string meshHBFallShrubB = "RoR2/DLC2/habitatfall/Assets/meshHBFallShrubB.fbx"; public static string mdlBHFallFlower = "RoR2/DLC2/habitatfall/Assets/mdlBHFallFlower.fbx"; public static string mdlBHFallPlatforms = "RoR2/DLC2/habitatfall/Assets/mdlBHFallPlatforms.fbx"; public static string mdlBHFallStatue = "RoR2/DLC2/habitatfall/Assets/mdlBHFallStatue.fbx"; public static string mdlBHFallWalkwaySingle = "RoR2/DLC2/habitatfall/Assets/mdlBHFallWalkwaySingle.fbx"; public static string mdlBHFallWalkwayTGD = "RoR2/DLC2/habitatfall/Assets/mdlBHFallWalkwayTG_D.fbx"; public static string mdlBHMeridianView = "RoR2/DLC2/habitatfall/Assets/mdlBHMeridianView.fbx"; public static string mdlBHShrooms = "RoR2/DLC2/habitatfall/Assets/mdlBHShrooms.fbx"; public static string BHFallDistantMountain = "RoR2/DLC2/habitatfall/Assets/BHFallDistantMountain.prefab"; public static string BHFallDistantTreeTrunk = "RoR2/DLC2/habitatfall/Assets/BHFallDistantTreeTrunk.prefab"; public static string BHFallDomeDistant = "RoR2/DLC2/habitatfall/Assets/BHFallDomeDistant.prefab"; public static string BHFallDomeGold = "RoR2/DLC2/habitatfall/Assets/BHFallDomeGold.prefab"; public static string BHFallDomes = "RoR2/DLC2/habitatfall/Assets/BHFallDomes.prefab"; public static string BHFallDomeTG = "RoR2/DLC2/habitatfall/Assets/BHFallDomeTG.prefab"; public static string BHFallFlower = "RoR2/DLC2/habitatfall/Assets/BHFallFlower.prefab"; public static string BHFallGodRay = "RoR2/DLC2/habitatfall/Assets/BHFallGodRay.prefab"; public static string BHFallHive = "RoR2/DLC2/habitatfall/Assets/BHFallHive.prefab"; public static string BHFallHiveClosed = "RoR2/DLC2/habitatfall/Assets/BHFallHiveClosed.prefab"; public static string BHFallHiveDecal = "RoR2/DLC2/habitatfall/Assets/BHFallHiveDecal.prefab"; public static string BHFallHiveSplash = "RoR2/DLC2/habitatfall/Assets/BHFallHiveSplash.prefab"; public static string BHFallHiveWall = "RoR2/DLC2/habitatfall/Assets/BHFallHiveWall.prefab"; public static string BHFallMoreDistantMountain = "RoR2/DLC2/habitatfall/Assets/BHFallMoreDistantMountain.prefab"; public static string BHFallMossPile = "RoR2/DLC2/habitatfall/Assets/BHFallMossPile.prefab"; public static string BHFallMushroomDrips = "RoR2/DLC2/habitatfall/Assets/BHFallMushroomDrips.prefab"; public static string BHFallPebbleTrim = "RoR2/DLC2/habitatfall/Assets/BHFallPebbleTrim.prefab"; public static string BHFallPebbleWood = "RoR2/DLC2/habitatfall/Assets/BHFallPebbleWood.prefab"; public static string BHFallPillarVine = "RoR2/DLC2/habitatfall/Assets/BHFallPillarVine.prefab"; public static string BHFallPlatformDistant = "RoR2/DLC2/habitatfall/Assets/BHFallPlatformDistant.prefab"; public static string BHFallPlatformI = "RoR2/DLC2/habitatfall/Assets/BHFallPlatformI.prefab"; public static string BHFallPlatformPillar = "RoR2/DLC2/habitatfall/Assets/BHFallPlatformPillar.prefab"; public static string BHFallPlatformPillarDistant = "RoR2/DLC2/habitatfall/Assets/BHFallPlatformPillarDistant.prefab"; public static string BHFallPlatforms = "RoR2/DLC2/habitatfall/Assets/BHFallPlatforms.prefab"; public static string BHFallPlatformSilhouette = "RoR2/DLC2/habitatfall/Assets/BHFallPlatformSilhouette.prefab"; public static string BHFallShroomTunnel = "RoR2/DLC2/habitatfall/Assets/BHFallShroomTunnel.prefab"; public static string BHFallShroomTunnelLarge = "RoR2/DLC2/habitatfall/Assets/BHFallShroomTunnelLarge.prefab"; public static string BHFallStatue = "RoR2/DLC2/habitatfall/Assets/BHFallStatue.prefab"; public static string BHFallStatueB = "RoR2/DLC2/habitatfall/Assets/BHFallStatueB.prefab"; public static string BHFallTerrainVine = "RoR2/DLC2/habitatfall/Assets/BHFallTerrainVine.prefab"; public static string BHFallTerrainVineTGA = "RoR2/DLC2/habitatfall/Assets/BHFallTerrainVineTG_A.prefab"; public static string BHFallTerrainVineTGB = "RoR2/DLC2/habitatfall/Assets/BHFallTerrainVineTG_B.prefab"; public static string BHFallTerrainVineTGC = "RoR2/DLC2/habitatfall/Assets/BHFallTerrainVineTG_C.prefab"; public static string BHFallTerrainVineTGD = "RoR2/DLC2/habitatfall/Assets/BHFallTerrainVineTG_D.prefab"; public static string BHFallTerrainVineTGE = "RoR2/DLC2/habitatfall/Assets/BHFallTerrainVineTG_E.prefab"; public static string BHFallTerrainVineTGF = "RoR2/DLC2/habitatfall/Assets/BHFallTerrainVineTG_F.prefab"; public static string BHFallTerrainVineTGG = "RoR2/DLC2/habitatfall/Assets/BHFallTerrainVineTG_G.prefab"; public static string BHFallWalkwaySingle = "RoR2/DLC2/habitatfall/Assets/BHFallWalkwaySingle.prefab"; public static string BHMeridianView = "RoR2/DLC2/habitatfall/Assets/BHMeridianView.prefab"; public static string BHFallDioramaDisplay = "RoR2/DLC2/habitatfall/BHFallDioramaDisplay.prefab"; public static string WeatherHabitatFall = "RoR2/DLC2/habitatfall/Weather, HabitatFall.prefab"; public static string mdlHRAddOns = "RoR2/DLC2/helminthroost/Assets/mdlHRAddOns.fbx"; public static string mdlHRArchitecture = "RoR2/DLC2/helminthroost/Assets/mdlHRArchitecture.fbx"; public static string mdlHRBuildings = "RoR2/DLC2/helminthroost/Assets/mdlHRBuildings.fbx"; public static string mdlHRBuildingsSkybox = "RoR2/DLC2/helminthroost/Assets/mdlHRBuildingsSkybox.fbx"; public static string mdlHRBuildingsTgl = "RoR2/DLC2/helminthroost/Assets/mdlHRBuildingsTgl.fbx"; public static string mdlHRCrystal = "RoR2/DLC2/helminthroost/Assets/mdlHRCrystal.fbx"; public static string mdlHRCrystalAll = "RoR2/DLC2/helminthroost/Assets/mdlHRCrystalAll.fbx"; public static string mdlHRDioramaBase = "RoR2/DLC2/helminthroost/Assets/mdlHRDioramaBase.fbx"; public static string mdlHREggs = "RoR2/DLC2/helminthroost/Assets/mdlHREggs.fbx"; public static string mdlHRGroundCover = "RoR2/DLC2/helminthroost/Assets/mdlHRGroundCover.fbx"; public static string mdlHRLaunchPad = "RoR2/DLC2/helminthroost/Assets/mdlHRLaunchPad.fbx"; public static string mdlHRLava = "RoR2/DLC2/helminthroost/Assets/mdlHRLava.fbx"; public static string mdlHRLavaWeed = "RoR2/DLC2/helminthroost/Assets/mdlHRLavaWeed.fbx"; public static string mdlHRLeafFallen = "RoR2/DLC2/helminthroost/Assets/mdlHRLeafFallen.fbx"; public static string mdlHRPebbles = "RoR2/DLC2/helminthroost/Assets/mdlHRPebbles.fbx"; public static string mdlHRProps = "RoR2/DLC2/helminthroost/Assets/mdlHRProps.fbx"; public static string mdlHRRocks = "RoR2/DLC2/helminthroost/Assets/mdlHRRocks.fbx"; public static string mdlHRRocksCombined = "RoR2/DLC2/helminthroost/Assets/mdlHRRocksCombined.fbx"; public static string mdlHRStalagsCombined = "RoR2/DLC2/helminthroost/Assets/mdlHRStalagsCombined.fbx"; public static string mdlHRSword = "RoR2/DLC2/helminthroost/Assets/mdlHRSword.fbx"; public static string mdlHRTerrain = "RoR2/DLC2/helminthroost/Assets/mdlHRTerrain.fbx"; public static string mdlHRWorm = "RoR2/DLC2/helminthroost/Assets/mdlHRWorm.fbx"; public static string mdlHRWormCombined = "RoR2/DLC2/helminthroost/Assets/mdlHRWormCombined.fbx"; public static string mdlTeleporterMega = "RoR2/DLC2/helminthroost/Assets/mdlTeleporterMega.fbx"; public static string HRBldgABaseLrg = "RoR2/DLC2/helminthroost/Assets/HRBldgABaseLrg.prefab"; public static string HRBldgABaseMed = "RoR2/DLC2/helminthroost/Assets/HRBldgABaseMed.prefab"; public static string HRBldgABaseSm = "RoR2/DLC2/helminthroost/Assets/HRBldgABaseSm.prefab"; public static string HRBldgACapA = "RoR2/DLC2/helminthroost/Assets/HRBldgACapA.prefab"; public static string HRBldgACapC = "RoR2/DLC2/helminthroost/Assets/HRBldgACapC.prefab"; public static string HRBldgACapD = "RoR2/DLC2/helminthroost/Assets/HRBldgACapD.prefab"; public static string HRBldgACapE = "RoR2/DLC2/helminthroost/Assets/HRBldgACapE.prefab"; public static string HRBldgACapMed = "RoR2/DLC2/helminthroost/Assets/HRBldgACapMed.prefab"; public static string HRBldgACapSm = "RoR2/DLC2/helminthroost/Assets/HRBldgACapSm.prefab"; public static string HRBldgAConnectLrg = "RoR2/DLC2/helminthroost/Assets/HRBldgAConnectLrg.prefab"; public static string HRBldgADarkTrimA = "RoR2/DLC2/helminthroost/Assets/HRBldgADarkTrimA.prefab"; public static string HRBldgAGoldTrim = "RoR2/DLC2/helminthroost/Assets/HRBldgAGoldTrim.prefab"; public static string HRBldgATopper = "RoR2/DLC2/helminthroost/Assets/HRBldgATopper.prefab"; public static string HRBldgAWallA = "RoR2/DLC2/helminthroost/Assets/HRBldgAWallA.prefab"; public static string HRBldgAWallE = "RoR2/DLC2/helminthroost/Assets/HRBldgAWallE.prefab"; public static string HRBldgAWallH = "RoR2/DLC2/helminthroost/Assets/HRBldgAWallH.prefab"; public static string HRBldgBase = "RoR2/DLC2/helminthroost/Assets/HRBldgBase.prefab"; public static string HRBldgBCapA = "RoR2/DLC2/helminthroost/Assets/HRBldgBCapA.prefab"; public static string HRBldgBCapC = "RoR2/DLC2/helminthroost/Assets/HRBldgBCapC.prefab"; public static string HRBldgBWallC = "RoR2/DLC2/helminthroost/Assets/HRBldgBWallC.prefab"; public static string HRBldgBWallD = "RoR2/DLC2/helminthroost/Assets/HRBldgBWallD.prefab"; public static string HRBldgSupportBase = "RoR2/DLC2/helminthroost/Assets/HRBldgSupportBase.prefab"; public static string HRBldgSupportConnect = "RoR2/DLC2/helminthroost/Assets/HRBldgSupportConnect.prefab"; public static string HRBldgSupportTop = "RoR2/DLC2/helminthroost/Assets/HRBldgSupportTop.prefab"; public static string HRCenterPiece = "RoR2/DLC2/helminthroost/Assets/HRCenterPiece.prefab"; public static string HRKnifeArch = "RoR2/DLC2/helminthroost/Assets/HRKnifeArch.prefab"; public static string HRObsidianEntry = "RoR2/DLC2/helminthroost/Assets/HRObsidianEntry.prefab"; public static string HRObsidianGlop = "RoR2/DLC2/helminthroost/Assets/HRObsidianGlop.prefab"; public static string HRObsidianWall = "RoR2/DLC2/helminthroost/Assets/HRObsidianWall.prefab"; public static string HRPlatformA = "RoR2/DLC2/helminthroost/Assets/HRPlatformA.prefab"; public static string HRPlatformB = "RoR2/DLC2/helminthroost/Assets/HRPlatformB.prefab"; public static string HRStairA = "RoR2/DLC2/helminthroost/Assets/HRStairA.prefab"; public static string HRStairB = "RoR2/DLC2/helminthroost/Assets/HRStairB.prefab"; public static string HRStairC = "RoR2/DLC2/helminthroost/Assets/HRStairC.prefab"; public static string HRTopperOrnA = "RoR2/DLC2/helminthroost/Assets/HRTopperOrnA.prefab"; public static string HRTopperOrnB = "RoR2/DLC2/helminthroost/Assets/HRTopperOrnB.prefab"; public static string HRWalkwayACorner = "RoR2/DLC2/helminthroost/Assets/HRWalkwayACorner.prefab"; public static string HRWalkwayAEnd = "RoR2/DLC2/helminthroost/Assets/HRWalkwayAEnd.prefab"; public static string meshHRBldgAStairSm = "RoR2/DLC2/helminthroost/Assets/meshHRBldgAStairSm.prefab"; public static string HRAddOns = "RoR2/DLC2/helminthroost/Assets/HRAddOns.prefab"; public static string HRBuildingsSkybox = "RoR2/DLC2/helminthroost/Assets/HRBuildingsSkybox.prefab"; public static string HRCandleSmA = "RoR2/DLC2/helminthroost/Assets/HRCandleSmA.prefab"; public static string HRCandleSmB = "RoR2/DLC2/helminthroost/Assets/HRCandleSmB.prefab"; public static string HRChime = "RoR2/DLC2/helminthroost/Assets/HRChime.prefab"; public static string HRContainerA = "RoR2/DLC2/helminthroost/Assets/HRContainerA.prefab"; public static string HRContainerABrk = "RoR2/DLC2/helminthroost/Assets/HRContainerABrk.prefab"; public static string HRContainerB = "RoR2/DLC2/helminthroost/Assets/HRContainerB.prefab"; public static string HRContainerBBrk = "RoR2/DLC2/helminthroost/Assets/HRContainerBBrk.prefab"; public static string HRContainerC = "RoR2/DLC2/helminthroost/Assets/HRContainerC.prefab"; public static string HRContainerCBrk = "RoR2/DLC2/helminthroost/Assets/HRContainerCBrk.prefab"; public static string HRCrystals = "RoR2/DLC2/helminthroost/Assets/HRCrystals.prefab"; public static string HRDirtLavaMound = "RoR2/DLC2/helminthroost/Assets/HRDirtLavaMound.prefab"; public static string HREggA = "RoR2/DLC2/helminthroost/Assets/HREggA.prefab"; public static string HREggB = "RoR2/DLC2/helminthroost/Assets/HREggB.prefab"; public static string HREggBr = "RoR2/DLC2/helminthroost/Assets/HREggBr.prefab"; public static string HREggC = "RoR2/DLC2/helminthroost/Assets/HREggC.prefab"; public static string HREggGround = "RoR2/DLC2/helminthroost/Assets/HREggGround.prefab"; public static string HREggsCombined = "RoR2/DLC2/helminthroost/Assets/HREggsCombined.prefab"; public static string HRFireBlossom = "RoR2/DLC2/helminthroost/Assets/HRFireBlossom.prefab"; public static string HRFireBlossomNoFX = "RoR2/DLC2/helminthroost/Assets/HRFireBlossomNoFX.prefab"; public static string HRFireGrass = "RoR2/DLC2/helminthroost/Assets/HRFireGrass.prefab"; public static string HRFireStatic = "RoR2/DLC2/helminthroost/Assets/HRFireStatic.prefab"; public static string HRFruit = "RoR2/DLC2/helminthroost/Assets/HRFruit.prefab"; public static string HRGrassLeafB = "RoR2/DLC2/helminthroost/Assets/HRGrassLeafB.prefab"; public static string HRGroundCoverCombined = "RoR2/DLC2/helminthroost/Assets/HRGroundCoverCombined.prefab"; public static string HRGrovetenderPot = "RoR2/DLC2/helminthroost/Assets/HRGrovetenderPot.prefab"; public static string HRHorn = "RoR2/DLC2/helminthroost/Assets/HRHorn.prefab"; public static string HRLaunchPad = "RoR2/DLC2/helminthroost/Assets/HRLaunchPad.prefab"; public static string HRLava = "RoR2/DLC2/helminthroost/Assets/HRLava.prefab"; public static string HRLavaWeed = "RoR2/DLC2/helminthroost/Assets/HRLavaWeed.prefab"; public static string HRLeafFallen = "RoR2/DLC2/helminthroost/Assets/HRLeafFallen.prefab"; public static string HRObisidan = "RoR2/DLC2/helminthroost/Assets/HRObisidan.prefab"; public static string HRObisidian = "RoR2/DLC2/helminthroost/Assets/HRObisidian.prefab"; public static string HRPebble = "RoR2/DLC2/helminthroost/Assets/HRPebble.prefab"; public static string HRPebbleLight = "RoR2/DLC2/helminthroost/Assets/HRPebbleLight.prefab"; public static string HRPebbleObisidan = "RoR2/DLC2/helminthroost/Assets/HRPebbleObisidan.prefab"; public static string HRPebblesLight = "RoR2/DLC2/helminthroost/Assets/HRPebblesLight.prefab"; public static string HRPebblesObsidian = "RoR2/DLC2/helminthroost/Assets/HRPebblesObsidian.prefab"; public static string HRPebblesWorm = "RoR2/DLC2/helminthroost/Assets/HRPebblesWorm.prefab"; public static string HRRockMedium = "RoR2/DLC2/helminthroost/Assets/HRRockMedium.prefab"; public static string HRRocksCombined = "RoR2/DLC2/helminthroost/Assets/HRRocksCombined.prefab"; public static string HRRug = "RoR2/DLC2/helminthroost/Assets/HRRug.prefab"; public static string HRSection1 = "RoR2/DLC2/helminthroost/Assets/HRSection1.prefab"; public static string HRSection1Tgl = "RoR2/DLC2/helminthroost/Assets/HRSection1Tgl.prefab"; public static string HRSection2 = "RoR2/DLC2/helminthroost/Assets/HRSection2.prefab"; public static string HRSection2Tgl = "RoR2/DLC2/helminthroost/Assets/HRSection2Tgl.prefab"; public static string HRSection3 = "RoR2/DLC2/helminthroost/Assets/HRSection3.prefab"; public static string HRSection3Tgl = "RoR2/DLC2/helminthroost/Assets/HRSection3Tgl.prefab"; public static string HRSection4 = "RoR2/DLC2/helminthroost/Assets/HRSection4.prefab"; public static string HRSection4PTgl = "RoR2/DLC2/helminthroost/Assets/HRSection4PTgl.prefab"; public static string HRSkyboxPrefab = "RoR2/DLC2/helminthroost/Assets/HRSkyboxPrefab.prefab"; public static string HRSpike = "RoR2/DLC2/helminthroost/Assets/HRSpike.prefab"; public static string HRStalagmitesCombined = "RoR2/DLC2/helminthroost/Assets/HRStalagmitesCombined.prefab"; public static string HRSword = "RoR2/DLC2/helminthroost/Assets/HRSword.prefab"; public static string HRSwordBrk = "RoR2/DLC2/helminthroost/Assets/HRSwordBrk.prefab"; public static string HRTable = "RoR2/DLC2/helminthroost/Assets/HRTable.prefab"; public static string HRTerrain = "RoR2/DLC2/helminthroost/Assets/HRTerrain.prefab"; public static string HRTerrainIsland = "RoR2/DLC2/helminthroost/Assets/HRTerrainIsland.prefab"; public static string HRTerrainLava = "RoR2/DLC2/helminthroost/Assets/HRTerrainLava.prefab"; public static string HRTerrainLavaCracks = "RoR2/DLC2/helminthroost/Assets/HRTerrainLavaCracks.prefab"; public static string HRTerrainOuter = "RoR2/DLC2/helminthroost/Assets/HRTerrainOuter.prefab"; public static string HRTree = "RoR2/DLC2/helminthroost/Assets/HRTree.prefab"; public static string HRVaseA = "RoR2/DLC2/helminthroost/Assets/HRVaseA.prefab"; public static string HRVaseB = "RoR2/DLC2/helminthroost/Assets/HRVaseB.prefab"; public static string HRVaseC = "RoR2/DLC2/helminthroost/Assets/HRVaseC.prefab"; public static string HRVasePieceA = "RoR2/DLC2/helminthroost/Assets/HRVasePieceA.prefab"; public static string HRVasePieceB = "RoR2/DLC2/helminthroost/Assets/HRVasePieceB.prefab"; public static string HRVasePieceC = "RoR2/DLC2/helminthroost/Assets/HRVasePieceC.prefab"; public static string HRVolcanoidA = "RoR2/DLC2/helminthroost/Assets/HRVolcanoidA.prefab"; public static string HRVolcanoidB = "RoR2/DLC2/helminthroost/Assets/HRVolcanoidB.prefab"; public static string HRVolcanoidC = "RoR2/DLC2/helminthroost/Assets/HRVolcanoidC.prefab"; public static string HRWorm = "RoR2/DLC2/helminthroost/Assets/HRWorm.prefab"; public static string HRWormGlass = "RoR2/DLC2/helminthroost/Assets/HRWormGlass.prefab"; public static string HRWormSkull = "RoR2/DLC2/helminthroost/Assets/HRWormSkull.prefab"; public static string HRWormSkybox = "RoR2/DLC2/helminthroost/Assets/HRWormSkybox.prefab"; public static string HRLandingPad = "RoR2/DLC2/helminthroost/Assets/HRLandingPad.prefab"; public static string mdlHRLandingPad = "RoR2/DLC2/helminthroost/Assets/mdlHRLandingPad.fbx"; public static string helminthroostPOIManager = "RoR2/DLC2/helminthroost/helminthroost_POIManager.prefab"; public static string HRDioramaDisplay = "RoR2/DLC2/helminthroost/HRDioramaDisplay.prefab"; public static string WeatherHelminthroost = "RoR2/DLC2/helminthroost/Weather, Helminthroost.prefab"; public static string TLCatails = "RoR2/DLC2/lakes/Assets/TLCatails.spm"; public static string TLCatailsopt = "RoR2/DLC2/lakes/Assets/TLCatails_opt.spm"; public static string TLCotton = "RoR2/DLC2/lakes/Assets/TLCotton.spm"; public static string TLCottonopt = "RoR2/DLC2/lakes/Assets/TLCotton_opt.spm"; public static string TLGrass = "RoR2/DLC2/lakes/Assets/TLGrass.spm"; public static string TLGrassopt = "RoR2/DLC2/lakes/Assets/TLGrass_opt.spm"; public static string TLGrassSparse = "RoR2/DLC2/lakes/Assets/TLGrassSparse.spm"; public static string TLGrassSparseopt = "RoR2/DLC2/lakes/Assets/TLGrassSparse_opt.spm"; public static string TLGrassSparseGreen = "RoR2/DLC2/lakes/Assets/TLGrassSparseGreen.spm"; public static string TLGrassSparseGreenopt = "RoR2/DLC2/lakes/Assets/TLGrassSparseGreen_opt.spm"; public static string TLGrassSparseSingle = "RoR2/DLC2/lakes/Assets/TLGrassSparseSingle.spm"; public static string TLGrassSparseSingleopt = "RoR2/DLC2/lakes/Assets/TLGrassSparseSingle_opt.spm"; public static string TLGrassSparseSingleGreen = "RoR2/DLC2/lakes/Assets/TLGrassSparseSingleGreen.spm"; public static string TLGrassSparseSingleGreenopt = "RoR2/DLC2/lakes/Assets/TLGrassSparseSingleGreen_opt.spm"; public static string TLShrub = "RoR2/DLC2/lakes/Assets/TLShrub.prefab"; public static string TLVineHangingJ = "RoR2/DLC2/lakes/Assets/TLVineHangingJ.prefab"; public static string TLVineHangingU = "RoR2/DLC2/lakes/Assets/TLVineHangingU.prefab"; public static string mdlTLArchi = "RoR2/DLC2/lakes/Assets/mdlTLArchi.fbx"; public static string mdlTLContBox = "RoR2/DLC2/lakes/Assets/mdlTLContBox.fbx"; public static string mdlTLContBoxopt = "RoR2/DLC2/lakes/Assets/mdlTLContBox_opt.fbx"; public static string mdlTLContCylinder = "RoR2/DLC2/lakes/Assets/mdlTLContCylinder.fbx"; public static string mdlTLContCylinderopt = "RoR2/DLC2/lakes/Assets/mdlTLContCylinder_opt.fbx"; public static string mdlTLDiorama = "RoR2/DLC2/lakes/Assets/mdlTLDiorama.fbx"; public static string mdlTLDoor = "RoR2/DLC2/lakes/Assets/mdlTLDoor.fbx"; public static string mdlTLDooropt = "RoR2/DLC2/lakes/Assets/mdlTLDoor_opt.fbx"; public static string mdlTLDune = "RoR2/DLC2/lakes/Assets/mdlTLDune.fbx"; public static string mdlTLHangingVines = "RoR2/DLC2/lakes/Assets/mdlTLHangingVines.fbx"; public static string mdlTLLight = "RoR2/DLC2/lakes/Assets/mdlTLLight.fbx"; public static string mdlTLPlants = "RoR2/DLC2/lakes/Assets/mdlTLPlants.fbx"; public static string mdlTLPlantsopt = "RoR2/DLC2/lakes/Assets/mdlTLPlants_opt.fbx"; public static string mdlTLShip = "RoR2/DLC2/lakes/Assets/mdlTLShip.fbx"; public static string mdlTLTerrain = "RoR2/DLC2/lakes/Assets/mdlTLTerrain.fbx"; public static string mdlTLTerrainopt = "RoR2/DLC2/lakes/Assets/mdlTLTerrain_opt.fbx"; public static string mdlTLTerrainBackwall = "RoR2/DLC2/lakes/Assets/mdlTLTerrainBackwall.fbx"; public static string mdlTLTerrainOuter = "RoR2/DLC2/lakes/Assets/mdlTLTerrainOuter.fbx"; public static string mdlTLTerrainOuteropt = "RoR2/DLC2/lakes/Assets/mdlTLTerrainOuter_opt.fbx"; public static string mdlTLToggle = "RoR2/DLC2/lakes/Assets/mdlTLToggle.fbx"; public static string mdlTLWater = "RoR2/DLC2/lakes/Assets/mdlTLWater.fbx"; public static string mdlTLWaterDroplet = "RoR2/DLC2/lakes/Assets/mdlTLWaterDroplet.fbx"; public static string TLTG01 = "RoR2/DLC2/lakes/Assets/TL_TG_01.prefab"; public static string TLTG02 = "RoR2/DLC2/lakes/Assets/TL_TG_02.prefab"; public static string TLTG03 = "RoR2/DLC2/lakes/Assets/TL_TG_03.prefab"; public static string TLArchiBeamA = "RoR2/DLC2/lakes/Assets/TLArchiBeamA.prefab"; public static string TLArchiBeamB = "RoR2/DLC2/lakes/Assets/TLArchiBeamB.prefab"; public static string TLArchiBeamC = "RoR2/DLC2/lakes/Assets/TLArchiBeamC.prefab"; public static string TLArchiCover = "RoR2/DLC2/lakes/Assets/TLArchiCover.prefab"; public static string TLArchiPlatform = "RoR2/DLC2/lakes/Assets/TLArchiPlatform.prefab"; public static string TLArchiRampA = "RoR2/DLC2/lakes/Assets/TLArchiRampA.prefab"; public static string TLArchiRampB = "RoR2/DLC2/lakes/Assets/TLArchiRampB.prefab"; public static string TLArchiWhole = "RoR2/DLC2/lakes/Assets/TLArchiWhole.prefab"; public static string TLContBox = "RoR2/DLC2/lakes/Assets/TLContBox.prefab"; public static string TLContBoxClosed = "RoR2/DLC2/lakes/Assets/TLContBoxClosed.prefab"; public static string TLContCylinder = "RoR2/DLC2/lakes/Assets/TLContCylinder.prefab"; public static string TLDoorClosed = "RoR2/DLC2/lakes/Assets/TLDoorClosed.prefab"; public static string TLDoorFrame = "RoR2/DLC2/lakes/Assets/TLDoorFrame.prefab"; public static string TLDoorOpenA = "RoR2/DLC2/lakes/Assets/TLDoorOpenA.prefab"; public static string TLDoorOpenB = "RoR2/DLC2/lakes/Assets/TLDoorOpenB.prefab"; public static string TLDune = "RoR2/DLC2/lakes/Assets/TLDune.prefab"; public static string TLDuneGrass = "RoR2/DLC2/lakes/Assets/TLDuneGrass.prefab"; public static string TLGFlowerMiddleDistant = "RoR2/DLC2/lakes/Assets/TLGFlowerMiddleDistant.prefab"; public static string TLLight = "RoR2/DLC2/lakes/Assets/TLLight.prefab"; public static string TLPebbleA = "RoR2/DLC2/lakes/Assets/TLPebbleA.prefab"; public static string TLPebbleB = "RoR2/DLC2/lakes/Assets/TLPebbleB.prefab"; public static string TLPlantLarge = "RoR2/DLC2/lakes/Assets/TLPlantLarge.prefab"; public static string TLPlantMed = "RoR2/DLC2/lakes/Assets/TLPlantMed.prefab"; public static string TLPlantSmall = "RoR2/DLC2/lakes/Assets/TLPlantSmall.prefab"; public static string TLRockMedium = "RoR2/DLC2/lakes/Assets/TLRockMedium.prefab"; public static string TLRockSmall = "RoR2/DLC2/lakes/Assets/TLRockSmall.prefab"; public static string TLRootA = "RoR2/DLC2/lakes/Assets/TLRootA.prefab"; public static string TLRootB = "RoR2/DLC2/lakes/Assets/TLRootB.prefab"; public static string TLRootC = "RoR2/DLC2/lakes/Assets/TLRootC.prefab"; public static string TLShrubB = "RoR2/DLC2/lakes/Assets/TLShrubB.prefab"; public static string TLTerrainGiantFlower = "RoR2/DLC2/lakes/Assets/TLTerrain_GiantFlower.prefab"; public static string TLTerrainGround = "RoR2/DLC2/lakes/Assets/TLTerrain_Ground.prefab"; public static string TLTerrainIsle1 = "RoR2/DLC2/lakes/Assets/TLTerrain_Isle1.prefab"; public static string TLTerrainIsle2 = "RoR2/DLC2/lakes/Assets/TLTerrain_Isle2.prefab"; public static string TLTerrainIsleCave = "RoR2/DLC2/lakes/Assets/TLTerrain_IsleCave.prefab"; public static string TLTerrainNewtRoot0 = "RoR2/DLC2/lakes/Assets/TLTerrain_NewtRoot.prefab"; public static string TLTerrainShip = "RoR2/DLC2/lakes/Assets/TLTerrain_Ship.prefab"; public static string TLTerrainTreePads = "RoR2/DLC2/lakes/Assets/TLTerrain_TreePads.prefab"; public static string TLTerrainVines = "RoR2/DLC2/lakes/Assets/TLTerrain_Vines.prefab"; public static string TLTerrainVinesLeaves = "RoR2/DLC2/lakes/Assets/TLTerrain_VinesLeaves.prefab"; public static string TLTerrainWall = "RoR2/DLC2/lakes/Assets/TLTerrain_Wall.prefab"; public static string TLTerrainLeaf = "RoR2/DLC2/lakes/Assets/TLTerrainLeaf.prefab"; public static string TLTerrainMiddleDistant = "RoR2/DLC2/lakes/Assets/TLTerrainMiddleDistant.prefab"; public static string TLTerrainOuterDistant = "RoR2/DLC2/lakes/Assets/TLTerrainOuterDistant.prefab"; public static string TLWater = "RoR2/DLC2/lakes/Assets/TLWater.prefab"; public static string TLWaterDroplet = "RoR2/DLC2/lakes/Assets/TLWaterDroplet.prefab"; public static string TLWaterfalls = "RoR2/DLC2/lakes/Assets/TLWaterfalls.prefab"; public static string Wire = "RoR2/DLC2/lakes/Assets/Wire.prefab"; public static string mdlTLJumpPad = "RoR2/DLC2/lakes/Assets/mdlTLJumpPad.fbx"; public static string mdlTLJumpPadLightBounce = "RoR2/DLC2/lakes/Assets/mdlTLJumpPad@LightBounce.fbx"; public static string TLJumpPad23 = "RoR2/DLC2/lakes/Assets/TLJumpPad.prefab"; public static string lakesPOIManager = "RoR2/DLC2/lakes/lakes_POIManager.prefab"; public static string TLDioramaDisplay = "RoR2/DLC2/lakes/TLDioramaDisplay.prefab"; public static string WeatherLakes0 = "RoR2/DLC2/lakes/Weather, Lakes.prefab"; public static string mdlTerrainOuterCards = "RoR2/DLC2/lakesnight/Assets/mdlTerrainOuterCards.fbx"; public static string mdlTLFireLogs = "RoR2/DLC2/lakesnight/Assets/mdlTLFireLogs.fbx"; public static string mdlTLGupDrop = "RoR2/DLC2/lakesnight/Assets/mdlTLGupDrop.fbx"; public static string mdlTLHangingVines24 = "RoR2/DLC2/lakesnight/Assets/mdlTLHangingVines.fbx"; public static string mdlTLNightPlanet = "RoR2/DLC2/lakesnight/Assets/mdlTLNightPlanet.fbx"; public static string mdlTLRocks = "RoR2/DLC2/lakesnight/Assets/mdlTLRocks.fbx"; public static string mdlTLShrooms = "RoR2/DLC2/lakesnight/Assets/mdlTLShrooms.fbx"; public static string mdlTLShroomsopt = "RoR2/DLC2/lakesnight/Assets/mdlTLShrooms_opt.fbx"; public static string mdlTLStars = "RoR2/DLC2/lakesnight/Assets/mdlTLStars.fbx"; public static string mdlTLTerrainNight = "RoR2/DLC2/lakesnight/Assets/mdlTLTerrainNight.fbx"; public static string mdlTLTerrainNightopt = "RoR2/DLC2/lakesnight/Assets/mdlTLTerrainNight_opt.fbx"; public static string meshTLNightDroplets = "RoR2/DLC2/lakesnight/Assets/meshTLNightDroplets.fbx"; public static string TLFireLogs = "RoR2/DLC2/lakesnight/Assets/TLFireLogs.prefab"; public static string TLFireLogsopt = "RoR2/DLC2/lakesnight/Assets/TLFireLogs_opt.prefab"; public static string TLGupDrop = "RoR2/DLC2/lakesnight/Assets/TLGupDrop.prefab"; public static string TLNightRocks = "RoR2/DLC2/lakesnight/Assets/TLNightRocks.prefab"; public static string TLPlanet = "RoR2/DLC2/lakesnight/Assets/TLPlanet.prefab"; public static string TLShroomLarge = "RoR2/DLC2/lakesnight/Assets/TLShroomLarge.prefab"; public static string TLShroomMed = "RoR2/DLC2/lakesnight/Assets/TLShroomMed.prefab"; public static string TLShroomSmall = "RoR2/DLC2/lakesnight/Assets/TLShroomSmall.prefab"; public static string TLStars = "RoR2/DLC2/lakesnight/Assets/TLStars.prefab"; public static string TLWaterDropletOrange = "RoR2/DLC2/lakesnight/Assets/TLWaterDropletOrange.prefab"; public static string TLWaterDropletYellow = "RoR2/DLC2/lakesnight/Assets/TLWaterDropletYellow.prefab"; public static string TLNightDioramaDisplay = "RoR2/DLC2/lakesnight/TLNightDioramaDisplay.prefab"; public static string WeatherLakesnight = "RoR2/DLC2/lakesnight/Weather, Lakesnight.prefab"; public static string LTFallenLeaf = "RoR2/DLC2/lemuriantemple/Assets/LTFallenLeaf.spm"; public static string mdlLTGrassSmall = "RoR2/DLC2/lemuriantemple/Assets/mdlLTGrassSmall.fbx"; public static string mdlLTAltar = "RoR2/DLC2/lemuriantemple/Assets/mdlLTAltar.fbx"; public static string mdlLTAltaropt = "RoR2/DLC2/lemuriantemple/Assets/mdlLTAltar_opt.fbx"; public static string mdlLTArchesA = "RoR2/DLC2/lemuriantemple/Assets/mdlLTArchesA.fbx"; public static string mdlLTArchesAopt = "RoR2/DLC2/lemuriantemple/Assets/mdlLTArchesA_opt.fbx"; public static string mdlLTArchesB = "RoR2/DLC2/lemuriantemple/Assets/mdlLTArchesB.fbx"; public static string mdlLTMainArchSupports = "RoR2/DLC2/lemuriantemple/Assets/mdlLTMainArchSupports.fbx"; public static string mdlLTTemplePiecesBrk = "RoR2/DLC2/lemuriantemple/Assets/mdlLTTemplePiecesBrk.fbx"; public static string mdlLTTempleStructures = "RoR2/DLC2/lemuriantemple/Assets/mdlLTTempleStructures.fbx"; public static string mdlLTWallsRail = "RoR2/DLC2/lemuriantemple/Assets/mdlLTWallsRail.fbx"; public static string mdlLTWok = "RoR2/DLC2/lemuriantemple/Assets/mdlLTWok.fbx"; public static string mdlLTWokTable = "RoR2/DLC2/lemuriantemple/Assets/mdlLTWokTable.fbx"; public static string mdlLTBoulders = "RoR2/DLC2/lemuriantemple/Assets/mdlLTBoulders.fbx"; public static string mdlLTBouldersopt = "RoR2/DLC2/lemuriantemple/Assets/mdlLTBoulders_opt.fbx"; public static string mdlLTCactus = "RoR2/DLC2/lemuriantemple/Assets/mdlLTCactus.fbx"; public static string mdlLTCactusopt = "RoR2/DLC2/lemuriantemple/Assets/mdlLTCactus_opt.fbx"; public static string mdlLTColumnTopper = "RoR2/DLC2/lemuriantemple/Assets/mdlLTColumnTopper.fbx"; public static string mdlLTColumnTopperopt = "RoR2/DLC2/lemuriantemple/Assets/mdlLTColumnTopper_opt.fbx"; public static string mdlLTCoral = "RoR2/DLC2/lemuriantemple/Assets/mdlLTCoral.fbx"; public static string mdlLTCoralopt = "RoR2/DLC2/lemuriantemple/Assets/mdlLTCoral_opt.fbx"; public static string mdlLTCoralYellow = "RoR2/DLC2/lemuriantemple/Assets/mdlLTCoralYellow.fbx"; public static string mdlLTCrystals = "RoR2/DLC2/lemuriantemple/Assets/mdlLTCrystals.fbx"; public static string mdlLTCrystalsB = "RoR2/DLC2/lemuriantemple/Assets/mdlLTCrystalsB.fbx"; public static string mdlLTCrystalsBopt = "RoR2/DLC2/lemuriantemple/Assets/mdlLTCrystalsB_opt.fbx"; public static string mdlLTDunes = "RoR2/DLC2/lemuriantemple/Assets/mdlLTDunes.fbx"; public static string mdlLTDunesB = "RoR2/DLC2/lemuriantemple/Assets/mdlLTDunesB.fbx"; public static string mdlLTPebbles = "RoR2/DLC2/lemuriantemple/Assets/mdlLTPebbles.fbx"; public static string mdlLTPebblesopt = "RoR2/DLC2/lemuriantemple/Assets/mdlLTPebbles_opt.fbx"; public static string mdlLTRocks = "RoR2/DLC2/lemuriantemple/Assets/mdlLTRocks.fbx"; public static string mdlLTVines = "RoR2/DLC2/lemuriantemple/Assets/mdlLTVines.fbx"; public static string mdlTLChefVines = "RoR2/DLC2/lemuriantemple/Assets/mdlTLChefVines.fbx"; public static string mdlLTTerrainNew = "RoR2/DLC2/lemuriantemple/Assets/mdlLTTerrainNew.fbx"; public static string mdlLTTerrainNewopt = "RoR2/DLC2/lemuriantemple/Assets/mdlLTTerrainNew_opt.fbx"; public static string LTAltar = "RoR2/DLC2/lemuriantemple/Assets/LTAltar.prefab"; public static string LTArchCurveBrkB = "RoR2/DLC2/lemuriantemple/Assets/LTArchCurveBrkB.prefab"; public static string LTArchCurveBrkD = "RoR2/DLC2/lemuriantemple/Assets/LTArchCurveBrkD.prefab"; public static string LTArchDoubleBrk = "RoR2/DLC2/lemuriantemple/Assets/LTArchDoubleBrk.prefab"; public static string LTArchesA = "RoR2/DLC2/lemuriantemple/Assets/LTArchesA.prefab"; public static string LTArchesB = "RoR2/DLC2/lemuriantemple/Assets/LTArchesB.prefab"; public static string LTBoulders = "RoR2/DLC2/lemuriantemple/Assets/LTBoulders.prefab"; public static string LTBrkPieceA = "RoR2/DLC2/lemuriantemple/Assets/LTBrkPieceA.prefab"; public static string LTBrkPieceB = "RoR2/DLC2/lemuriantemple/Assets/LTBrkPieceB.prefab"; public static string LTCactusLG = "RoR2/DLC2/lemuriantemple/Assets/LTCactusLG.prefab"; public static string LTCactusMD = "RoR2/DLC2/lemuriantemple/Assets/LTCactusMD.prefab"; public static string LTCactusSM = "RoR2/DLC2/lemuriantemple/Assets/LTCactusSM.prefab"; public static string LTColumnSupportBrk = "RoR2/DLC2/lemuriantemple/Assets/LTColumnSupportBrk.prefab"; public static string LTColumnTGCVine = "RoR2/DLC2/lemuriantemple/Assets/LTColumnTGCVine.prefab"; public static string LTCoral = "RoR2/DLC2/lemuriantemple/Assets/LTCoral.prefab"; public static string LTCoralYellowGroupLG = "RoR2/DLC2/lemuriantemple/Assets/LTCoralYellowGroupLG.prefab"; public static string LTCoralYellowGroupMD = "RoR2/DLC2/lemuriantemple/Assets/LTCoralYellowGroupMD.prefab"; public static string LTCoralYellowGroupSM = "RoR2/DLC2/lemuriantemple/Assets/LTCoralYellowGroupSM.prefab"; public static string LTCoralYellowLG = "RoR2/DLC2/lemuriantemple/Assets/LTCoralYellowLG.prefab"; public static string LTCoralYellowMD = "RoR2/DLC2/lemuriantemple/Assets/LTCoralYellowMD.prefab"; public static string LTCoralYellowSM = "RoR2/DLC2/lemuriantemple/Assets/LTCoralYellowSM.prefab"; public static string LTCrystalLg = "RoR2/DLC2/lemuriantemple/Assets/LTCrystalLg.prefab"; public static string LTCrystalMed = "RoR2/DLC2/lemuriantemple/Assets/LTCrystalMed.prefab"; public static string LTCrystals = "RoR2/DLC2/lemuriantemple/Assets/LTCrystals.prefab"; public static string LTCrystalSm = "RoR2/DLC2/lemuriantemple/Assets/LTCrystalSm.prefab"; public static string LTDune = "RoR2/DLC2/lemuriantemple/Assets/LTDune.prefab"; public static string LTDunes = "RoR2/DLC2/lemuriantemple/Assets/LTDunes.prefab"; public static string LTDunesB = "RoR2/DLC2/lemuriantemple/Assets/LTDunesB.prefab"; public static string LTFloorBall = "RoR2/DLC2/lemuriantemple/Assets/LTFloorBall.prefab"; public static string LTFlower = "RoR2/DLC2/lemuriantemple/Assets/LTFlower.prefab"; public static string LTFlowerLg = "RoR2/DLC2/lemuriantemple/Assets/LTFlowerLg.prefab"; public static string LTFlowerSm = "RoR2/DLC2/lemuriantemple/Assets/LTFlowerSm.prefab"; public static string LTGrass = "RoR2/DLC2/lemuriantemple/Assets/LTGrass.prefab"; public static string LTGrassopt = "RoR2/DLC2/lemuriantemple/Assets/LTGrass_opt.prefab"; public static string LTMainArchHalf = "RoR2/DLC2/lemuriantemple/Assets/LTMainArchHalf.prefab"; public static string LTMainArchHalfBrk = "RoR2/DLC2/lemuriantemple/Assets/LTMainArchHalfBrk.prefab"; public static string LTMainArchPillarBrk = "RoR2/DLC2/lemuriantemple/Assets/LTMainArchPillarBrk.prefab"; public static string LTPebble = "RoR2/DLC2/lemuriantemple/Assets/LTPebble.prefab"; public static string LTPebbles = "RoR2/DLC2/lemuriantemple/Assets/LTPebbles.prefab"; public static string LTRedRootsDecal = "RoR2/DLC2/lemuriantemple/Assets/LTRedRootsDecal.prefab"; public static string LTRock = "RoR2/DLC2/lemuriantemple/Assets/LTRock.prefab"; public static string LTRockLGA = "RoR2/DLC2/lemuriantemple/Assets/LTRockLGA.prefab"; public static string LTRockLGC = "RoR2/DLC2/lemuriantemple/Assets/LTRockLGC.prefab"; public static string LTRockMD = "RoR2/DLC2/lemuriantemple/Assets/LTRockMD.prefab"; public static string LTRockTubeThick = "RoR2/DLC2/lemuriantemple/Assets/LTRockTubeThick.prefab"; public static string LTRockTubeThin = "RoR2/DLC2/lemuriantemple/Assets/LTRockTubeThin.prefab"; public static string LTStairsTGCenter = "RoR2/DLC2/lemuriantemple/Assets/LTStairsTGCenter.prefab"; public static string LTStairsTGLeft = "RoR2/DLC2/lemuriantemple/Assets/LTStairsTGLeft.prefab"; public static string LTStairsTGRight = "RoR2/DLC2/lemuriantemple/Assets/LTStairsTGRight.prefab"; public static string LTStructureA = "RoR2/DLC2/lemuriantemple/Assets/LTStructureA.prefab"; public static string LTTempleColumnTGC = "RoR2/DLC2/lemuriantemple/Assets/LTTempleColumnTGC.prefab"; public static string LTTempleColumnTGD = "RoR2/DLC2/lemuriantemple/Assets/LTTempleColumnTGD.prefab"; public static string LTTempleGoldTGC = "RoR2/DLC2/lemuriantemple/Assets/LTTempleGoldTGC.prefab"; public static string LTTempleTGBackChamberA = "RoR2/DLC2/lemuriantemple/Assets/LTTempleTGBackChamberA.prefab"; public static string LTTempleTGBackChamberAGold = "RoR2/DLC2/lemuriantemple/Assets/LTTempleTGBackChamberAGold.prefab"; public static string LTTempleTGBackChamberB = "RoR2/DLC2/lemuriantemple/Assets/LTTempleTGBackChamberB.prefab"; public static string LTTempleTGFrontA = "RoR2/DLC2/lemuriantemple/Assets/LTTempleTGFrontA.prefab"; public static string LTTempleTGFrontAGold = "RoR2/DLC2/lemuriantemple/Assets/LTTempleTGFrontAGold.prefab"; public static string LTTempleTGFrontB = "RoR2/DLC2/lemuriantemple/Assets/LTTempleTGFrontB.prefab"; public static string LTTempleTGFrontBGold = "RoR2/DLC2/lemuriantemple/Assets/LTTempleTGFrontBGold.prefab"; public static string LTTempleTGFrontC = "RoR2/DLC2/lemuriantemple/Assets/LTTempleTGFrontC.prefab"; public static string LTTerrain = "RoR2/DLC2/lemuriantemple/Assets/LTTerrain.prefab"; public static string LTVineHanging = "RoR2/DLC2/lemuriantemple/Assets/LTVineHanging.prefab"; public static string LTVineHangingB = "RoR2/DLC2/lemuriantemple/Assets/LTVineHangingB.prefab"; public static string LTWok = "RoR2/DLC2/lemuriantemple/Assets/LTWok.prefab"; public static string spmLTGrass = "RoR2/DLC2/lemuriantemple/Assets/spmLTGrass.prefab"; public static string spmLTGrassTall = "RoR2/DLC2/lemuriantemple/Assets/spmLTGrassTall.spm"; public static string spmLTTallGrass = "RoR2/DLC2/lemuriantemple/Assets/spmLTTallGrass.prefab"; public static string TLChefVines = "RoR2/DLC2/lemuriantemple/Assets/TLChefVines.prefab"; public static string LTDioramaDisplay = "RoR2/DLC2/lemuriantemple/LTDioramaDisplay.prefab"; public static string WeatherLemurianTemple = "RoR2/DLC2/lemuriantemple/Weather, LemurianTemple.prefab"; public static string GoldenTree2 = "RoR2/DLC2/meridian/Assets/GoldenTree2.spm"; public static string PMGoldenTree = "RoR2/DLC2/meridian/Assets/PMGoldenTree.prefab"; public static string PMCypressBush = "RoR2/DLC2/meridian/Assets/PMCypressBush.spm"; public static string PMCypressDistant = "RoR2/DLC2/meridian/Assets/PMCypressDistant.spm"; public static string PMCypressLG = "RoR2/DLC2/meridian/Assets/PMCypressLG.spm"; public static string PMCypressMD = "RoR2/DLC2/meridian/Assets/PMCypressMD.spm"; public static string PMGoldenLeaf = "RoR2/DLC2/meridian/Assets/PMGoldenLeaf.prefab"; public static string PMGoldenLeaf32 = "RoR2/DLC2/meridian/Assets/PMGoldenLeaf.spm"; public static string PMSimpleGrass = "RoR2/DLC2/meridian/Assets/PMSimpleGrass.prefab"; public static string mdlPMCake = "RoR2/DLC2/meridian/Assets/mdlPMCake.fbx"; public static string mdlPMCrystalsB = "RoR2/DLC2/meridian/Assets/mdlPMCrystalsB.fbx"; public static string mdlPMDistantPlatforms = "RoR2/DLC2/meridian/Assets/mdlPMDistantPlatforms.fbx"; public static string mdlPMFogFloor = "RoR2/DLC2/meridian/Assets/mdlPMFogFloor.fbx"; public static string mdlPMGoldTree = "RoR2/DLC2/meridian/Assets/mdlPMGoldTree.fbx"; public static string mdlPMHangingCrystals = "RoR2/DLC2/meridian/Assets/mdlPMHangingCrystals.fbx"; public static string mdlPMIsland01 = "RoR2/DLC2/meridian/Assets/mdlPMIsland01.fbx"; public static string mdlPMIsland02 = "RoR2/DLC2/meridian/Assets/mdlPMIsland02.fbx"; public static string mdlPMLastPartofJumpZone = "RoR2/DLC2/meridian/Assets/mdlPMLastPartofJumpZone.fbx"; public static string mdlPMLightSconce = "RoR2/DLC2/meridian/Assets/mdlPMLightSconce.fbx"; public static string mdlPMPebbles = "RoR2/DLC2/meridian/Assets/mdlPMPebbles.fbx"; public static string mdlPMPlanter = "RoR2/DLC2/meridian/Assets/mdlPMPlanter.fbx"; public static string mdlPMPlatforms = "RoR2/DLC2/meridian/Assets/mdlPMPlatforms.fbx"; public static string mdlPMPlayableZoneShrine = "RoR2/DLC2/meridian/Assets/mdlPMPlayableZoneShrine.fbx"; public static string mdlPMPreAmBoulders = "RoR2/DLC2/meridian/Assets/mdlPMPreAmBoulders.fbx"; public static string mdlPMPreAmSection1 = "RoR2/DLC2/meridian/Assets/mdlPMPreAmSection1.fbx"; public static string mdlPMRingMiddle = "RoR2/DLC2/meridian/Assets/mdlPMRingMiddle.fbx"; public static string mdlPMRingOuter = "RoR2/DLC2/meridian/Assets/mdlPMRingOuter.fbx"; public static string mdlPMRockPlatform = "RoR2/DLC2/meridian/Assets/mdlPMRockPlatform.fbx"; public static string mdlPMRubble = "RoR2/DLC2/meridian/Assets/mdlPMRubble.fbx"; public static string mdlPMRubbleB = "RoR2/DLC2/meridian/Assets/mdlPMRubbleB.fbx"; public static string mdlPMSconces = "RoR2/DLC2/meridian/Assets/mdlPMSconces.fbx"; public static string mdlPMStatue = "RoR2/DLC2/meridian/Assets/mdlPMStatue.fbx"; public static string mdlPMStatueHeadTurnable = "RoR2/DLC2/meridian/Assets/mdlPMStatueHeadTurnable.fbx"; public static string mdlPMStorm = "RoR2/DLC2/meridian/Assets/mdlPMStorm.fbx"; public static string mdlPMTerrain = "RoR2/DLC2/meridian/Assets/mdlPMTerrain.fbx"; public static string MLRockPlatform2 = "RoR2/DLC2/meridian/Assets/ML_Rock_Platform2.fbx"; public static string mdlPMCakeCutPillars = "RoR2/DLC2/meridian/Assets/mdlPMCake_CutPillars.fbx"; public static string PMBoulder = "RoR2/DLC2/meridian/Assets/PMBoulder.prefab"; public static string PMBoulderFlat = "RoR2/DLC2/meridian/Assets/PMBoulderFlat.prefab"; public static string PMCake = "RoR2/DLC2/meridian/Assets/PMCake.prefab"; public static string PMCakeSwirls = "RoR2/DLC2/meridian/Assets/PMCakeSwirls.prefab"; public static string PMCrystalsB = "RoR2/DLC2/meridian/Assets/PMCrystalsB.prefab"; public static string PMCypressBush3 = "RoR2/DLC2/meridian/Assets/PMCypressBush.prefab"; public static string PMCypressBushDistant = "RoR2/DLC2/meridian/Assets/PMCypressBushDistant.prefab"; public static string PMCypressBushStraight = "RoR2/DLC2/meridian/Assets/PMCypressBushStraight.prefab"; public static string PMCypressDistant31 = "RoR2/DLC2/meridian/Assets/PMCypressDistant.prefab"; public static string PMCypressLG17 = "RoR2/DLC2/meridian/Assets/PMCypressLG.prefab"; public static string PMCypressMD20 = "RoR2/DLC2/meridian/Assets/PMCypressMD.prefab"; public static string PMCypressMDDistatnt = "RoR2/DLC2/meridian/Assets/PMCypressMDDistatnt.prefab"; public static string PMDirtPile = "RoR2/DLC2/meridian/Assets/PMDirtPile.prefab"; public static string PMFloatingIsland01 = "RoR2/DLC2/meridian/Assets/PMFloatingIsland01.prefab"; public static string PMFloatingIsland02 = "RoR2/DLC2/meridian/Assets/PMFloatingIsland02.prefab"; public static string PMGoldTree = "RoR2/DLC2/meridian/Assets/PMGoldTree.prefab"; public static string PMHangingCrystalA = "RoR2/DLC2/meridian/Assets/PMHangingCrystalA.prefab"; public static string PMHangingCrystalB = "RoR2/DLC2/meridian/Assets/PMHangingCrystalB.prefab"; public static string PMHead = "RoR2/DLC2/meridian/Assets/PMHead.prefab"; public static string PMLightSconce = "RoR2/DLC2/meridian/Assets/PMLightSconce.prefab"; public static string PMPebble = "RoR2/DLC2/meridian/Assets/PMPebble.prefab"; public static string PMPebbles = "RoR2/DLC2/meridian/Assets/PMPebbles.prefab"; public static string PMPlatformA = "RoR2/DLC2/meridian/Assets/PMPlatformA.prefab"; public static string PMPlatformB = "RoR2/DLC2/meridian/Assets/PMPlatformB.prefab"; public static string PMPlatformC = "RoR2/DLC2/meridian/Assets/PMPlatformC.prefab"; public static string PMPlatformD = "RoR2/DLC2/meridian/Assets/PMPlatformD.prefab"; public static string PMPreambleEnd = "RoR2/DLC2/meridian/Assets/PMPreambleEnd.prefab"; public static string PMPreambleStart = "RoR2/DLC2/meridian/Assets/PMPreambleStart.prefab"; public static string PMPreAmBoulders = "RoR2/DLC2/meridian/Assets/PMPreAmBoulders.prefab"; public static string PMRingMiddle1 = "RoR2/DLC2/meridian/Assets/PMRingMiddle1.prefab"; public static string PMRingMiddle2 = "RoR2/DLC2/meridian/Assets/PMRingMiddle2.prefab"; public static string PMRingMiddle3 = "RoR2/DLC2/meridian/Assets/PMRingMiddle3.prefab"; public static string PMRingMiddle4 = "RoR2/DLC2/meridian/Assets/PMRingMiddle4.prefab"; public static string PMRingMiddle5 = "RoR2/DLC2/meridian/Assets/PMRingMiddle5.prefab"; public static string PMRingOuter1 = "RoR2/DLC2/meridian/Assets/PMRingOuter1.prefab"; public static string PMRingOuter2 = "RoR2/DLC2/meridian/Assets/PMRingOuter2.prefab"; public static string PMRingOuter3 = "RoR2/DLC2/meridian/Assets/PMRingOuter3.prefab"; public static string PMRingOuter4 = "RoR2/DLC2/meridian/Assets/PMRingOuter4.prefab"; public static string PMRingOuter5 = "RoR2/DLC2/meridian/Assets/PMRingOuter5.prefab"; public static string PMRockPlatform = "RoR2/DLC2/meridian/Assets/PMRockPlatform.prefab"; public static string PMRubble1 = "RoR2/DLC2/meridian/Assets/PMRubble 1.prefab"; public static string PMRubble = "RoR2/DLC2/meridian/Assets/PMRubble.prefab"; public static string PMRubbleB = "RoR2/DLC2/meridian/Assets/PMRubbleB.prefab"; public static string PMSconces = "RoR2/DLC2/meridian/Assets/PMSconces.prefab"; public static string PMStatue = "RoR2/DLC2/meridian/Assets/PMStatue.prefab"; public static string PMStormCloud = "RoR2/DLC2/meridian/Assets/PMStormCloud.prefab"; public static string PMTerrain = "RoR2/DLC2/meridian/Assets/PMTerrain.prefab"; public static string PMTerrainMid = "RoR2/DLC2/meridian/Assets/PMTerrainMid.prefab"; public static string FalseSonBoss1PhaseSpeechController = "RoR2/DLC2/meridian/FalseSonBoss1PhaseSpeechController.prefab"; public static string FalseSonBossFinalPhaseSpeechController = "RoR2/DLC2/meridian/FalseSonBossFinalPhaseSpeechController.prefab"; public static string FalseSonBossSpeechController = "RoR2/DLC2/meridian/FalseSonBossSpeechController.prefab"; public static string PMDioramaDisplay = "RoR2/DLC2/meridian/PMDioramaDisplay.prefab"; public static string FalseSonLightningStrikeImpactEffect = "RoR2/DLC2/meridian/DisableSkillsLightning/FalseSonLightningStrikeImpactEffect.prefab"; public static string LightningStormController = "RoR2/DLC2/meridian/DisableSkillsLightning/LightningStormController.prefab"; public static string LightningStrikeImpactEffect = "RoR2/DLC2/meridian/DisableSkillsLightning/LightningStrikeImpactEffect.prefab"; public static string LightningStrikeInstance = "RoR2/DLC2/meridian/DisableSkillsLightning/LightningStrikeInstance.prefab"; public static string LightningStrikeInstanceDisableSkills = "RoR2/DLC2/meridian/DisableSkillsLightning/LightningStrikeInstance_DisableSkills.prefab"; public static string LightningStrikeInstanceLarge = "RoR2/DLC2/meridian/DisableSkillsLightning/LightningStrikeInstance_Large.prefab"; public static string LightningStrikePredictionEffect = "RoR2/DLC2/meridian/DisableSkillsLightning/LightningStrikePredictionEffect.prefab"; public static string SkillDisableCameraCrackle = "RoR2/DLC2/meridian/DisableSkillsLightning/SkillDisableCameraCrackle.prefab"; public static string EventClearedVFX = "RoR2/DLC2/meridian/EventClearedVFX.prefab"; public static string LunarGazeBlastVFX = "RoR2/DLC2/meridian/LunarGazeBlastVFX.prefab"; public static string LunarGazeChargePhase2VFX = "RoR2/DLC2/meridian/LunarGazeChargePhase2VFX.prefab"; public static string LunarGazeChargePhase3VFX = "RoR2/DLC2/meridian/LunarGazeChargePhase3VFX.prefab"; public static string mdlPMEventClearedVFX1 = "RoR2/DLC2/meridian/mdlPMEventClearedVFX1.fbx"; public static string MeridianArenaFormDestructVFX = "RoR2/DLC2/meridian/MeridianArenaFormDestructVFX.prefab"; public static string PMLaunchPad = "RoR2/DLC2/meridian/PMLaunchPad.prefab"; public static string WeatherMeridian = "RoR2/DLC2/meridian/Weather, Meridian.prefab"; public static string ScavengerFishingChairGreybox = "RoR2/DLC2/Scavenger_FishingChair_Greybox.fbx"; public static string Scrapyardgreybox1 = "RoR2/DLC2/Scrapyard_greybox_1.fbx"; public static string mdlLVFern = "RoR2/DLC2/village/Assets/mdlLVFern.fbx"; public static string mdlLVFernopt = "RoR2/DLC2/village/Assets/mdlLVFern_opt.fbx"; public static string mdlLVGrass = "RoR2/DLC2/village/Assets/mdlLVGrass.fbx"; public static string spmBbFern29 = "RoR2/DLC2/village/Assets/spmBbFern2.spm"; public static string spmBbFern2opt3 = "RoR2/DLC2/village/Assets/spmBbFern2_opt.spm"; public static string spmLVFernA = "RoR2/DLC2/village/Assets/spmLVFernA.prefab"; public static string spmLVFernB = "RoR2/DLC2/village/Assets/spmLVFernB.prefab"; public static string spmLVFernC = "RoR2/DLC2/village/Assets/spmLVFernC.prefab"; public static string spmLVGrass = "RoR2/DLC2/village/Assets/spmLVGrass.prefab"; public static string mdlLVArchitecture = "RoR2/DLC2/village/Assets/mdlLVArchitecture.fbx"; public static string mdlLVBrokenAltar = "RoR2/DLC2/village/Assets/mdlLVBrokenAltar.fbx"; public static string mdlLVBrokenPillar = "RoR2/DLC2/village/Assets/mdlLVBrokenPillar.fbx"; public static string mdlLVBrokenPillaropt = "RoR2/DLC2/village/Assets/mdlLVBrokenPillar_opt.fbx"; public static string mdlLVChimes = "RoR2/DLC2/village/Assets/mdlLVChimes.fbx"; public static string mdlLVDiorama = "RoR2/DLC2/village/Assets/mdlLVDiorama.fbx"; public static string mdlLVDune = "RoR2/DLC2/village/Assets/mdlLVDune.fbx"; public static string mdlLVGlassEgg = "RoR2/DLC2/village/Assets/mdlLVGlassEgg.fbx"; public static string mdlLVPillars = "RoR2/DLC2/village/Assets/mdlLVPillars.fbx"; public static string mdlLVStorm = "RoR2/DLC2/village/Assets/mdlLVStorm.fbx"; public static string mdlLVTerrain = "RoR2/DLC2/village/Assets/mdlLVTerrain.fbx"; public static string LVArcArchToggle = "RoR2/DLC2/village/Assets/LVArcArchToggle.prefab"; public static string LVArcBridge = "RoR2/DLC2/village/Assets/LVArcBridge.prefab"; public static string LVArcCliffCave = "RoR2/DLC2/village/Assets/LVArcCliffCave.prefab"; public static string LVArcHouseBuriedToggle = "RoR2/DLC2/village/Assets/LVArcHouseBuriedToggle.prefab"; public static string LVArcHouses = "RoR2/DLC2/village/Assets/LVArcHouses.prefab"; public static string LVArcStormOutlook = "RoR2/DLC2/village/Assets/LVArcStormOutlook.prefab"; public static string LVArcTemple = "RoR2/DLC2/village/Assets/LVArcTemple.prefab"; public static string LVArcTempleDoors = "RoR2/DLC2/village/Assets/LVArcTempleDoors.prefab"; public static string LVArcTempleSand = "RoR2/DLC2/village/Assets/LVArcTempleSand.prefab"; public static string LVBrokenAltar = "RoR2/DLC2/village/Assets/LVBrokenAltar.prefab"; public static string LVBrokenAltarCrystals = "RoR2/DLC2/village/Assets/LVBrokenAltarCrystals.prefab"; public static string LVBrokenPillar = "RoR2/DLC2/village/Assets/LVBrokenPillar.prefab"; public static string LVCameraParticlesGrass = "RoR2/DLC2/village/Assets/LVCameraParticlesGrass.prefab"; public static string LVCameraParticlesGrassopt = "RoR2/DLC2/village/Assets/LVCameraParticlesGrass_opt.prefab"; public static string LVChimeA = "RoR2/DLC2/village/Assets/LVChimeA.prefab"; public static string LVChimeB = "RoR2/DLC2/village/Assets/LVChimeB.prefab"; public static string LVDune = "RoR2/DLC2/village/Assets/LVDune.prefab"; public static string LVGlassEggBig = "RoR2/DLC2/village/Assets/LVGlassEggBig.prefab"; public static string LVGlassEggNoRope = "RoR2/DLC2/village/Assets/LVGlassEggNoRope.prefab"; public static string LVGlassEggSmall = "RoR2/DLC2/village/Assets/LVGlassEggSmall.prefab"; public static string LVPebble = "RoR2/DLC2/village/Assets/LVPebble.prefab"; public static string LVPillarA = "RoR2/DLC2/village/Assets/LVPillarA.prefab"; public static string LVPillarRubbleA = "RoR2/DLC2/village/Assets/LVPillarRubbleA.prefab"; public static string LVPillarRubbleB = "RoR2/DLC2/village/Assets/LVPillarRubbleB.prefab"; public static string LVPillarRubbleC = "RoR2/DLC2/village/Assets/LVPillarRubbleC.prefab"; public static string LVPillarTopB = "RoR2/DLC2/village/Assets/LVPillarTopB.prefab"; public static string LVPillarTopC = "RoR2/DLC2/village/Assets/LVPillarTopC.prefab"; public static string LVRockMedium = "RoR2/DLC2/village/Assets/LVRockMedium.prefab"; public static string LVTerrain = "RoR2/DLC2/village/Assets/LVTerrain.prefab"; public static string LVTerrainBackground = "RoR2/DLC2/village/Assets/LVTerrainBackground.prefab"; public static string LVTerrainFar = "RoR2/DLC2/village/Assets/LVTerrainFar.prefab"; public static string LVTerrainToggle = "RoR2/DLC2/village/Assets/LVTerrainToggle.prefab"; public static string LVDioramaDisplay = "RoR2/DLC2/village/LVDioramaDisplay.prefab"; public static string villagePOIManager = "RoR2/DLC2/village/village_POIManager.prefab"; public static string WeatherVillage = "RoR2/DLC2/village/Weather, Village.prefab"; public static string LVNightHangingVines = "RoR2/DLC2/villagenight/Assets/LVNight_HangingVines.prefab"; public static string LVNightGrass = "RoR2/DLC2/villagenight/Assets/LVNightGrass.prefab"; public static string LVNightValleyLily = "RoR2/DLC2/villagenight/Assets/LVNightValleyLily.prefab"; public static string LVVillageFlowerVines = "RoR2/DLC2/villagenight/Assets/LVVillageFlowerVines.prefab"; public static string mdlLVNightValleyLily = "RoR2/DLC2/villagenight/Assets/mdlLVNightValleyLily.fbx"; public static string meshVillageFlowerVines = "RoR2/DLC2/villagenight/Assets/meshVillageFlowerVines.fbx"; public static string mdlLVNArcHouses = "RoR2/DLC2/villagenight/Assets/mdlLVNArc_Houses.fbx"; public static string mdlLVNArcTemple = "RoR2/DLC2/villagenight/Assets/mdlLVNArc_Temple.fbx"; public static string mdlLVNArcVine = "RoR2/DLC2/villagenight/Assets/mdlLVNArcVine.fbx"; public static string mdlLVNBrazier = "RoR2/DLC2/villagenight/Assets/mdlLVNBrazier.fbx"; public static string mdlLVNBrazierMerged = "RoR2/DLC2/villagenight/Assets/mdlLVNBrazierMerged.fbx"; public static string mdlLVNEggChunkRoomA = "RoR2/DLC2/villagenight/Assets/mdlLVNEggChunkRoomA.fbx"; public static string mdlLVNEggChunkRoomB = "RoR2/DLC2/villagenight/Assets/mdlLVNEggChunkRoomB.fbx"; public static string mdlLVNEggChunkRoomC = "RoR2/DLC2/villagenight/Assets/mdlLVNEggChunkRoomC.fbx"; public static string mdlLVNEggRoomA = "RoR2/DLC2/villagenight/Assets/mdlLVNEggRoomA.fbx"; public static string mdlLVNEggRoomB = "RoR2/DLC2/villagenight/Assets/mdlLVNEggRoomB.fbx"; public static string mdlLVNEggRoomC = "RoR2/DLC2/villagenight/Assets/mdlLVNEggRoomC.fbx"; public static string mdlLVNightCrackedLemurianEgg = "RoR2/DLC2/villagenight/Assets/mdlLVNight_CrackedLemurianEgg.fbx"; public static string mdlLVNightwater = "RoR2/DLC2/villagenight/Assets/mdlLVNightwater.fbx"; public static string Village = "RoR2/DLC2/villagenight/Assets/Village.fbx"; public static string LVNEggChunkRoomA = "RoR2/DLC2/villagenight/Assets/LVNEggChunkRoomA.prefab"; public static string LVNEggChunkRoomB = "RoR2/DLC2/villagenight/Assets/LVNEggChunkRoomB.prefab"; public static string LVNEggChunkRoomC = "RoR2/DLC2/villagenight/Assets/LVNEggChunkRoomC.prefab"; public static string LVNEggRoomA = "RoR2/DLC2/villagenight/Assets/LVNEggRoomA.prefab"; public static string LVNEggRoomB = "RoR2/DLC2/villagenight/Assets/LVNEggRoomB.prefab"; public static string LVNEggRoomC = "RoR2/DLC2/villagenight/Assets/LVNEggRoomC.prefab"; public static string LVNightLemurianEggCrackedA = "RoR2/DLC2/villagenight/Assets/LVNightLemurianEgg_CrackedA.prefab"; public static string LVNightLemurianEggCrackedA1 = "RoR2/DLC2/villagenight/Assets/LVNightLemurianEgg_CrackedA1.prefab"; public static string LVNightLemurianEggCrackedA2 = "RoR2/DLC2/villagenight/Assets/LVNightLemurianEgg_CrackedA2.prefab"; public static string LVNightLemurianEggCrackedB = "RoR2/DLC2/villagenight/Assets/LVNightLemurianEgg_CrackedB.prefab"; public static string LVNightLemurianEggCrackedB2 = "RoR2/DLC2/villagenight/Assets/LVNightLemurianEgg_CrackedB2.prefab"; public static string LVNightLemurianEggCrackedC = "RoR2/DLC2/villagenight/Assets/LVNightLemurianEgg_CrackedC.prefab"; public static string LVNightLemurianEggCrackedC4 = "RoR2/DLC2/villagenight/Assets/LVNightLemurianEgg_CrackedC4.prefab"; public static string LVNArcHouses = "RoR2/DLC2/villagenight/Assets/LVNArc_Houses.prefab"; public static string LVNArcVine = "RoR2/DLC2/villagenight/Assets/LVNArcVine.prefab"; public static string LVNBrazier = "RoR2/DLC2/villagenight/Assets/LVNBrazier.prefab"; public static string LVNBrazieropt = "RoR2/DLC2/villagenight/Assets/LVNBrazier_opt.prefab"; public static string LVNBrazierFire = "RoR2/DLC2/villagenight/Assets/LVNBrazierFire.prefab"; public static string LVNBrazierFireopt = "RoR2/DLC2/villagenight/Assets/LVNBrazierFire_opt.prefab"; public static string LVNBrazierMerged = "RoR2/DLC2/villagenight/Assets/LVNBrazierMerged.prefab"; public static string LVNBrazierNoChain = "RoR2/DLC2/villagenight/Assets/LVNBrazierNoChain.prefab"; public static string LVNBrazierNoChainopt = "RoR2/DLC2/villagenight/Assets/LVNBrazierNoChain_opt.prefab"; public static string LVNightHatchingRoomNest = "RoR2/DLC2/villagenight/Assets/LVNight_HatchingRoomNest.prefab"; public static string LVNightRockA = "RoR2/DLC2/villagenight/Assets/LVNight_RockA.prefab"; public static string LVNightRockB = "RoR2/DLC2/villagenight/Assets/LVNight_RockB.prefab"; public static string LVNightRockC = "RoR2/DLC2/villagenight/Assets/LVNight_RockC.prefab"; public static string LVNightArcHousesDoorA = "RoR2/DLC2/villagenight/Assets/LVNightArc_HousesDoorA.prefab"; public static string LVNightArcHousesDoorB = "RoR2/DLC2/villagenight/Assets/LVNightArc_HousesDoorB.prefab"; public static string LVNightArcHousesDoorC = "RoR2/DLC2/villagenight/Assets/LVNightArc_HousesDoorC.prefab"; public static string LVNightCameraParticle = "RoR2/DLC2/villagenight/Assets/LVNightCameraParticle.prefab"; public static string LVNightCameraParticleopt = "RoR2/DLC2/villagenight/Assets/LVNightCameraParticle_opt.prefab"; public static string LVNightRockD = "RoR2/DLC2/villagenight/Assets/LVNightRockD.prefab"; public static string LVNightwater = "RoR2/DLC2/villagenight/Assets/LVNightwater.prefab"; public static string LVnightDioramaDisplay = "RoR2/DLC2/villagenight/LVnightDioramaDisplay.prefab"; public static string WeatherVillagenight = "RoR2/DLC2/villagenight/Weather, Villagenight.prefab"; public static string mdlArtifactOfPrestige = "RoR2/DLC3/mdlArtifactOfPrestige.fbx"; public static string PrestigeArtifact = "RoR2/DLC3/PrestigeArtifact.prefab"; public static string PrestigeEncounterPrefab = "RoR2/DLC3/PrestigeEncounterPrefab.prefab"; public static string SFXWaterFall = "RoR2/DLC3/SFX_WaterFall.prefab"; public static string DefectiveUnitBody = "RoR2/DLC3/DefectiveUnit/DefectiveUnitBody.prefab"; public static string DefectiveUnitExplosionVFXDeath = "RoR2/DLC3/DefectiveUnit/DefectiveUnitExplosionVFXDeath.prefab"; public static string DefectiveUnitMaster = "RoR2/DLC3/DefectiveUnit/DefectiveUnitMaster.prefab"; public static string DefectiveUnitPreDeath = "RoR2/DLC3/DefectiveUnit/DefectiveUnitPreDeath.prefab"; public static string DefectiveUnitSpawnEffect = "RoR2/DLC3/DefectiveUnit/DefectiveUnitSpawnEffect.prefab"; public static string mdlDefectiveUnit = "RoR2/DLC3/DefectiveUnit/mdlDefectiveUnit.fbx"; public static string mdlDefectiveUnitMaster = "RoR2/DLC3/DefectiveUnit/mdlDefectiveUnit@Master.fbx"; public static string mdlDefUnitCable1 = "RoR2/DLC3/DefectiveUnit/mdlDefUnit_Cable1.fbx"; public static string mdlDefUnitCable2 = "RoR2/DLC3/DefectiveUnit/mdlDefUnit_Cable2.fbx"; public static string mdlDefUnitEye = "RoR2/DLC3/DefectiveUnit/mdlDefUnit_Eye.fbx"; public static string ArtilleryChargeVFX = "RoR2/DLC3/DefectiveUnit/ArtilleryChargeVFX.prefab"; public static string ArtilleryLandedChildProjectile = "RoR2/DLC3/DefectiveUnit/ArtilleryLandedChildProjectile.prefab"; public static string ArtilleryLandedChildProjectileGhost = "RoR2/DLC3/DefectiveUnit/ArtilleryLandedChildProjectileGhost.prefab"; public static string ArtilleryLandedExplosionVFX = "RoR2/DLC3/DefectiveUnit/ArtilleryLandedExplosionVFX.prefab"; public static string ArtilleryProjectile = "RoR2/DLC3/DefectiveUnit/ArtilleryProjectile.prefab"; public static string DenialAOE = "RoR2/DLC3/DefectiveUnit/DenialAOE.prefab"; public static string DenialAOEGhost = "RoR2/DLC3/DefectiveUnit/DenialAOEGhost.prefab"; public static string DenialChargeVFX = "RoR2/DLC3/DefectiveUnit/DenialChargeVFX.prefab"; public static string DenialImpactVFX = "RoR2/DLC3/DefectiveUnit/DenialImpactVFX.prefab"; public static string DetonateAOE = "RoR2/DLC3/DefectiveUnit/DetonateAOE.prefab"; public static string DetonateAOEGhost = "RoR2/DLC3/DefectiveUnit/DetonateAOEGhost.prefab"; public static string DetonateChargeVFX = "RoR2/DLC3/DefectiveUnit/DetonateChargeVFX.prefab"; public static string DetonateDebuff = "RoR2/DLC3/DefectiveUnit/DetonateDebuff.prefab"; public static string DetonateImpactVFX = "RoR2/DLC3/DefectiveUnit/DetonateImpactVFX.prefab"; public static string DetonateVFX = "RoR2/DLC3/DefectiveUnit/DetonateVFX.prefab"; public static string mdlBolt01 = "RoR2/DLC3/DefectiveUnit/mdlBolt_01.fbx"; public static string mdlBolt02 = "RoR2/DLC3/DefectiveUnit/mdlBolt_02.fbx"; public static string mdlBolt03 = "RoR2/DLC3/DefectiveUnit/mdlBolt_03.fbx"; public static string mdlBolt04 = "RoR2/DLC3/DefectiveUnit/mdlBolt_04.fbx"; public static string mdlDetonateDebuffBolt01 = "RoR2/DLC3/DefectiveUnit/mdlDetonate_DebuffBolt01.fbx"; public static string mdlDetonateDebuffBolt02 = "RoR2/DLC3/DefectiveUnit/mdlDetonate_DebuffBolt02.fbx"; public static string mdlDetonateDebuffBolt03 = "RoR2/DLC3/DefectiveUnit/mdlDetonate_DebuffBolt03.fbx"; public static string mdlDetonateDebuffBolt04 = "RoR2/DLC3/DefectiveUnit/mdlDetonate_DebuffBolt04.fbx"; public static string mdlDetonateDefUnit01 = "RoR2/DLC3/DefectiveUnit/mdlDetonate_DefUnit01.fbx"; public static string mdlDetonateDefUnit02 = "RoR2/DLC3/DefectiveUnit/mdlDetonate_DefUnit02.fbx"; public static string mdlDetonateDefUnit03 = "RoR2/DLC3/DefectiveUnit/mdlDetonate_DefUnit03.fbx"; public static string mdlDetonateDefUnit04 = "RoR2/DLC3/DefectiveUnit/mdlDetonate_DefUnit04.fbx"; public static string mdlNoiseSphere02 = "RoR2/DLC3/DefectiveUnit/mdlNoiseSphere_02.fbx"; public static string DestructibleSpawnerChainProc = "RoR2/DLC3/DestructibleSpawner/DestructibleSpawnerChainProc.prefab"; public static string DestructibleSpawnerDetonateVFX = "RoR2/DLC3/DestructibleSpawner/DestructibleSpawnerDetonateVFX.prefab"; public static string DestructibleSpawnerObjectBody = "RoR2/DLC3/DestructibleSpawner/DestructibleSpawnerObjectBody.prefab"; public static string DestructibleSpawnerObjectChargeEffect = "RoR2/DLC3/DestructibleSpawner/DestructibleSpawnerObjectChargeEffect.prefab"; public static string DestructibleSpawnerObjectExplosionEffect = "RoR2/DLC3/DestructibleSpawner/DestructibleSpawnerObjectExplosionEffect.prefab"; public static string DestructibleSpawnerObjectSpawnEffect = "RoR2/DLC3/DestructibleSpawner/DestructibleSpawnerObjectSpawnEffect.prefab"; public static string mdlDrifterAlt = "RoR2/DLC3/Drifter/mdlDrifterAlt.fbx"; public static string mdlDrifterAltBagDeath = "RoR2/DLC3/Drifter/mdlDrifterAltBagDeath.fbx"; public static string AnimDrifteridle = "RoR2/DLC3/Drifter/Anim_Drifter_idle.fbx"; public static string bagrumble = "RoR2/DLC3/Drifter/bag_rumble.fbx"; public static string DashAirborne = "RoR2/DLC3/Drifter/Dash_Airborne.fbx"; public static string DashEntry = "RoR2/DLC3/Drifter/Dash_Entry.fbx"; public static string DashHitExit = "RoR2/DLC3/Drifter/Dash_Hit_Exit.fbx"; public static string DashLeap = "RoR2/DLC3/Drifter/Dash_Leap.fbx"; public static string DashLoop = "RoR2/DLC3/Drifter/Dash_Loop.fbx"; public static string DashMissExit = "RoR2/DLC3/Drifter/Dash_Miss_Exit.fbx"; public static string DrifterAnimAimLoopExpel = "RoR2/DLC3/Drifter/Drifter_Anim_Aim_Loop_Expel.fbx"; public static string DrifterAnimCleanUpCancel = "RoR2/DLC3/Drifter/Drifter_Anim_CleanUp_Cancel.fbx"; public static string DrifterAnimCleanUpHold = "RoR2/DLC3/Drifter/Drifter_Anim_CleanUp_Hold.fbx"; public static string DrifterAnimCleanUpReady = "RoR2/DLC3/Drifter/Drifter_Anim_CleanUp_Ready.fbx"; public static string DrifterAnimCleanUpThrow = "RoR2/DLC3/Drifter/Drifter_Anim_CleanUp_Throw.fbx"; public static string DrifterAnimDragExpel = "RoR2/DLC3/Drifter/Drifter_Anim_Drag_Expel.fbx"; public static string DrifterAnimExitExpel = "RoR2/DLC3/Drifter/Drifter_Anim_Exit_Expel.fbx"; public static string DrifterAnimExpel = "RoR2/DLC3/Drifter/Drifter_Anim_Expel.fbx"; public static string DrifterAnimExpelAim = "RoR2/DLC3/Drifter/Drifter_Anim_Expel_Aim.fbx"; public static string DrifterAnimExpelExit = "RoR2/DLC3/Drifter/Drifter_Anim_Expel_Exit.fbx"; public static string DrifterAnimShootExpel = "RoR2/DLC3/Drifter/Drifter_Anim_Shoot_Expel.fbx"; public static string DrifterAnimTinker = "RoR2/DLC3/Drifter/Drifter_Anim_Tinker.fbx"; public static string DrifterAnimTornadoExit = "RoR2/DLC3/Drifter/Drifter_Anim_Tornado_Exit.fbx"; public static string DrifterIdleAinm = "RoR2/DLC3/Drifter/Drifter_Idle_Ainm.fbx"; public static string TornadoExit = "RoR2/DLC3/Drifter/Tornado_Exit.fbx"; public static string TornadoSpinEntry = "RoR2/DLC3/Drifter/Tornado_Spin_Entry.fbx"; public static string TornadoSpinLoop = "RoR2/DLC3/Drifter/Tornado_Spin_Loop.fbx"; public static string DrifterBody = "RoR2/DLC3/Drifter/DrifterBody.prefab"; public static string DrifterCaptured = "RoR2/DLC3/Drifter/DrifterCaptured.prefab"; public static string DrifterCrosshair = "RoR2/DLC3/Drifter/DrifterCrosshair.prefab"; public static string DrifterDeathBag = "RoR2/DLC3/Drifter/DrifterDeathBag.prefab"; public static string DrifterDisplay = "RoR2/DLC3/Drifter/DrifterDisplay.prefab"; public static string DrifterMonsterMaster = "RoR2/DLC3/Drifter/DrifterMonsterMaster.prefab"; public static string mdlDrifter = "RoR2/DLC3/Drifter/mdlDrifter.fbx"; public static string mdlDrifterMaster = "RoR2/DLC3/Drifter/mdlDrifter@Master.fbx"; public static string mdlDrifterMaster2 = "RoR2/DLC3/Drifter/mdlDrifter@Master2.fbx"; public static string mdlDrifterBagDeath = "RoR2/DLC3/Drifter/mdlDrifterBagDeath.fbx"; public static string BagUI = "RoR2/DLC3/Drifter/Bag UI.prefab"; public static string BaggedCard = "RoR2/DLC3/Drifter/BaggedCard.prefab"; public static string JunkUI = "RoR2/DLC3/Drifter/Junk UI.prefab"; public static string DrifterBarrel = "RoR2/DLC3/Drifter/DrifterBarrel.prefab"; public static string DrifterBarrelGhost = "RoR2/DLC3/Drifter/DrifterBarrelGhost.prefab"; public static string DrifterBarrelImpact = "RoR2/DLC3/Drifter/DrifterBarrelImpact.prefab"; public static string DrifterBrokenDrone = "RoR2/DLC3/Drifter/DrifterBrokenDrone.prefab"; public static string DrifterBrokenDroneExplosionVFX = "RoR2/DLC3/Drifter/DrifterBrokenDroneExplosionVFX.prefab"; public static string DrifterBrokenDroneGhost = "RoR2/DLC3/Drifter/DrifterBrokenDroneGhost.prefab"; public static string DrifterBrokenDroneHealingWard = "RoR2/DLC3/Drifter/DrifterBrokenDroneHealingWard.prefab"; public static string DrifterBrokenHAND = "RoR2/DLC3/Drifter/DrifterBrokenHAND.prefab"; public static string DrifterBrokenHANDExplosionVFX = "RoR2/DLC3/Drifter/DrifterBrokenHANDExplosionVFX.prefab"; public static string DrifterBrokenHANDGhost = "RoR2/DLC3/Drifter/DrifterBrokenHANDGhost.prefab"; public static string DrifterBrokenHANDHealingWard = "RoR2/DLC3/Drifter/DrifterBrokenHANDHealingWard.prefab"; public static string DrifterBubbleShield = "RoR2/DLC3/Drifter/DrifterBubbleShield.prefab"; public static string DrifterEvilSkull = "RoR2/DLC3/Drifter/DrifterEvilSkull.prefab"; public static string DrifterEvilSkullGhost = "RoR2/DLC3/Drifter/DrifterEvilSkullGhost.prefab"; public static string DrifterEvilSkullImpactVFX = "RoR2/DLC3/Drifter/DrifterEvilSkullImpactVFX.prefab"; public static string DrifterGeode = "RoR2/DLC3/Drifter/DrifterGeode.prefab"; public static string DrifterGeodeGhost = "RoR2/DLC3/Drifter/DrifterGeodeGhost.prefab"; public static string DrifterGeodeMoneyPack = "RoR2/DLC3/Drifter/DrifterGeodeMoneyPack.prefab"; public static string DrifterGrenade = "RoR2/DLC3/Drifter/DrifterGrenade.prefab"; public static string DrifterGrenadeGhost = "RoR2/DLC3/Drifter/DrifterGrenadeGhost.prefab"; public static string DrifterHotSauce = "RoR2/DLC3/Drifter/DrifterHotSauce.prefab"; public static string DrifterHotSauceFireball = "RoR2/DLC3/Drifter/DrifterHotSauceFireball.prefab"; public static string DrifterJunkBall = "RoR2/DLC3/Drifter/DrifterJunkBall.prefab"; public static string DrifterJunkBalletteClassic = "RoR2/DLC3/Drifter/DrifterJunkBallette, Classic.prefab"; public static string DrifterJunkBallette = "RoR2/DLC3/Drifter/DrifterJunkBallette.prefab"; public static string DrifterJunkBalletteExplosionVFX = "RoR2/DLC3/Drifter/DrifterJunkBalletteExplosionVFX.prefab"; public static string DrifterKnife = "RoR2/DLC3/Drifter/DrifterKnife.prefab"; public static string DrifterProjectileIndicator = "RoR2/DLC3/Drifter/DrifterProjectileIndicator.prefab"; public static string DrifterPullEffectLegendaryVariant = "RoR2/DLC3/Drifter/DrifterPullEffect, Legendary Variant.prefab"; public static string DrifterPullEffectRareVariant = "RoR2/DLC3/Drifter/DrifterPullEffect, Rare Variant.prefab"; public static string DrifterPullEffectUncommonVariant = "RoR2/DLC3/Drifter/DrifterPullEffect, Uncommon Variant.prefab"; public static string DrifterPullEffect = "RoR2/DLC3/Drifter/DrifterPullEffect.prefab"; public static string DrifterThqwib = "RoR2/DLC3/Drifter/DrifterThqwib.prefab"; public static string DrifterThrowableVisualizer = "RoR2/DLC3/Drifter/DrifterThrowableVisualizer.prefab"; public static string DrifterToolbotCrate = "RoR2/DLC3/Drifter/DrifterToolbotCrate.prefab"; public static string DrifterToolbotCrateGhost = "RoR2/DLC3/Drifter/DrifterToolbotCrateGhost.prefab"; public static string DrifterBarrelDisplay = "RoR2/DLC3/Drifter/DrifterBarrelDisplay.prefab"; public static string DrifterBrokenDroneDisplay = "RoR2/DLC3/Drifter/DrifterBrokenDroneDisplay.prefab"; public static string DrifterBrokenHANDDisplay = "RoR2/DLC3/Drifter/DrifterBrokenHANDDisplay.prefab"; public static string DrifterBubbleShieldDisplay = "RoR2/DLC3/Drifter/DrifterBubbleShieldDisplay.prefab"; public static string DrifterCleanupExplosive = "RoR2/DLC3/Drifter/DrifterCleanupExplosive.prefab"; public static string DrifterCleanupExplosiveGhost = "RoR2/DLC3/Drifter/DrifterCleanupExplosiveGhost.prefab"; public static string DrifterCleanupGhost = "RoR2/DLC3/Drifter/DrifterCleanupGhost.prefab"; public static string DrifterCleanupProjectile = "RoR2/DLC3/Drifter/DrifterCleanupProjectile.prefab"; public static string DrifterCleanupShotgunProjectile = "RoR2/DLC3/Drifter/DrifterCleanupShotgunProjectile.prefab"; public static string DrifterEvilSkullDisplay = "RoR2/DLC3/Drifter/DrifterEvilSkullDisplay.prefab"; public static string DrifterGeodeDisplay = "RoR2/DLC3/Drifter/DrifterGeodeDisplay.prefab"; public static string DrifterGrenadeDisplay = "RoR2/DLC3/Drifter/DrifterGrenadeDisplay.prefab"; public static string DrifterHotSauceDisplay = "RoR2/DLC3/Drifter/DrifterHotSauceDisplay.prefab"; public static string DrifterJunkBallDisplay = "RoR2/DLC3/Drifter/DrifterJunkBallDisplay.prefab"; public static string DrifterKnifeDisplay = "RoR2/DLC3/Drifter/DrifterKnifeDisplay.prefab"; public static string DrifterPentaKnifeDiisplay = "RoR2/DLC3/Drifter/DrifterPentaKnifeDiisplay.prefab"; public static string DrifterThqwibBloomDisplay = "RoR2/DLC3/Drifter/DrifterThqwibBloomDisplay.prefab"; public static string DrifterThqwibDisplay = "RoR2/DLC3/Drifter/DrifterThqwibDisplay.prefab"; public static string DrifterToolbotCrateDisplay = "RoR2/DLC3/Drifter/DrifterToolbotCrateDisplay.prefab"; public static string JunkTrail = "RoR2/DLC3/Drifter/JunkTrail.prefab"; public static string beam = "RoR2/DLC3/Drifter/beam.fbx"; public static string coneFilter = "RoR2/DLC3/Drifter/coneFilter.fbx"; public static string discBreak = "RoR2/DLC3/Drifter/discBreak.fbx"; public static string engineBaring = "RoR2/DLC3/Drifter/engineBaring.fbx"; public static string gear = "RoR2/DLC3/Drifter/gear.fbx"; public static string gearshaft = "RoR2/DLC3/Drifter/gearshaft.fbx"; public static string pipe = "RoR2/DLC3/Drifter/pipe.fbx"; public static string ProjectileClusterLarge = "RoR2/DLC3/Drifter/ProjectileClusterLarge.fbx"; public static string OrbitTrail = "RoR2/DLC3/Drifter/OrbitTrail.prefab"; public static string DrifterCubeIndicator = "RoR2/DLC3/Drifter/DrifterCubeIndicator.prefab"; public static string DrifterJunkCubeActivateVFX = "RoR2/DLC3/Drifter/DrifterJunkCubeActivateVFX.prefab"; public static string DrifterJunkCubeExplosionVFX = "RoR2/DLC3/Drifter/DrifterJunkCubeExplosionVFX.prefab"; public static string DrifterJunkCubeProjectile = "RoR2/DLC3/Drifter/DrifterJunkCubeProjectile.prefab"; public static string DrifterJunkCubeProjectileGhost = "RoR2/DLC3/Drifter/DrifterJunkCubeProjectileGhost.prefab"; public static string DrifterJunkCubeShockWaveVFX = "RoR2/DLC3/Drifter/DrifterJunkCubeShockWaveVFX.prefab"; public static string JunkCubeDamagedEffect = "RoR2/DLC3/Drifter/JunkCubeDamagedEffect.prefab"; public static string JunkCubeLaunchEffect = "RoR2/DLC3/Drifter/JunkCubeLaunchEffect.prefab"; public static string JunkCubePreDeath = "RoR2/DLC3/Drifter/JunkCubePreDeath.prefab"; public static string JunkCubePrefab = "RoR2/DLC3/Drifter/JunkCubePrefab.prefab"; public static string JunkCubeThrowableVisualizer = "RoR2/DLC3/Drifter/JunkCubeThrowableVisualizer.prefab"; public static string mdlJumpCube = "RoR2/DLC3/Drifter/mdlJumpCube.fbx"; public static string DrifterHoard = "RoR2/DLC3/Drifter/DrifterHoard.prefab"; public static string DrifterTinkerRemote = "RoR2/DLC3/Drifter/DrifterTinkerRemote.prefab"; public static string mdlTinkerDevice = "RoR2/DLC3/Drifter/mdlTinkerDevice.fbx"; public static string TinkerCircleVFX = "RoR2/DLC3/Drifter/TinkerCircleVFX.prefab"; public static string TinkerEffect = "RoR2/DLC3/Drifter/TinkerEffect.prefab"; public static string TinkerImpactVFX = "RoR2/DLC3/Drifter/TinkerImpactVFX.prefab"; public static string TinkerIndicatorBad = "RoR2/DLC3/Drifter/TinkerIndicatorBad.prefab"; public static string TinkerIndicatorBreak = "RoR2/DLC3/Drifter/TinkerIndicatorBreak.prefab"; public static string TinkerIndicatorReroll = "RoR2/DLC3/Drifter/TinkerIndicatorReroll.prefab"; public static string TinkerWave = "RoR2/DLC3/Drifter/TinkerWave.prefab"; public static string TinkerWaveGhostVariant = "RoR2/DLC3/Drifter/TinkerWaveGhost Variant.prefab"; public static string TinkerWaveGhost = "RoR2/DLC3/Drifter/TinkerWaveGhost.prefab"; public static string ThrownObjectProjectile = "RoR2/DLC3/Drifter/ThrownObjectProjectile.prefab"; public static string ThrownObjectProjectileNoStun = "RoR2/DLC3/Drifter/ThrownObjectProjectileNoStun.prefab"; public static string DrifterBluntForceImpactVFX = "RoR2/DLC3/Drifter/DrifterBluntForceImpactVFX.prefab"; public static string DrifterBluntForceSlamGroundImpVFX = "RoR2/DLC3/Drifter/DrifterBluntForceSlamGroundImpVFX.prefab"; public static string DrifterBluntForceSlamImpactVFX = "RoR2/DLC3/Drifter/DrifterBluntForceSlamImpactVFX.prefab"; public static string DrifterBluntForceSwingLeftVFX = "RoR2/DLC3/Drifter/DrifterBluntForceSwingLeftVFX.prefab"; public static string DrifterBluntForceSwingRightVFX = "RoR2/DLC3/Drifter/DrifterBluntForceSwingRightVFX.prefab"; public static string DrifterBluntForceSwingSlamVFX = "RoR2/DLC3/Drifter/DrifterBluntForceSwingSlamVFX.prefab"; public static string DrifterCleanupExplosionVFX = "RoR2/DLC3/Drifter/DrifterCleanupExplosionVFX.prefab"; public static string DrifterCleanUpMuzzleFlash = "RoR2/DLC3/Drifter/DrifterCleanUpMuzzleFlash.prefab"; public static string DrifterCleanUpMuzzleFlashExplosive = "RoR2/DLC3/Drifter/DrifterCleanUpMuzzleFlashExplosive.prefab"; public static string DrifterCleanUpMuzzleFlashShotgun = "RoR2/DLC3/Drifter/DrifterCleanUpMuzzleFlashShotgun.prefab"; public static string DrifterCleanupProjectileHitImpact = "RoR2/DLC3/Drifter/DrifterCleanupProjectileHitImpact.prefab"; public static string DrifterCleanupProjectileImpact = "RoR2/DLC3/Drifter/DrifterCleanupProjectileImpact.prefab"; public static string DrifterConsumeVFX = "RoR2/DLC3/Drifter/DrifterConsumeVFX.prefab"; public static string DrifterJunkPadJumpVFX = "RoR2/DLC3/Drifter/DrifterJunkPadJumpVFX.prefab"; public static string DrifterPoisonNovaProc = "RoR2/DLC3/Drifter/DrifterPoisonNovaProc.prefab"; public static string DrifterRepossessGroundImpVFX = "RoR2/DLC3/Drifter/DrifterRepossessGroundImpVFX.prefab"; public static string DrifterSuffocateConsumeVFX = "RoR2/DLC3/Drifter/DrifterSuffocateConsumeVFX.prefab"; public static string DrifterSuffocateImpactVFX = "RoR2/DLC3/Drifter/DrifterSuffocateImpactVFX.prefab"; public static string DrifterSuffocateSwingVFX = "RoR2/DLC3/Drifter/DrifterSuffocateSwingVFX.prefab"; public static string DrifterTornadoImpact = "RoR2/DLC3/Drifter/DrifterTornadoImpact.prefab"; public static string DrifterTornadoImpactVFX = "RoR2/DLC3/Drifter/DrifterTornadoImpactVFX.prefab"; public static string DrifterTornadoVFX = "RoR2/DLC3/Drifter/DrifterTornadoVFX.prefab"; public static string DrifterTornadoVFXSmall = "RoR2/DLC3/Drifter/DrifterTornadoVFXSmall.prefab"; public static string mdlDrifterBluntSwipe = "RoR2/DLC3/Drifter/mdlDrifterBluntSwipe.fbx"; public static string mdlDrifterBluntSwipe02 = "RoR2/DLC3/Drifter/mdlDrifterBluntSwipe02.fbx"; public static string mdlJumpCubeFan = "RoR2/DLC3/Drifter/mdlJumpCubeFan.fbx"; public static string mdlJumpCubeSide01 = "RoR2/DLC3/Drifter/mdlJumpCubeSide01.fbx"; public static string mdlJumpCubeSide02 = "RoR2/DLC3/Drifter/mdlJumpCubeSide02.fbx"; public static string mdlJumpCubeWood01 = "RoR2/DLC3/Drifter/mdlJumpCubeWood01.fbx"; public static string mdlJumpCubeWood02 = "RoR2/DLC3/Drifter/mdlJumpCubeWood02.fbx"; public static string mdlLongSwipe = "RoR2/DLC3/Drifter/mdlLongSwipe.fbx"; public static string mdlLongSwipe02 = "RoR2/DLC3/Drifter/mdlLongSwipe02.fbx"; public static string dronetechalt = "RoR2/DLC3/Drone Tech/dronetech_alt.fbx"; public static string aimpitchyaw = "RoR2/DLC3/Drone Tech/aim_pitch_yaw.fbx"; public static string airdownloop = "RoR2/DLC3/Drone Tech/air_down_loop.fbx"; public static string airuploop = "RoR2/DLC3/Drone Tech/air_up_loop.fbx"; public static string flinch = "RoR2/DLC3/Drone Tech/flinch.fbx"; public static string glide = "RoR2/DLC3/Drone Tech/glide.fbx"; public static string glidebackward = "RoR2/DLC3/Drone Tech/glide_backward.fbx"; public static string glideforward = "RoR2/DLC3/Drone Tech/glide_forward.fbx"; public static string glideidle = "RoR2/DLC3/Drone Tech/glide_idle.fbx"; public static string glideleft = "RoR2/DLC3/Drone Tech/glide_left.fbx"; public static string glideright = "RoR2/DLC3/Drone Tech/glide_right.fbx"; public static string idle = "RoR2/DLC3/Drone Tech/idle.fbx"; public static string jump = "RoR2/DLC3/Drone Tech/jump.fbx"; public static string moveback = "RoR2/DLC3/Drone Tech/move_back.fbx"; public static string moveforward = "RoR2/DLC3/Drone Tech/move_forward.fbx"; public static string moveleft = "RoR2/DLC3/Drone Tech/move_left.fbx"; public static string moveright = "RoR2/DLC3/Drone Tech/move_right.fbx"; public static string runtoidle = "RoR2/DLC3/Drone Tech/run_to_idle.fbx"; public static string sprint = "RoR2/DLC3/Drone Tech/sprint.fbx"; public static string droneballanimation = "RoR2/DLC3/Drone Tech/droneball_animation.fbx"; public static string fidget1 = "RoR2/DLC3/Drone Tech/fidget1.fbx"; public static string fidget2 = "RoR2/DLC3/Drone Tech/fidget2.fbx"; public static string fidget3 = "RoR2/DLC3/Drone Tech/fidget3.fbx"; public static string intro27 = "RoR2/DLC3/Drone Tech/intro.fbx"; public static string introidle = "RoR2/DLC3/Drone Tech/intro_idle.fbx"; public static string armcharge = "RoR2/DLC3/Drone Tech/arm_charge.fbx"; public static string BallCompress = "RoR2/DLC3/Drone Tech/BallCompress.fbx"; public static string CommandHold = "RoR2/DLC3/Drone Tech/CommandHold.fbx"; public static string CommandOneShot = "RoR2/DLC3/Drone Tech/CommandOneShot.fbx"; public static string CommandOneShot2 = "RoR2/DLC3/Drone Tech/CommandOneShot2.fbx"; public static string CommandOneShot3 = "RoR2/DLC3/Drone Tech/CommandOneShot3.fbx"; public static string DroneLeap = "RoR2/DLC3/Drone Tech/DroneLeap.fbx"; public static string DroneLeapair = "RoR2/DLC3/Drone Tech/DroneLeap_air.fbx"; public static string droneleapidle = "RoR2/DLC3/Drone Tech/droneleap_idle.fbx"; public static string glideBallCompress = "RoR2/DLC3/Drone Tech/glide_BallCompress.fbx"; public static string glidegrenadefire = "RoR2/DLC3/Drone Tech/glide_grenadefire.fbx"; public static string glideSlugShot = "RoR2/DLC3/Drone Tech/glide_SlugShot.fbx"; public static string glideSlugShotFullCharge = "RoR2/DLC3/Drone Tech/glide_SlugShot_FullCharge.fbx"; public static string grenadefire = "RoR2/DLC3/Drone Tech/grenadefire.fbx"; public static string Shield = "RoR2/DLC3/Drone Tech/Shield.fbx"; public static string SlugShot = "RoR2/DLC3/Drone Tech/SlugShot.fbx"; public static string SlugShotFullCharge = "RoR2/DLC3/Drone Tech/SlugShot_FullCharge.fbx"; public static string CommandDroneAttackIndicator = "RoR2/DLC3/Drone Tech/CommandDroneAttackIndicator.prefab"; public static string CommandDroneHealIndicator = "RoR2/DLC3/Drone Tech/CommandDroneHealIndicator.prefab"; public static string CommandDroneShieldIndicator = "RoR2/DLC3/Drone Tech/CommandDroneShieldIndicator.prefab"; public static string CommandDroneTrackingIndicator = "RoR2/DLC3/Drone Tech/CommandDroneTrackingIndicator.prefab"; public static string CommandDroneUtilityIndicator = "RoR2/DLC3/Drone Tech/CommandDroneUtilityIndicator.prefab"; public static string CommandTargetAttackIndicator = "RoR2/DLC3/Drone Tech/CommandTargetAttackIndicator.prefab"; public static string CommandTargetHealIndicator = "RoR2/DLC3/Drone Tech/CommandTargetHealIndicator.prefab"; public static string DroneTechBraceScreen = "RoR2/DLC3/Drone Tech/DroneTechBraceScreen.prefab"; public static string mdlDroneTechBraceScreen = "RoR2/DLC3/Drone Tech/mdlDroneTechBraceScreen.fbx"; public static string DroneTechBody = "RoR2/DLC3/Drone Tech/DroneTechBody.prefab"; public static string DroneTechCrosshair = "RoR2/DLC3/Drone Tech/DroneTechCrosshair.prefab"; public static string DroneTechDisplay = "RoR2/DLC3/Drone Tech/DroneTechDisplay.prefab"; public static string DroneTechMonsterMaster = "RoR2/DLC3/Drone Tech/DroneTechMonsterMaster.prefab"; public static string DroneTechSprintingCrosshair = "RoR2/DLC3/Drone Tech/DroneTechSprintingCrosshair.prefab"; public static string droneball = "RoR2/DLC3/Drone Tech/droneball.fbx"; public static string droneballdebris = "RoR2/DLC3/Drone Tech/droneball_debris.fbx"; public static string dronetech = "RoR2/DLC3/Drone Tech/dronetech.fbx"; public static string DroneBlinkInEffect = "RoR2/DLC3/Drone Tech/DroneBlinkInEffect.prefab"; public static string DroneBlinkOutEffect = "RoR2/DLC3/Drone Tech/DroneBlinkOutEffect.prefab"; public static string DroneSlotBig = "RoR2/DLC3/Drone Tech/DroneSlotBig.prefab"; public static string DroneSlotSmall = "RoR2/DLC3/Drone Tech/DroneSlotSmall.prefab"; public static string DroneTechDronesOverlay = "RoR2/DLC3/Drone Tech/DroneTechDronesOverlay.prefab"; public static string mdlNanoBomb = "RoR2/DLC3/Drone Tech/mdlNanoBomb.fbx"; public static string NanoBombExplosion = "RoR2/DLC3/Drone Tech/NanoBombExplosion.prefab"; public static string NanoBombMuzzleFlashVFX = "RoR2/DLC3/Drone Tech/NanoBombMuzzleFlashVFX.prefab"; public static string NanoBombProjectile = "RoR2/DLC3/Drone Tech/NanoBombProjectile.prefab"; public static string NanoBombProjectileGhost = "RoR2/DLC3/Drone Tech/NanoBombProjectileGhost.prefab"; public static string NanoSeekingProjectile = "RoR2/DLC3/Drone Tech/NanoSeekingProjectile.prefab"; public static string NanoSeekingProjectileGhost = "RoR2/DLC3/Drone Tech/NanoSeekingProjectileGhost.prefab"; public static string NanoSeekingProjectileImpactVFX = "RoR2/DLC3/Drone Tech/NanoSeekingProjectileImpactVFX.prefab"; public static string NanoPistolChargeEffect = "RoR2/DLC3/Drone Tech/NanoPistolChargeEffect.prefab"; public static string NanoPistolExplosion = "RoR2/DLC3/Drone Tech/NanoPistolExplosion.prefab"; public static string NanoPistolImpactVFX = "RoR2/DLC3/Drone Tech/NanoPistolImpactVFX.prefab"; public static string NanoPistolKillEffect = "RoR2/DLC3/Drone Tech/NanoPistolKillEffect.prefab"; public static string NanoPistolMuzzleFlashVFX = "RoR2/DLC3/Drone Tech/NanoPistolMuzzleFlashVFX.prefab"; public static string NanoPistolOrbEffect = "RoR2/DLC3/Drone Tech/NanoPistolOrbEffect.prefab"; public static string NanoPistolRicochetImpactEffect = "RoR2/DLC3/Drone Tech/NanoPistolRicochetImpactEffect.prefab"; public static string TracerNanoPistol = "RoR2/DLC3/Drone Tech/TracerNanoPistol.prefab"; public static string TracerNanoPistolCharged = "RoR2/DLC3/Drone Tech/TracerNanoPistolCharged.prefab"; public static string CommandActivateAttackGauntletVFX = "RoR2/DLC3/Drone Tech/CommandActivateAttackGauntletVFX.prefab"; public static string CommandActivateHealGauntletVFX = "RoR2/DLC3/Drone Tech/CommandActivateHealGauntletVFX.prefab"; public static string CommandActivateRecallGauntletVFX = "RoR2/DLC3/Drone Tech/CommandActivateRecallGauntletVFX.prefab"; public static string BombardmentChargeEffect = "RoR2/DLC3/Drone Tech/BombardmentChargeEffect.prefab"; public static string BombardmentOrbEffect = "RoR2/DLC3/Drone Tech/BombardmentOrbEffect.prefab"; public static string BombardmentOrbImpactEffect = "RoR2/DLC3/Drone Tech/BombardmentOrbImpactEffect.prefab"; public static string CommandDynamite = "RoR2/DLC3/Drone Tech/CommandDynamite.prefab"; public static string CommandDynamiteExplosion = "RoR2/DLC3/Drone Tech/CommandDynamiteExplosion.prefab"; public static string CommandDynamiteGhost = "RoR2/DLC3/Drone Tech/CommandDynamiteGhost.prefab"; public static string CommandCleanupDroneVacuum = "RoR2/DLC3/Drone Tech/CommandCleanupDroneVacuum.prefab"; public static string CommandCleanupTetherVFX = "RoR2/DLC3/Drone Tech/CommandCleanupTetherVFX.prefab"; public static string LaserDiscMiniImpactEffect = "RoR2/DLC3/Drone Tech/LaserDiscMiniImpactEffect.prefab"; public static string LaserDiscMiniOrbEffect = "RoR2/DLC3/Drone Tech/LaserDiscMiniOrbEffect.prefab"; public static string CommandTurretOrbEffect = "RoR2/DLC3/Drone Tech/CommandTurretOrbEffect.prefab"; public static string ChargeHealingShot = "RoR2/DLC3/Drone Tech/ChargeHealingShot.prefab"; public static string HealShotOrbEffect = "RoR2/DLC3/Drone Tech/HealShotOrbEffect.prefab"; public static string MuzzleflashHealShot = "RoR2/DLC3/Drone Tech/MuzzleflashHealShot.prefab"; public static string HaulerGroundSlam = "RoR2/DLC3/Drone Tech/HaulerGroundSlam.prefab"; public static string HaulerRockGhost = "RoR2/DLC3/Drone Tech/HaulerRockGhost.prefab"; public static string HaulerRockProjectile = "RoR2/DLC3/Drone Tech/HaulerRockProjectile.prefab"; public static string HaulerThrowEffect = "RoR2/DLC3/Drone Tech/HaulerThrowEffect.prefab"; public static string HaulerThrowProjectile = "RoR2/DLC3/Drone Tech/HaulerThrowProjectile.prefab"; public static string ChargeCommandHealingNova = "RoR2/DLC3/Drone Tech/ChargeCommandHealingNova.prefab"; public static string CommandHealNovaPulseEffect = "RoR2/DLC3/Drone Tech/CommandHealNovaPulseEffect.prefab"; public static string CommandFlamethrowerEffect = "RoR2/DLC3/Drone Tech/CommandFlamethrowerEffect.prefab"; public static string CommandJailerDroneCage = "RoR2/DLC3/Drone Tech/CommandJailerDroneCage.prefab"; public static string CommandJailerDroneWallsEffect = "RoR2/DLC3/Drone Tech/CommandJailerDroneWallsEffect.prefab"; public static string JailerGravSphereTether = "RoR2/DLC3/Drone Tech/JailerGravSphereTether.prefab"; public static string JunkBallExplosion = "RoR2/DLC3/Drone Tech/JunkBallExplosion.prefab"; public static string JunkBallGhost = "RoR2/DLC3/Drone Tech/JunkBallGhost.prefab"; public static string JunkBallProjectile = "RoR2/DLC3/Drone Tech/JunkBallProjectile.prefab"; public static string MuzzleflashJunkBall = "RoR2/DLC3/Drone Tech/MuzzleflashJunkBall.prefab"; public static string CommandPaladinRocket = "RoR2/DLC3/Drone Tech/CommandPaladinRocket.prefab"; public static string CommandMicroMissileGhost = "RoR2/DLC3/Drone Tech/CommandMicroMissileGhost.prefab"; public static string CommandMicroMissileProjectile = "RoR2/DLC3/Drone Tech/CommandMicroMissileProjectile.prefab"; public static string ChargeRecharge = "RoR2/DLC3/Drone Tech/ChargeRecharge.prefab"; public static string MuzzleflashRecharge = "RoR2/DLC3/Drone Tech/MuzzleflashRecharge.prefab"; public static string RechargeOrbEffect = "RoR2/DLC3/Drone Tech/RechargeOrbEffect.prefab"; public static string DroneReadyEffect = "RoR2/DLC3/Drone Tech/DroneReadyEffect.prefab"; public static string DroneStockOrbEffect = "RoR2/DLC3/Drone Tech/DroneStockOrbEffect.prefab"; public static string DroneHeadbuttImpact = "RoR2/DLC3/Drone Tech/DroneHeadbuttImpact.prefab"; public static string DroneHeadbuttImpactCrit = "RoR2/DLC3/Drone Tech/DroneHeadbuttImpactCrit.prefab"; public static string DroneHeadbuttTrackingIndicator = "RoR2/DLC3/Drone Tech/DroneHeadbuttTrackingIndicator.prefab"; public static string DroneHeadbuttTrail = "RoR2/DLC3/Drone Tech/DroneHeadbuttTrail.prefab"; public static string DroneHeadbuttTrailCrit = "RoR2/DLC3/Drone Tech/DroneHeadbuttTrailCrit.prefab"; public static string DroneTechPaintCrosshair = "RoR2/DLC3/Drone Tech/DroneTechPaintCrosshair.prefab"; public static string DroneTechPaintingIndicator = "RoR2/DLC3/Drone Tech/DroneTechPaintingIndicator.prefab"; public static string DroneTechTrackingIndicator = "RoR2/DLC3/Drone Tech/DroneTechTrackingIndicator.prefab"; public static string DroneBallDelayKnockupEffect = "RoR2/DLC3/Drone Tech/DroneBallDelayKnockupEffect.prefab"; public static string DroneBallGhost = "RoR2/DLC3/Drone Tech/DroneBallGhost.prefab"; public static string DroneBallKillEffect = "RoR2/DLC3/Drone Tech/DroneBallKillEffect.prefab"; public static string DroneBallKnockupEffect = "RoR2/DLC3/Drone Tech/DroneBallKnockupEffect.prefab"; public static string DroneBallProjectile = "RoR2/DLC3/Drone Tech/DroneBallProjectile.prefab"; public static string DroneOrbEffect = "RoR2/DLC3/Drone Tech/DroneOrbEffect.prefab"; public static string DroneShockedEffect = "RoR2/DLC3/Drone Tech/DroneShockedEffect.prefab"; public static string EmptyDroneBallDeath = "RoR2/DLC3/Drone Tech/EmptyDroneBallDeath.prefab"; public static string EmptyDroneBallProjectile = "RoR2/DLC3/Drone Tech/EmptyDroneBallProjectile.prefab"; public static string NanoBugDamageOrbEffect = "RoR2/DLC3/Drone Tech/NanoBugDamageOrbEffect.prefab"; public static string NanoBugDebuffController = "RoR2/DLC3/Drone Tech/NanoBugDebuffController.prefab"; public static string NanoBugImpactEffect = "RoR2/DLC3/Drone Tech/NanoBugImpactEffect.prefab"; public static string NanoPistolKillEffect1 = "RoR2/DLC3/Drone Tech/NanoPistolKillEffect 1.prefab"; public static string DroneBallCollapseEffect = "RoR2/DLC3/Drone Tech/DroneBallCollapseEffect.prefab"; public static string DroneBallDamagedEffect = "RoR2/DLC3/Drone Tech/DroneBallDamagedEffect.prefab"; public static string DroneBallDotZone = "RoR2/DLC3/Drone Tech/DroneBallDotZone.prefab"; public static string DroneBallShootableProjectile = "RoR2/DLC3/Drone Tech/DroneBallShootableProjectile.prefab"; public static string CommandCarryBeam = "RoR2/DLC3/Drone Tech/CommandCarryBeam.prefab"; public static string CommandCarryTransportVFX = "RoR2/DLC3/Drone Tech/CommandCarryTransportVFX.prefab"; public static string DroneDisabledEffect = "RoR2/DLC3/Drone Tech/DroneDisabledEffect.prefab"; public static string DroneEnabledEffect = "RoR2/DLC3/Drone Tech/DroneEnabledEffect.prefab"; public static string DroneFlightTrail = "RoR2/DLC3/Drone Tech/DroneFlightTrail.prefab"; public static string DronePathVisualizer = "RoR2/DLC3/Drone Tech/DronePathVisualizer.prefab"; public static string DroneSummonEffect = "RoR2/DLC3/Drone Tech/DroneSummonEffect.prefab"; public static string DroneTrackingIndicator = "RoR2/DLC3/Drone Tech/DroneTrackingIndicator.prefab"; public static string DroneTechShield = "RoR2/DLC3/Drone Tech/DroneTechShield.prefab"; public static string DroneTechShieldExplosion = "RoR2/DLC3/Drone Tech/DroneTechShieldExplosion.prefab"; public static string mdlDroneTechShield = "RoR2/DLC3/Drone Tech/mdlDroneTech_Shield.fbx"; public static string mdlDroneTechShieldProjector = "RoR2/DLC3/Drone Tech/mdlDroneTech_ShieldProjector.fbx"; public static string ShieldProjectile = "RoR2/DLC3/Drone Tech/ShieldProjectile.prefab"; public static string ShieldProjectile100 = "RoR2/DLC3/Drone Tech/ShieldProjectile100.prefab"; public static string ShieldProjectile25 = "RoR2/DLC3/Drone Tech/ShieldProjectile25.prefab"; public static string ShieldProjectile50 = "RoR2/DLC3/Drone Tech/ShieldProjectile50.prefab"; public static string ShieldProjectile75 = "RoR2/DLC3/Drone Tech/ShieldProjectile75.prefab"; public static string ShieldProjectileEmpty = "RoR2/DLC3/Drone Tech/ShieldProjectileEmpty.prefab"; public static string ShieldProjectileGhost = "RoR2/DLC3/Drone Tech/ShieldProjectileGhost.prefab"; public static string ShieldProjectileGhost100 = "RoR2/DLC3/Drone Tech/ShieldProjectileGhost100.prefab"; public static string ShieldProjectileGhost25 = "RoR2/DLC3/Drone Tech/ShieldProjectileGhost25.prefab"; public static string ShieldProjectileGhost50 = "RoR2/DLC3/Drone Tech/ShieldProjectileGhost50.prefab"; public static string ShieldProjectileGhost75 = "RoR2/DLC3/Drone Tech/ShieldProjectileGhost75.prefab"; public static string ShieldProjectileGhostEmpty = "RoR2/DLC3/Drone Tech/ShieldProjectileGhostEmpty.prefab"; public static string ShieldProjectileImpactEffect = "RoR2/DLC3/Drone Tech/ShieldProjectileImpactEffect.prefab"; public static string DTShieldProjectileEND100VFX = "RoR2/DLC3/Drone Tech/DT_ShieldProjectileEND100VFX.prefab"; public static string DTShieldProjectileEND25VFX = "RoR2/DLC3/Drone Tech/DT_ShieldProjectileEND25VFX.prefab"; public static string DTShieldProjectileEND50VFX = "RoR2/DLC3/Drone Tech/DT_ShieldProjectileEND50VFX.prefab"; public static string DTShieldProjectileEND75VFX = "RoR2/DLC3/Drone Tech/DT_ShieldProjectileEND75VFX.prefab"; public static string DTShieldProjectileSRT100VFX = "RoR2/DLC3/Drone Tech/DT_ShieldProjectileSRT100VFX.prefab"; public static string DTShieldProjectileSRT25VFX = "RoR2/DLC3/Drone Tech/DT_ShieldProjectileSRT25VFX.prefab"; public static string DTShieldProjectileSRT50VFX = "RoR2/DLC3/Drone Tech/DT_ShieldProjectileSRT50VFX.prefab"; public static string DTShieldProjectileSRT75VFX = "RoR2/DLC3/Drone Tech/DT_ShieldProjectileSRT75VFX.prefab"; public static string DTShieldPulse100VFX = "RoR2/DLC3/Drone Tech/DT_ShieldPulse100VFX.prefab"; public static string DTShieldPulse25VFX = "RoR2/DLC3/Drone Tech/DT_ShieldPulse25VFX.prefab"; public static string DTShieldPulse50VFX = "RoR2/DLC3/Drone Tech/DT_ShieldPulse50VFX.prefab"; public static string DTShieldPulse75VFX = "RoR2/DLC3/Drone Tech/DT_ShieldPulse75VFX.prefab"; public static string mdlDTShieldBlastFunnel = "RoR2/DLC3/Drone Tech/mdlDT_ShieldBlastFunnel.fbx"; public static string CommandDroneActiveDamageIndicator = "RoR2/DLC3/Drone Tech/CommandDroneActiveDamageIndicator.prefab"; public static string CommandDroneActiveHealIndicator = "RoR2/DLC3/Drone Tech/CommandDroneActiveHealIndicator.prefab"; public static string DroneTechActivateDamageOverlay28 = "RoR2/DLC3/Drone Tech/DroneTechActivateDamageOverlay.prefab"; public static string DroneTechActivateHealOverlay7 = "RoR2/DLC3/Drone Tech/DroneTechActivateHealOverlay.prefab"; public static string DroneTechPurchaseVFX = "RoR2/DLC3/Drone Tech/DroneTechPurchaseVFX.prefab"; public static string mdlDroneTechBraceFX = "RoR2/DLC3/Drone Tech/mdlDroneTech_BraceFX.fbx"; public static string mdlDroneTechHandFX = "RoR2/DLC3/Drone Tech/mdlDroneTech_HandFX.fbx"; public static string mdlDroneTechVestFX = "RoR2/DLC3/Drone Tech/mdlDroneTech_VestFX.fbx"; public static string BombardmentDroneBody = "RoR2/DLC3/Drones/BombardmentDroneBody.prefab"; public static string BombardmentDroneBodyRemoteOp = "RoR2/DLC3/Drones/BombardmentDroneBodyRemoteOp.prefab"; public static string BombardmentDroneBroken = "RoR2/DLC3/Drones/BombardmentDroneBroken.prefab"; public static string BombardmentDroneMaster = "RoR2/DLC3/Drones/BombardmentDroneMaster.prefab"; public static string mdlBombardmentBase = "RoR2/DLC3/Drones/mdlBombardmentBase.fbx"; public static string mdlBombardmentDrone = "RoR2/DLC3/Drones/mdlBombardmentDrone.fbx"; public static string mdlBombardmentDronemaster = "RoR2/DLC3/Drones/mdlBombardmentDrone@master.fbx"; public static string BombardmentDroneProjectilePrefab = "RoR2/DLC3/Drones/BombardmentDroneProjectilePrefab.prefab"; public static string BombardmentDroneProjectilePrefabRemoteOp = "RoR2/DLC3/Drones/BombardmentDroneProjectilePrefabRemoteOp.prefab"; public static string ShockedEffectRed = "RoR2/DLC3/Drones/ShockedEffectRed.prefab"; public static string BombardmentRaysVFX = "RoR2/DLC3/Drones/BombardmentRaysVFX.prefab"; public static string BombardmentRemoteVFX = "RoR2/DLC3/Drones/BombardmentRemoteVFX.prefab"; public static string BombardmentStaticVFX = "RoR2/DLC3/Drones/BombardmentStaticVFX.prefab"; public static string BombardmentVFX = "RoR2/DLC3/Drones/BombardmentVFX.prefab"; public static string EntangleOrbEffect1 = "RoR2/DLC3/Drones/EntangleOrbEffect 1.prefab"; public static string mdlBombardmentDroneRayFX = "RoR2/DLC3/Drones/mdlBombardmentDrone_Ray_FX.fbx"; public static string mdlBombardmentDroneRock = "RoR2/DLC3/Drones/mdlBombardmentDroneRock.fbx"; public static string CleanupDroneBody = "RoR2/DLC3/Drones/CleanupDroneBody.prefab"; public static string CleanupDroneBodyRemoteOp = "RoR2/DLC3/Drones/CleanupDroneBodyRemoteOp.prefab"; public static string CleanupDroneBroken = "RoR2/DLC3/Drones/CleanupDroneBroken.prefab"; public static string CleanupDroneMaster = "RoR2/DLC3/Drones/CleanupDroneMaster.prefab"; public static string CleanupKillEffect = "RoR2/DLC3/Drones/CleanupKillEffect.prefab"; public static string CleanupOrbEffect = "RoR2/DLC3/Drones/CleanupOrbEffect.prefab"; public static string CleanupPickerPanel = "RoR2/DLC3/Drones/CleanupPickerPanel.prefab"; public static string CleanupTetherVFX = "RoR2/DLC3/Drones/CleanupTetherVFX.prefab"; public static string mdlCleanupDrone = "RoR2/DLC3/Drones/mdlCleanupDrone.fbx"; public static string mdlCleanupDronemaster = "RoR2/DLC3/Drones/mdlCleanupDrone@master.fbx"; public static string CleanupHealPack = "RoR2/DLC3/Drones/CleanupHealPack.prefab"; public static string CleanupMoneyPack = "RoR2/DLC3/Drones/CleanupMoneyPack.prefab"; public static string CleanupDroneAuraVFX = "RoR2/DLC3/Drones/CleanupDroneAuraVFX.prefab"; public static string CleanupDroneVacuumVFX = "RoR2/DLC3/Drones/CleanupDroneVacuumVFX.prefab"; public static string CopycatDroneBody = "RoR2/DLC3/Drones/CopycatDroneBody.prefab"; public static string CopycatDroneBodyRemoteOp = "RoR2/DLC3/Drones/CopycatDroneBodyRemoteOp.prefab"; public static string CopycatDroneBroken = "RoR2/DLC3/Drones/CopycatDroneBroken.prefab"; public static string CopycatDroneMaster = "RoR2/DLC3/Drones/CopycatDroneMaster.prefab"; public static string mdlCopycatDrone = "RoR2/DLC3/Drones/mdlCopycatDrone.fbx"; public static string mdlCopycatDroneAnimset = "RoR2/DLC3/Drones/mdlCopycatDrone@Animset.fbx"; public static string ChargeLaserDisc = "RoR2/DLC3/Drones/ChargeLaserDisc.prefab"; public static string LaserDiscImpactEffect = "RoR2/DLC3/Drones/LaserDiscImpactEffect.prefab"; public static string LaserDiscOrbEffect = "RoR2/DLC3/Drones/LaserDiscOrbEffect.prefab"; public static string DroneCopycatPrefireVFX = "RoR2/DLC3/Drones/DroneCopycatPrefireVFX.prefab"; public static string DroneCopyCatScanFlareVFX = "RoR2/DLC3/Drones/DroneCopyCatScanFlareVFX.prefab"; public static string DroneCopyCatScanVFX = "RoR2/DLC3/Drones/DroneCopyCatScanVFX.prefab"; public static string mdlDroneCopyCatScanBase = "RoR2/DLC3/Drones/mdlDroneCopyCat_ScanBase.fbx"; public static string mdlDroneCopyCatScanPlane = "RoR2/DLC3/Drones/mdlDroneCopyCat_ScanPlane.fbx"; public static string ScannerBeam = "RoR2/DLC3/Drones/ScannerBeam.prefab"; public static string DroneBomberBody = "RoR2/DLC3/Drones/DroneBomberBody.prefab"; public static string DroneBomberMaster = "RoR2/DLC3/Drones/DroneBomberMaster.prefab"; public static string DroneSpawnInVFX = "RoR2/DLC3/Drones/DroneSpawnInVFX.prefab"; public static string DTGunnerDroneBody = "RoR2/DLC3/Drones/DTGunnerDroneBody.prefab"; public static string DTGunnerDroneBrokenBody = "RoR2/DLC3/Drones/DTGunnerDroneBrokenBody.prefab"; public static string DTGunnerDroneMaster = "RoR2/DLC3/Drones/DTGunnerDroneMaster.prefab"; public static string mdlGunnerDroneDT = "RoR2/DLC3/Drones/mdlGunnerDroneDT.fbx"; public static string DTHaulerDroneBody = "RoR2/DLC3/Drones/DTHaulerDroneBody.prefab"; public static string DTHaulerDroneBrokenBody = "RoR2/DLC3/Drones/DTHaulerDroneBrokenBody.prefab"; public static string DTHaulerDroneMaster = "RoR2/DLC3/Drones/DTHaulerDroneMaster.prefab"; public static string mdlDTHaulerDrone = "RoR2/DLC3/Drones/mdlDTHaulerDrone.fbx"; public static string mdlDTHaulerDronemaster = "RoR2/DLC3/Drones/mdlDTHaulerDrone@master.fbx"; public static string DTHealingDroneBody = "RoR2/DLC3/Drones/DTHealingDroneBody.prefab"; public static string DTHealingDroneBrokenBody = "RoR2/DLC3/Drones/DTHealingDroneBrokenBody.prefab"; public static string DTHeallingDroneMaster = "RoR2/DLC3/Drones/DTHeallingDroneMaster.prefab"; public static string mdlHealingDroneDT = "RoR2/DLC3/Drones/mdlHealingDroneDT.fbx"; public static string HaulerDroneBody = "RoR2/DLC3/Drones/HaulerDroneBody.prefab"; public static string HaulerDroneBroken = "RoR2/DLC3/Drones/HaulerDroneBroken.prefab"; public static string HaulerDroneMaster = "RoR2/DLC3/Drones/HaulerDroneMaster.prefab"; public static string mdlHaulerDrone = "RoR2/DLC3/Drones/mdlHaulerDrone.fbx"; public static string mdlHaulerDronemaster = "RoR2/DLC3/Drones/mdlHaulerDrone@master.fbx"; public static string HaulerDroneBeamVFX = "RoR2/DLC3/Drones/HaulerDroneBeamVFX.prefab"; public static string HaulerDroneGrabVFX = "RoR2/DLC3/Drones/HaulerDroneGrabVFX.prefab"; public static string HaulerDroneImpactVFX = "RoR2/DLC3/Drones/HaulerDroneImpactVFX.prefab"; public static string JailerDroneBody = "RoR2/DLC3/Drones/JailerDroneBody.prefab"; public static string JailerDroneBodyRemoteOp = "RoR2/DLC3/Drones/JailerDroneBodyRemoteOp.prefab"; public static string JailerDroneBroken = "RoR2/DLC3/Drones/JailerDroneBroken.prefab"; public static string JailerDroneMaster = "RoR2/DLC3/Drones/JailerDroneMaster.prefab"; public static string mdlJailerDrone = "RoR2/DLC3/Drones/mdlJailerDrone.fbx"; public static string mdlJailerDronemaster = "RoR2/DLC3/Drones/mdlJailerDrone@master.fbx"; public static string JailerDroneCagedEffect = "RoR2/DLC3/Drones/JailerDroneCagedEffect.prefab"; public static string JailerDroneCagePrefab = "RoR2/DLC3/Drones/JailerDroneCagePrefab.prefab"; public static string mdlJalierDroneHoloCageFX = "RoR2/DLC3/Drones/mdlJalierDrone_HoloCage_FX.fbx"; public static string mdlJalierDroneHoloFinishFX = "RoR2/DLC3/Drones/mdlJalierDrone_HoloFinish_FX.fbx"; public static string mdlJalierDroneHoloFinishOffsetFX = "RoR2/DLC3/Drones/mdlJalierDrone_HoloFinish_Offset_FX.fbx"; public static string mdlJalierDroneHoloPlaneFX = "RoR2/DLC3/Drones/mdlJalierDrone_HoloPlane_FX.fbx"; public static string mdlJalierDroneHoloWallsFX = "RoR2/DLC3/Drones/mdlJalierDrone_HoloWalls_FX.fbx"; public static string JailerDroneWallsEffect = "RoR2/DLC3/Drones/JailerDroneWallsEffect.prefab"; public static string JunkDroneBody = "RoR2/DLC3/Drones/JunkDroneBody.prefab"; public static string JunkDroneBodyRemoteOp = "RoR2/DLC3/Drones/JunkDroneBodyRemoteOp.prefab"; public static string JunkDroneBroken = "RoR2/DLC3/Drones/JunkDroneBroken.prefab"; public static string JunkDroneMaster = "RoR2/DLC3/Drones/JunkDroneMaster.prefab"; public static string mdlJunkDrone = "RoR2/DLC3/Drones/mdlJunkDrone.fbx"; public static string mdlJunkDroneMaster = "RoR2/DLC3/Drones/mdlJunkDrone@Master.fbx"; public static string mdlJunkDroneMineProp = "RoR2/DLC3/Drones/mdlJunkDrone_Mine_Prop.fbx"; public static string JunkDroneOpenVFX = "RoR2/DLC3/Drones/JunkDroneOpenVFX.prefab"; public static string mdlRechargeDrone = "RoR2/DLC3/Drones/mdlRechargeDrone.fbx"; public static string mdlRechargeDronemaster = "RoR2/DLC3/Drones/mdlRechargeDrone@master.fbx"; public static string RechargeDroneBody = "RoR2/DLC3/Drones/RechargeDroneBody.prefab"; public static string RechargeDroneBodyRemoteOp = "RoR2/DLC3/Drones/RechargeDroneBodyRemoteOp.prefab"; public static string RechargeDroneBroken = "RoR2/DLC3/Drones/RechargeDroneBroken.prefab"; public static string RechargeDroneMaster = "RoR2/DLC3/Drones/RechargeDroneMaster.prefab"; public static string RechargeBeam29 = "RoR2/DLC3/Drones/RechargeBeam.prefab"; public static string RechargeDroneBarrierBeam = "RoR2/DLC3/Drones/RechargeDroneBarrierBeam.prefab"; public static string RechargeDroneChargeBarrierVFX = "RoR2/DLC3/Drones/RechargeDroneChargeBarrierVFX.prefab"; public static string RechargeDroneChargeHealVFX = "RoR2/DLC3/Drones/RechargeDroneChargeHealVFX.prefab"; public static string RechargeDroneChargeRechargeVFX = "RoR2/DLC3/Drones/RechargeDroneChargeRechargeVFX.prefab"; public static string RechargeDroneHealBeam = "RoR2/DLC3/Drones/RechargeDroneHealBeam.prefab"; public static string RechargeDroneRechargeBeam = "RoR2/DLC3/Drones/RechargeDroneRechargeBeam.prefab"; public static string RemoteOPSpawnEffect = "RoR2/DLC3/Drones/RemoteOPSpawnEffect.prefab"; public static string ExplosiveJunkBombCharge = "RoR2/DLC3/ExplosiveJunkBombDestructible/ExplosiveJunkBombCharge.prefab"; public static string ExplosiveJunkBombDestructibleBody = "RoR2/DLC3/ExplosiveJunkBombDestructible/ExplosiveJunkBombDestructibleBody.prefab"; public static string ExplosiveJunkBombExplosion = "RoR2/DLC3/ExplosiveJunkBombDestructible/ExplosiveJunkBombExplosion.prefab"; public static string mdlJunkDroneMinePropFXDebris = "RoR2/DLC3/ExplosiveJunkBombDestructible/mdlJunkDrone_Mine_Prop_FX_Debris.fbx"; public static string ExtractorUnitBody = "RoR2/DLC3/ExtractorUnit/ExtractorUnitBody.prefab"; public static string ExtractorUnitMaster = "RoR2/DLC3/ExtractorUnit/ExtractorUnitMaster.prefab"; public static string mdlExtractorUnit = "RoR2/DLC3/ExtractorUnit/mdlExtractorUnit.fbx"; public static string mdlExtractorUnitMaster = "RoR2/DLC3/ExtractorUnit/mdlExtractorUnit@Master.fbx"; public static string ExtractorEyeCharge = "RoR2/DLC3/ExtractorUnit/ExtractorEyeCharge.prefab"; public static string ExtractorScanCone = "RoR2/DLC3/ExtractorUnit/ExtractorScanCone.prefab"; public static string ExtractorUnitCarryTetherVFX = "RoR2/DLC3/ExtractorUnit/ExtractorUnitCarryTetherVFX.prefab"; public static string ExtractorUnitCarryVFX = "RoR2/DLC3/ExtractorUnit/ExtractorUnitCarryVFX.prefab"; public static string ExtractorUnitDeathVFX = "RoR2/DLC3/ExtractorUnit/ExtractorUnitDeathVFX.prefab"; public static string ExtractorUnitGust = "RoR2/DLC3/ExtractorUnit/ExtractorUnitGust.prefab"; public static string ExtractorUnitHitEffectVFX = "RoR2/DLC3/ExtractorUnit/ExtractorUnitHitEffectVFX.prefab"; public static string ExtractorUnitMeleeActiveVFX = "RoR2/DLC3/ExtractorUnit/ExtractorUnitMeleeActiveVFX.prefab"; public static string ExtractorUnitSpawnVFX = "RoR2/DLC3/ExtractorUnit/ExtractorUnitSpawnVFX.prefab"; public static string mdlExtractorGib01 = "RoR2/DLC3/ExtractorUnit/mdlExtractorGib01.fbx"; public static string mdlExtractorGib02 = "RoR2/DLC3/ExtractorUnit/mdlExtractorGib02.fbx"; public static string mdlExtractorGib03 = "RoR2/DLC3/ExtractorUnit/mdlExtractorGib03.fbx"; public static string mdlExtractorScanTri = "RoR2/DLC3/ExtractorUnit/mdlExtractorScanTri.fbx"; public static string SolusLaserScanning = "RoR2/DLC3/ExtractorUnit/SolusLaserScanning.prefab"; public static string deadHeart29 = "RoR2/DLC3/FriendUnit/deadHeart.prefab"; public static string DisplayShinyPearlFriendUnit = "RoR2/DLC3/FriendUnit/DisplayShinyPearlFriendUnit.prefab"; public static string FriendUnitBody = "RoR2/DLC3/FriendUnit/FriendUnitBody.prefab"; public static string FriendUnitChargeEffect = "RoR2/DLC3/FriendUnit/FriendUnitChargeEffect.prefab"; public static string FriendUnitMaster = "RoR2/DLC3/FriendUnit/FriendUnitMaster.prefab"; public static string FriendUnitSacrificeExplosionFX = "RoR2/DLC3/FriendUnit/FriendUnitSacrificeExplosionFX.prefab"; public static string FriendUnitSacrificeProjectile = "RoR2/DLC3/FriendUnit/FriendUnitSacrificeProjectile.prefab"; public static string FriendUnitSacrificeProjectileGhost = "RoR2/DLC3/FriendUnit/FriendUnitSacrificeProjectileGhost.prefab"; public static string FriendUnitImpact = "RoR2/DLC3/FriendUnit/FriendUnitImpact.prefab"; public static string FriendUnitImpactHeavy = "RoR2/DLC3/FriendUnit/FriendUnitImpactHeavy.prefab"; public static string FriendUnitPrimaryVehicle = "RoR2/DLC3/FriendUnit/FriendUnitPrimaryVehicle.prefab"; public static string KineticAuraChargeUp = "RoR2/DLC3/FriendUnit/KineticAuraChargeUp.prefab"; public static string KineticAuraLaunch = "RoR2/DLC3/FriendUnit/KineticAuraLaunch.prefab"; public static string CleansOrbEffect = "RoR2/DLC3/FriendUnit/CleansOrbEffect.prefab"; public static string FriendUnitHeart = "RoR2/DLC3/FriendUnit/FriendUnitHeart.prefab"; public static string IronHaulerBody = "RoR2/DLC3/IronHauler/IronHaulerBody.prefab"; public static string IronHaulerMaster = "RoR2/DLC3/IronHauler/IronHaulerMaster.prefab"; public static string mdlIronHauler = "RoR2/DLC3/IronHauler/mdlIronHauler.fbx"; public static string mdlIronHaulerMaster = "RoR2/DLC3/IronHauler/mdlIronHauler@Master.fbx"; public static string mdlIronHaulerBroken = "RoR2/DLC3/IronHauler/mdlIronHaulerBroken.fbx"; public static string IronHaulerAirLaunchProjectile = "RoR2/DLC3/IronHauler/IronHaulerAirLaunchProjectile.prefab"; public static string IronHaulerAirLaunchProjectileGhost = "RoR2/DLC3/IronHauler/IronHaulerAirLaunchProjectileGhost.prefab"; public static string IronHaulerAirLaunchVFX = "RoR2/DLC3/IronHauler/IronHaulerAirLaunchVFX.prefab"; public static string IronHaulerCopiedAirLaunchVFX = "RoR2/DLC3/IronHauler/IronHaulerCopiedAirLaunchVFX.prefab"; public static string IronHaulerCopiedAoEVFX = "RoR2/DLC3/IronHauler/IronHaulerCopiedAoEVFX.prefab"; public static string IronHaulerCopiedMuzzleFlashVFX = "RoR2/DLC3/IronHauler/IronHaulerCopiedMuzzleFlashVFX.prefab"; public static string IronHaulerDeathVFX = "RoR2/DLC3/IronHauler/IronHaulerDeathVFX.prefab"; public static string IronHaulerGravityWellProjectile = "RoR2/DLC3/IronHauler/IronHaulerGravityWellProjectile.prefab"; public static string IronHaulerGravityWellProjectileGhost = "RoR2/DLC3/IronHauler/IronHaulerGravityWellProjectileGhost.prefab"; public static string IronHaulerGravityWellPullBlastVFX = "RoR2/DLC3/IronHauler/IronHaulerGravityWellPullBlastVFX.prefab"; public static string IronHaulerGravityWellPullChildProjectile = "RoR2/DLC3/IronHauler/IronHaulerGravityWellPullChildProjectile.prefab"; public static string IronHaulerMuzzleFlashVFX = "RoR2/DLC3/IronHauler/IronHaulerMuzzleFlashVFX.prefab"; public static string IronHaulerSpawnVFX = "RoR2/DLC3/IronHauler/IronHaulerSpawnVFX.prefab"; public static string mdlIronHaulerCage01 = "RoR2/DLC3/IronHauler/mdlIronHaulerCage01.fbx"; public static string mdlIronHaulerCage02 = "RoR2/DLC3/IronHauler/mdlIronHaulerCage02.fbx"; public static string mdlIronHaulerCage03 = "RoR2/DLC3/IronHauler/mdlIronHaulerCage03.fbx"; public static string mdlIronHaulerScrapParticle = "RoR2/DLC3/IronHauler/mdlIronHaulerScrapParticle.fbx"; public static string mdlPod = "RoR2/DLC3/MinePod/mdlPod.fbx"; public static string MinePodBody = "RoR2/DLC3/MinePod/MinePodBody.prefab"; public static string MinePodDeathVFX = "RoR2/DLC3/MinePod/MinePodDeathVFX.prefab"; public static string MinePodLogbookBody = "RoR2/DLC3/MinePod/MinePodLogbookBody.prefab"; public static string MinePodMaster = "RoR2/DLC3/MinePod/MinePodMaster.prefab"; public static string mdlSolusAmalgamatormaster = "RoR2/DLC3/SolusAmalgamator/mdlSolusAmalgamator@master.fbx"; public static string mdlFlamethrowerCannon = "RoR2/DLC3/SolusAmalgamator/mdlFlamethrowerCannon.fbx"; public static string SolusAmalgamatorFlamethrowerCannonBody = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorFlamethrowerCannonBody.prefab"; public static string SolusAmalgamatorFlamethrowerCannonMaster = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorFlamethrowerCannonMaster.prefab"; public static string HatchBottom = "RoR2/DLC3/SolusAmalgamator/HatchBottom.prefab"; public static string HatchTop = "RoR2/DLC3/SolusAmalgamator/HatchTop.prefab"; public static string mdlHatchBottom = "RoR2/DLC3/SolusAmalgamator/mdlHatchBottom.fbx"; public static string mdlHatchTop = "RoR2/DLC3/SolusAmalgamator/mdlHatchTop.fbx"; public static string mdlMissilePod = "RoR2/DLC3/SolusAmalgamator/mdlMissilePod.fbx"; public static string SolusAmalgamatorMissilePodBody = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorMissilePodBody.prefab"; public static string SolusAmalgamatorMissilePodMaster = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorMissilePodMaster.prefab"; public static string mdlSolusAmalgamator = "RoR2/DLC3/SolusAmalgamator/mdlSolusAmalgamator.fbx"; public static string SolusAmalgamatorBody = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorBody.prefab"; public static string SolusAmalgamatorMaster = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorMaster.prefab"; public static string mdlThrustermaster = "RoR2/DLC3/SolusAmalgamator/mdlThruster@master.fbx"; public static string mdlThruster = "RoR2/DLC3/SolusAmalgamator/mdlThruster.fbx"; public static string SolusAmalgamatorThrusterBody = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorThrusterBody.prefab"; public static string SolusAmalgamatorThrusterMaster = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorThrusterMaster.prefab"; public static string ChargeScavEnergyCannon28 = "RoR2/DLC3/SolusAmalgamator/ChargeScavEnergyCannon.prefab"; public static string mdlDroneStrafeSphere = "RoR2/DLC3/SolusAmalgamator/mdlDroneStrafeSphere.fbx"; public static string mdlVFXRing = "RoR2/DLC3/SolusAmalgamator/mdlVFXRing.fbx"; public static string SolusAmalgamatorArtilleryExplosionEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorArtilleryExplosionEffect.prefab"; public static string SolusAmalgamatorArtilleryIndicatorEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorArtilleryIndicatorEffect.prefab"; public static string SolusAmalgamatorArtilleryMuzzleFlashEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorArtilleryMuzzleFlashEffect.prefab"; public static string SolusAmalgamatorArtilleryMuzzleFlashEffectSM = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorArtilleryMuzzleFlashEffect_SM.prefab"; public static string SolusAmalgamatorArtilleryProjectile = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorArtilleryProjectile.prefab"; public static string SolusAmalgamatorArtilleryProjectileGhost = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorArtilleryProjectileGhost.prefab"; public static string SolusAmalgamatorBeamChargeEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorBeamChargeEffect.prefab"; public static string SolusAmalgamatorBeamExplosionEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorBeamExplosionEffect.prefab"; public static string SolusAmalgamatorBeamMuzzleFlashEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorBeamMuzzleFlashEffect.prefab"; public static string SolusAmalgamatorBeamProjectile = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorBeamProjectile.prefab"; public static string SolusAmalgamatorBeamProjectileGhost = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorBeamProjectileGhost.prefab"; public static string SolusAmalgamatorDeathEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorDeathEffect.prefab"; public static string SolusAmalgamatorExplosionVFXDeath = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorExplosionVFXDeath.prefab"; public static string SolusAmalgamatorFlameEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorFlameEffect.prefab"; public static string SolusAmalgamatorFlameImpactEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorFlameImpactEffect.prefab"; public static string SolusAmalgamatorFlameTraceEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorFlameTraceEffect.prefab"; public static string SolusAmalgamatorLiftAirLaunchVFX = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorLiftAirLaunchVFX.prefab"; public static string SolusAmalgamatorLiftAoEVFX = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorLiftAoEVFX.prefab"; public static string SolusAmalgamatorLiftMuzzleFlashVFX = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorLiftMuzzleFlashVFX.prefab"; public static string SolusAmalgamatorMissilePodProjectile = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorMissilePodProjectile.prefab"; public static string SolusAmalgamatorPreDeathEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorPreDeathEffect.prefab"; public static string SolusAmalgamatorShockChargeEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorShockChargeEffect.prefab"; public static string SolusAmalgamatorShockEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorShockEffect.prefab"; public static string SolusAmalgamatorSpawnVFX = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorSpawnVFX.prefab"; public static string SolusAmalgamatorThrusterChargeEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorThrusterChargeEffect.prefab"; public static string SolusAmalgamatorThrusterDeathEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorThrusterDeathEffect.prefab"; public static string SolusAmalgamatorThrusterShockEffect = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorThrusterShockEffect.prefab"; public static string SolusAmalgamatorTrackingBomb = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorTrackingBomb.prefab"; public static string SolusAmalgamatorTrackingBombExplosion = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorTrackingBombExplosion.prefab"; public static string SolusAmalgamatorTrackingBombGhost = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorTrackingBombGhost.prefab"; public static string SolusAmalgamtorDetachVFX = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamtorDetachVFX.prefab"; public static string transform = "RoR2/DLC3/SolusHeart/transform.fbx"; public static string transformback = "RoR2/DLC3/SolusHeart/transform_back.fbx"; public static string transformfirebombs = "RoR2/DLC3/SolusHeart/transform_fire_bombs.fbx"; public static string transformfireorbitallaser = "RoR2/DLC3/SolusHeart/transform_fire_orbital_laser.fbx"; public static string transformfireprojectilespam = "RoR2/DLC3/SolusHeart/transform_fire_projectile_spam.fbx"; public static string transformsmash = "RoR2/DLC3/SolusHeart/transform_smash.fbx"; public static string transtormidle = "RoR2/DLC3/SolusHeart/transtorm_idle.fbx"; public static string death = "RoR2/DLC3/SolusHeart/death.fbx"; public static string fall = "RoR2/DLC3/SolusHeart/fall.fbx"; public static string firebombs = "RoR2/DLC3/SolusHeart/fire_bombs.fbx"; public static string fireorbitallaser = "RoR2/DLC3/SolusHeart/fire_orbital_laser.fbx"; public static string fireprojectilespam = "RoR2/DLC3/SolusHeart/fire_projectile_spam.fbx"; public static string giveup = "RoR2/DLC3/SolusHeart/give_up.fbx"; public static string idle11 = "RoR2/DLC3/SolusHeart/idle.fbx"; public static string idlehead30 = "RoR2/DLC3/SolusHeart/idle_head.fbx"; public static string move = "RoR2/DLC3/SolusHeart/move.fbx"; public static string smash = "RoR2/DLC3/SolusHeart/smash.fbx"; public static string spawnin = "RoR2/DLC3/SolusHeart/spawn_in.fbx"; public static string CorruptedDataEffectOrb = "RoR2/DLC3/SolusHeart/CorruptedDataEffectOrb.prefab"; public static string CorruptedDataEffectOrbEnd = "RoR2/DLC3/SolusHeart/CorruptedDataEffectOrbEnd.prefab"; public static string SolusHeartBodyLogbook = "RoR2/DLC3/SolusHeart/SolusHeartBody_Logbook.prefab"; public static string mdlSolusF2PrimeChip = "RoR2/DLC3/SolusHeart/mdlSolusF2_PrimeChip.fbx"; public static string mdlSolusF2roughMeshUnBoned = "RoR2/DLC3/SolusHeart/mdlSolusF2_rough_MeshUnBoned.fbx"; public static string Chip = "RoR2/DLC3/SolusHeart/Chip.fbx"; public static string solushearthumanoid = "RoR2/DLC3/SolusHeart/solus_heart_humanoid.fbx"; public static string SolusHeartHitFloor = "RoR2/DLC3/SolusHeart/SolusHeartHitFloor.prefab"; public static string SolusWebMissionController = "RoR2/DLC3/SolusHeart/SolusWebMissionController.prefab"; public static string DDOSPortal = "RoR2/DLC3/SolusHeart/DDOS_Portal.prefab"; public static string DDOSPortalGhost = "RoR2/DLC3/SolusHeart/DDOS_PortalGhost.prefab"; public static string DDOSImpact = "RoR2/DLC3/SolusHeart/DDOSImpact.prefab"; public static string SolusHeartDDOSProjectile = "RoR2/DLC3/SolusHeart/SolusHeart_DDOSProjectile.prefab"; public static string SolusHeartDDOSProjectileGhost = "RoR2/DLC3/SolusHeart/SolusHeart_DDOSProjectileGhost.prefab"; public static string GridSlamWarning = "RoR2/DLC3/SolusHeart/GridSlamWarning.prefab"; public static string ShatterGridEffect = "RoR2/DLC3/SolusHeart/ShatterGridEffect.prefab"; public static string SolusHeartHitFloorVariant = "RoR2/DLC3/SolusHeart/SolusHeartHitFloor Variant.prefab"; public static string cubeTube = "RoR2/DLC3/SolusHeart/cubeTube.fbx"; public static string OrbitalStrikeSummonVFX = "RoR2/DLC3/SolusHeart/OrbitalStrike_SummonVFX.prefab"; public static string SHBombardmentGhost = "RoR2/DLC3/SolusHeart/SH_BombardmentGhost.prefab"; public static string SHOrbitalStrikeFastVariant = "RoR2/DLC3/SolusHeart/SHOrbitalStrike Fast Variant.prefab"; public static string SHOrbitalStrike = "RoR2/DLC3/SolusHeart/SHOrbitalStrike.prefab"; public static string SHOrbitalStrikeRLAlgorithm = "RoR2/DLC3/SolusHeart/SHOrbitalStrike_RLAlgorithm.prefab"; public static string SHOrbitalStrikeGhost = "RoR2/DLC3/SolusHeart/SHOrbitalStrikeGhost.prefab"; public static string SHOrbitalStrikeTargeter = "RoR2/DLC3/SolusHeart/SHOrbitalStrikeTargeter.prefab"; public static string SolusHeartProjectileVFX = "RoR2/DLC3/SolusHeart/SolusHeartProjectileVFX.prefab"; public static string SolusHeartTeleport = "RoR2/DLC3/SolusHeart/SolusHeartTeleport.prefab"; public static string TeleportComboLaserDeathFX = "RoR2/DLC3/SolusHeart/TeleportComboLaserDeathFX.prefab"; public static string TeleportComboLaserImpact = "RoR2/DLC3/SolusHeart/TeleportComboLaserImpact.prefab"; public static string TeleportComboLaserProjectile = "RoR2/DLC3/SolusHeart/TeleportComboLaserProjectile.prefab"; public static string TeleportComboLaserProjectileGhost = "RoR2/DLC3/SolusHeart/TeleportComboLaserProjectileGhost.prefab"; public static string NodeShiftTelegraphDown = "RoR2/DLC3/SolusHeart/NodeShiftTelegraphDown.prefab"; public static string NodeShiftTelegraphUp = "RoR2/DLC3/SolusHeart/NodeShiftTelegraphUp.prefab"; public static string UnderclockExplosionFX = "RoR2/DLC3/SolusHeart/UnderclockExplosionFX.prefab"; public static string UnderclockProjectile = "RoR2/DLC3/SolusHeart/UnderclockProjectile.prefab"; public static string UnderclockSpawnerGhost = "RoR2/DLC3/SolusHeart/UnderclockSpawnerGhost.prefab"; public static string UnderclockSpawnerProjectile = "RoR2/DLC3/SolusHeart/UnderclockSpawnerProjectile.prefab"; public static string UnderclockSpawnerTargetObject = "RoR2/DLC3/SolusHeart/UnderclockSpawnerTargetObject.prefab"; public static string SolusChip1 = "RoR2/DLC3/SolusHeart/Solus Chip (1).prefab"; public static string solusheartroughfixed = "RoR2/DLC3/SolusHeart/solus_heart_rough_fixed.fbx"; public static string SolusHeartBlink = "RoR2/DLC3/SolusHeart/SolusHeartBlink.prefab"; public static string SolusHeartBody = "RoR2/DLC3/SolusHeart/SolusHeartBody.prefab"; public static string SolusHeartBodyOffering = "RoR2/DLC3/SolusHeart/SolusHeartBody_Offering.prefab"; public static string SolusHeartDeathExplosion = "RoR2/DLC3/SolusHeart/SolusHeartDeathExplosion.prefab"; public static string SolusHeartMaster = "RoR2/DLC3/SolusHeart/SolusHeartMaster.prefab"; public static string SolusHeartMasterOffering = "RoR2/DLC3/SolusHeart/SolusHeartMaster_Offering.prefab"; public static string SolusHeartPreDeath = "RoR2/DLC3/SolusHeart/SolusHeartPreDeath.prefab"; public static string mdlSolusHeart = "RoR2/DLC3/SolusHeart/mdlSolusHeart.prefab"; public static string Solusheartbrainrough = "RoR2/DLC3/SolusHeart/Solus_heart_brain_rough.fbx"; public static string mdlThrustermaster24 = "RoR2/DLC3/SolusMine/mdlThruster@master.fbx"; public static string mdlThruster27 = "RoR2/DLC3/SolusMine/mdlThruster.fbx"; public static string SolusMineBody = "RoR2/DLC3/SolusMine/SolusMineBody.prefab"; public static string SolusMineMaster = "RoR2/DLC3/SolusMine/SolusMineMaster.prefab"; public static string SolusMineExplosionVFX = "RoR2/DLC3/SolusMine/SolusMineExplosionVFX.prefab"; public static string SolusMinePreAttackVFX = "RoR2/DLC3/SolusMine/SolusMinePreAttackVFX.prefab"; public static string SolusMineTrail = "RoR2/DLC3/SolusMine/SolusMineTrail.prefab"; public static string EyeSpotlight = "RoR2/DLC3/SolusWing/Eye Spotlight.prefab"; public static string SolusWingLogbookBody = "RoR2/DLC3/SolusWing/SolusWingLogbookBody.prefab"; public static string mdlBodyCollision = "RoR2/DLC3/SolusWing/mdlBodyCollision.fbx"; public static string mdlExhaustPort1 = "RoR2/DLC3/SolusWing/mdlExhaustPort 1.fbx"; public static string mdlExhaustPort = "RoR2/DLC3/SolusWing/mdlExhaustPort.fbx"; public static string mdlExhaustPortLid = "RoR2/DLC3/SolusWing/mdlExhaustPortLid.fbx"; public static string mdlHaloBottomCollision = "RoR2/DLC3/SolusWing/mdlHaloBottomCollision.fbx"; public static string mdlHaloTopCollision = "RoR2/DLC3/SolusWing/mdlHaloTopCollision.fbx"; public static string mdlPanelBottomLeftCollision = "RoR2/DLC3/SolusWing/mdlPanelBottomLeftCollision.fbx"; public static string mdlPanelBottomRightCollision = "RoR2/DLC3/SolusWing/mdlPanelBottomRightCollision.fbx"; public static string mdlPanelSideLeftCollision = "RoR2/DLC3/SolusWing/mdlPanelSideLeftCollision.fbx"; public static string mdlPanelTopCollision = "RoR2/DLC3/SolusWing/mdlPanelTopCollision.fbx"; public static string mdlSolusWeakPointEye = "RoR2/DLC3/SolusWing/mdlSolusWeakPointEye.fbx"; public static string mdlSolusWing = "RoR2/DLC3/SolusWing/mdlSolusWing.fbx"; public static string mdlSolusWingMaster = "RoR2/DLC3/SolusWing/mdlSolusWing@Master.fbx"; public static string mdlSolusWingBlobs = "RoR2/DLC3/SolusWing/mdlSolusWingBlobs.fbx"; public static string mdlSolusWingHalos = "RoR2/DLC3/SolusWing/mdlSolusWingHalos.fbx"; public static string mdlSolusWingHalosMaster = "RoR2/DLC3/SolusWing/mdlSolusWingHalos@Master.fbx"; public static string ChargeEffectSolusWing = "RoR2/DLC3/SolusWing/ChargeEffectSolusWing.prefab"; public static string ChargeLaserSolusWing = "RoR2/DLC3/SolusWing/ChargeLaserSolusWing.prefab"; public static string LaserBurstBlastChargeVFX = "RoR2/DLC3/SolusWing/LaserBurstBlastChargeVFX.prefab"; public static string LaserBurstBlastExplosion = "RoR2/DLC3/SolusWing/LaserBurstBlastExplosion.prefab"; public static string LaserBurstProjectile = "RoR2/DLC3/SolusWing/LaserBurstProjectile.prefab"; public static string LaserBurstProjectileGhost = "RoR2/DLC3/SolusWing/LaserBurstProjectileGhost.prefab"; public static string LaserSolusWing = "RoR2/DLC3/SolusWing/LaserSolusWing.prefab"; public static string MuzzleflashSolusWing = "RoR2/DLC3/SolusWing/MuzzleflashSolusWing.prefab"; public static string GravPulseBlastEffect = "RoR2/DLC3/SolusWing/GravPulseBlastEffect.prefab"; public static string GravPulseProjectileGhostSegment = "RoR2/DLC3/SolusWing/GravPulseProjectileGhostSegment.prefab"; public static string SolusWingGravPulseGlitchedWindUp = "RoR2/DLC3/SolusWing/SolusWingGravPulseGlitchedWindUp.prefab"; public static string SolusWingGravPulseGlitchedWindUpSegment = "RoR2/DLC3/SolusWing/SolusWingGravPulseGlitchedWindUpSegment.prefab"; public static string SolusWingGravPulseProjectile = "RoR2/DLC3/SolusWing/SolusWingGravPulseProjectile.prefab"; public static string SolusWingGravPulseProjectileGhost = "RoR2/DLC3/SolusWing/SolusWingGravPulseProjectileGhost.prefab"; public static string SolusWingGravPulseProjectileGlitched = "RoR2/DLC3/SolusWing/SolusWingGravPulseProjectileGlitched.prefab"; public static string SolusWingGravPulseProjectileGlitchedGhost = "RoR2/DLC3/SolusWing/SolusWingGravPulseProjectileGlitchedGhost.prefab"; public static string SolusWingGravPulseProjectileThin = "RoR2/DLC3/SolusWing/SolusWingGravPulseProjectileThin.prefab"; public static string SolusWingGravPulseProjectileThinGhost = "RoR2/DLC3/SolusWing/SolusWingGravPulseProjectileThinGhost.prefab"; public static string SolusWingGravPulseWindUp = "RoR2/DLC3/SolusWing/SolusWingGravPulseWindUp.prefab"; public static string SolusWingGravPulseWindUpCenter = "RoR2/DLC3/SolusWing/SolusWingGravPulseWindUpCenter.prefab"; public static string SolusWingGravPulseWindUpSegment = "RoR2/DLC3/SolusWing/SolusWingGravPulseWindUpSegment.prefab"; public static string SolusWingLaserBurstBlastProjectile = "RoR2/DLC3/SolusWing/SolusWing_LaserBurstBlastProjectile.prefab"; public static string SolusWingSuppressionProjectile = "RoR2/DLC3/SolusWing/SolusWing_SuppressionProjectile.prefab"; public static string OverheatBeamImpactEffect = "RoR2/DLC3/SolusWing/OverheatBeamImpactEffect.prefab"; public static string SolusWingOverheatBeamWindUp = "RoR2/DLC3/SolusWing/SolusWingOverheatBeamWindUp.prefab"; public static string SolusWingOverheatBeamWindUpGlitched = "RoR2/DLC3/SolusWing/SolusWingOverheatBeamWindUpGlitched.prefab"; public static string SWOverheatBeamVFX = "RoR2/DLC3/SolusWing/SWOverheatBeamVFX.prefab"; public static string SWOverheatBeamVFXGlitched = "RoR2/DLC3/SolusWing/SWOverheatBeamVFX_Glitched.prefab"; public static string SWOverheatBeamVFXSmall = "RoR2/DLC3/SolusWing/SWOverheatBeamVFX_Small.prefab"; public static string SolusWing = "RoR2/DLC3/SolusWing/Solus_Wing.fbx"; public static string SolusWingMaster = "RoR2/DLC3/SolusWing/Solus_Wing@Master.fbx"; public static string SolusWingMaster19 = "RoR2/DLC3/SolusWing/SolusWing_Master.obj"; public static string SolusWingBody = "RoR2/DLC3/SolusWing/SolusWingBody.prefab"; public static string SolusWingHalos = "RoR2/DLC3/SolusWing/SolusWingHalos.prefab"; public static string SolusWingMaster11 = "RoR2/DLC3/SolusWing/SolusWingMaster.prefab"; public static string SolusWingPreFight = "RoR2/DLC3/SolusWing/SolusWingPreFight.prefab"; public static string SolusWingWeakpointPositions = "RoR2/DLC3/SolusWing/SolusWingWeakpointPositions.prefab"; public static string SolusWingWeakpointPositionsVisual = "RoR2/DLC3/SolusWing/SolusWingWeakpointPositionsVisual.prefab"; public static string LaserGridAudioFollower = "RoR2/DLC3/SolusWing/LaserGridAudioFollower.prefab"; public static string mdlSWPanelL = "RoR2/DLC3/SolusWing/mdl_SW_Panel_L.fbx"; public static string mdlSWPanel02R = "RoR2/DLC3/SolusWing/mdl_SW_Panel02_R.fbx"; public static string mdlSWHaloElectricSurface = "RoR2/DLC3/SolusWing/mdlSW_HaloElectricSurface.fbx"; public static string mdlSWHaloEmitter = "RoR2/DLC3/SolusWing/mdlSW_HaloEmitter.fbx"; public static string mdlVentCover = "RoR2/DLC3/SolusWing/mdlVentCover.fbx"; public static string SolusWingDeathVFX = "RoR2/DLC3/SolusWing/SolusWing_DeathVFX.prefab"; public static string SolusWingExhaustPortDestroyedVFX = "RoR2/DLC3/SolusWing/SolusWing_ExhaustPortDestroyedVFX.prefab"; public static string SolusWingExhaustPortExplosionVFX = "RoR2/DLC3/SolusWing/SolusWing_ExhaustPortExplosionVFX.prefab"; public static string SolusWingExhaustPortOpenVFX = "RoR2/DLC3/SolusWing/SolusWing_ExhaustPortOpenVFX.prefab"; public static string SolusWingExpandingLaserChargeVFX = "RoR2/DLC3/SolusWing/SolusWing_ExpandingLaserChargeVFX.prefab"; public static string SolusWingExpandingLaserFireChargeVFX = "RoR2/DLC3/SolusWing/SolusWing_ExpandingLaserFireChargeVFX.prefab"; public static string SolusWingExpandingLaserHitVFX = "RoR2/DLC3/SolusWing/SolusWing_ExpandingLaserHitVFX.prefab"; public static string SolusWingExpandingLaserMuzzleflashVFX = "RoR2/DLC3/SolusWing/SolusWing_ExpandingLaserMuzzleflashVFX.prefab"; public static string SolusWingExpandingLaserVFX = "RoR2/DLC3/SolusWing/SolusWing_ExpandingLaserVFX.prefab"; public static string SolusWingLaserBurstBlastExplosionVFX = "RoR2/DLC3/SolusWing/SolusWing_LaserBurstBlastExplosionVFX.prefab"; public static string SolusWingLaserBurstBlastGhostVFX = "RoR2/DLC3/SolusWing/SolusWing_LaserBurstBlastGhostVFX.prefab"; public static string SolusWingLaserBurstBlastMuzzleFlashVFX = "RoR2/DLC3/SolusWing/SolusWing_LaserBurstBlastMuzzleFlashVFX.prefab"; public static string SolusWingLaserGridHitFX = "RoR2/DLC3/SolusWing/SolusWing_LaserGridHitFX.prefab"; public static string SolusWingLaserGridVFX = "RoR2/DLC3/SolusWing/SolusWing_LaserGridVFX.prefab"; public static string SolusWingPreDeathVFX = "RoR2/DLC3/SolusWing/SolusWing_PreDeathVFX.prefab"; public static string SolusWingSummonVulturesVFX = "RoR2/DLC3/SolusWing/SolusWing_SummonVulturesVFX.prefab"; public static string SolusWingSuppressionBoltVFX = "RoR2/DLC3/SolusWing/SolusWing_SuppressionBoltVFX.prefab"; public static string SolusWingSuppressionChargeVFX1 = "RoR2/DLC3/SolusWing/SolusWing_SuppressionChargeVFX 1.prefab"; public static string SolusWingSuppressionChargeVFX = "RoR2/DLC3/SolusWing/SolusWing_SuppressionChargeVFX.prefab"; public static string SolusWingSuppressionExplosionVFX = "RoR2/DLC3/SolusWing/SolusWing_SuppressionExplosionVFX.prefab"; public static string SolusWingSuppressionLaserVFX = "RoR2/DLC3/SolusWing/SolusWing_SuppressionLaserVFX.prefab"; public static string SolusWingSupressionGhostVFX = "RoR2/DLC3/SolusWing/SolusWing_SupressionGhostVFX.prefab"; public static string SolusWingSupressionMuzzleflashVFX = "RoR2/DLC3/SolusWing/SolusWing_SupressionMuzzleflashVFX.prefab"; public static string SolusWingGlitchEffect = "RoR2/DLC3/SolusWing/SolusWingGlitchEffect.prefab"; public static string SolusWingJumpEffect = "RoR2/DLC3/SolusWing/SolusWingJumpEffect.prefab"; public static string WeakPointPostDestroyedEffectPrefab = "RoR2/DLC3/SolusWing/WeakPointPostDestroyedEffectPrefab.prefab"; public static string WeakPointPostDestroyedVFX = "RoR2/DLC3/SolusWing/WeakPointPostDestroyedVFX.prefab"; public static string ExhaustPortWeakpointBody = "RoR2/DLC3/SolusWing/ExhaustPortWeakpointBody.prefab"; public static string ExhaustPortWeakpointMaster = "RoR2/DLC3/SolusWing/ExhaustPortWeakpointMaster.prefab"; public static string ExhaustPortWeakpointVisual = "RoR2/DLC3/SolusWing/ExhaustPortWeakpointVisual.prefab"; public static string BasePodBody = "RoR2/DLC3/SolusWingForm1/BasePodBody.prefab"; public static string BasePodBodyNoRevive = "RoR2/DLC3/SolusWingForm1/BasePodBody_NoRevive.prefab"; public static string BrittleBuffWard = "RoR2/DLC3/SolusWingForm1/BrittleBuffWard.prefab"; public static string FireExtinguisherForpodBody = "RoR2/DLC3/SolusWingForm1/FireExtinguisherForpodBody.prefab"; public static string FireExtinguisherPodBody = "RoR2/DLC3/SolusWingForm1/FireExtinguisherPodBody.prefab"; public static string HeaterPodBody = "RoR2/DLC3/SolusWingForm1/HeaterPodBody.prefab"; public static string HeaterPodBodyNoRespawn = "RoR2/DLC3/SolusWingForm1/HeaterPodBodyNoRespawn.prefab"; public static string HeaterPodBodyNoRespawnLarge = "RoR2/DLC3/SolusWingForm1/HeaterPodBodyNoRespawn_Large.prefab"; public static string PodDeathExplosionVFX = "RoR2/DLC3/SolusWingForm1/PodDeathExplosionVFX.prefab"; public static string ExtinguisherParticleVFX = "RoR2/DLC3/SolusWingForm1/ExtinguisherParticleVFX.prefab"; public static string FireExtinguisher = "RoR2/DLC3/SolusWingForm1/FireExtinguisher.prefab"; public static string HeatsinkDistortion = "RoR2/DLC3/SolusWingForm1/HeatsinkDistortion.prefab"; public static string HeatSinkPodBody = "RoR2/DLC3/SolusWingForm1/HeatSinkPodBody.prefab"; public static string HeatsinksRoot = "RoR2/DLC3/SolusWingForm1/Heatsinks Root.prefab"; public static string mdlHeatsink = "RoR2/DLC3/SolusWingForm1/mdlHeatsink.fbx"; public static string mdlPod33 = "RoR2/DLC3/SolusWingForm1/mdlPod.fbx"; public static string mdlPodColliders = "RoR2/DLC3/SolusWingForm1/mdlPodColliders.fbx"; public static string mdlSolusWingEyeTube = "RoR2/DLC3/SolusWingForm1/mdlSolusWingEyeTube.fbx"; public static string PodMaster = "RoR2/DLC3/SolusWingForm1/PodMaster.prefab"; public static string PodPlaceholder = "RoR2/DLC3/SolusWingForm1/PodPlaceholder.prefab"; public static string SolusWingShieldBubble = "RoR2/DLC3/SolusWingForm1/SolusWingShieldBubble.prefab"; public static string SolusWithCables = "RoR2/DLC3/SolusWingForm1/SolusWithCables.fbx"; public static string untitled = "RoR2/DLC3/SolusWingForm1/untitled.fbx"; public static string GreasePuddleCharge = "RoR2/DLC3/Tanker/GreasePuddleCharge.prefab"; public static string GreasePuddleExplosion = "RoR2/DLC3/Tanker/GreasePuddleExplosion.prefab"; public static string GreasePuddleExplosionVFX = "RoR2/DLC3/Tanker/GreasePuddleExplosion_VFX.prefab"; public static string TankerAccelerantPuddleBodyProjectile = "RoR2/DLC3/Tanker/TankerAccelerantPuddleBodyProjectile.prefab"; public static string TankerAccelerantPuddleBodyProjectileGhost = "RoR2/DLC3/Tanker/TankerAccelerantPuddleBodyProjectileGhost.prefab"; public static string TankerIgniteDoTProjectile = "RoR2/DLC3/Tanker/TankerIgniteDoTProjectile.prefab"; public static string TankerIgniteDoTProjectileGhost = "RoR2/DLC3/Tanker/TankerIgniteDoTProjectileGhost.prefab"; public static string TankerLogbookBody = "RoR2/DLC3/Tanker/TankerLogbookBody.prefab"; public static string mdTankerUnit = "RoR2/DLC3/Tanker/mdTankerUnit.fbx"; public static string mdTankerUnitMaster = "RoR2/DLC3/Tanker/mdTankerUnit@Master.fbx"; public static string TankerAccelerantDelayedExplosion = "RoR2/DLC3/Tanker/TankerAccelerantDelayedExplosion.prefab"; public static string TankerAccelerantProjectile = "RoR2/DLC3/Tanker/TankerAccelerantProjectile.prefab"; public static string TankerAccelerantProjectileGhost = "RoR2/DLC3/Tanker/TankerAccelerantProjectileGhost.prefab"; public static string TankerAccelerantTracerVFX = "RoR2/DLC3/Tanker/TankerAccelerantTracerVFX.prefab"; public static string TankerIgniteFlamethrowVFX = "RoR2/DLC3/Tanker/TankerIgniteFlamethrowVFX.prefab"; public static string TankerIgniteImpact = "RoR2/DLC3/Tanker/TankerIgniteImpact.prefab"; public static string TankerIgniteImpactVFX = "RoR2/DLC3/Tanker/TankerIgniteImpactVFX.prefab"; public static string TankerIgniteTracerVFX = "RoR2/DLC3/Tanker/TankerIgniteTracerVFX.prefab"; public static string TankerBody = "RoR2/DLC3/Tanker/TankerBody.prefab"; public static string TankerMaster = "RoR2/DLC3/Tanker/TankerMaster.prefab"; public static string mdlTankerHatch = "RoR2/DLC3/Tanker/mdlTankerHatch.fbx"; public static string mdlTankerTank = "RoR2/DLC3/Tanker/mdlTankerTank.fbx"; public static string TankerAccelerantMuzzleFlashVFX = "RoR2/DLC3/Tanker/TankerAccelerantMuzzleFlashVFX.prefab"; public static string TankerAccelerantTouchOilVFX = "RoR2/DLC3/Tanker/TankerAccelerantTouchOilVFX.prefab"; public static string TankerDeathVFX = "RoR2/DLC3/Tanker/TankerDeathVFX.prefab"; public static string TankerIgniteDoTImpactVFX = "RoR2/DLC3/Tanker/TankerIgniteDoTImpactVFX.prefab"; public static string TankerOmniExplosionVFXSoft = "RoR2/DLC3/Tanker/TankerOmniExplosionVFXSoft.prefab"; public static string TankerSpawnVFX = "RoR2/DLC3/Tanker/TankerSpawnVFX.prefab"; public static string mdlBaseCollider = "RoR2/DLC3/mdlBase_Collider.fbx"; public static string mdlShellCollider = "RoR2/DLC3/mdlShell_Collider.fbx"; public static string mdlSolusVendor = "RoR2/DLC3/mdlSolusVendor.fbx"; public static string mdlSolusVendorMaster = "RoR2/DLC3/mdlSolusVendor@Master.fbx"; public static string SolusVendorStealEffect = "RoR2/DLC3/SolusVendorStealEffect.prefab"; public static string SolusVendorBody = "RoR2/DLC3/SolusVendorBody.prefab"; public static string SolusVendorMaster = "RoR2/DLC3/SolusVendorMaster.prefab"; public static string deathfly = "RoR2/DLC3/VultureHunter/death_fly.fbx"; public static string deathperch = "RoR2/DLC3/VultureHunter/death_perch.fbx"; public static string flybackward = "RoR2/DLC3/VultureHunter/fly_backward.fbx"; public static string flydown = "RoR2/DLC3/VultureHunter/fly_down.fbx"; public static string flyforward = "RoR2/DLC3/VultureHunter/fly_forward.fbx"; public static string flyleft = "RoR2/DLC3/VultureHunter/fly_left.fbx"; public static string flyright = "RoR2/DLC3/VultureHunter/fly_right.fbx"; public static string flyup = "RoR2/DLC3/VultureHunter/fly_up.fbx"; public static string hoveridle = "RoR2/DLC3/VultureHunter/hover_idle.fbx"; public static string hoveridlenospear = "RoR2/DLC3/VultureHunter/hover_idle_nospear.fbx"; public static string perchaim = "RoR2/DLC3/VultureHunter/perch_aim.fbx"; public static string perchidle = "RoR2/DLC3/VultureHunter/perch_idle.fbx"; public static string divebomb = "RoR2/DLC3/VultureHunter/dive_bomb.fbx"; public static string divebombloop = "RoR2/DLC3/VultureHunter/dive_bomb_loop.fbx"; public static string flyhack = "RoR2/DLC3/VultureHunter/fly_hack.fbx"; public static string flytospear = "RoR2/DLC3/VultureHunter/fly_to_spear.fbx"; public static string flytospearloop = "RoR2/DLC3/VultureHunter/fly_to_spear_loop.fbx"; public static string perchhack = "RoR2/DLC3/VultureHunter/perch_hack.fbx"; public static string throwspear = "RoR2/DLC3/VultureHunter/throw_spear.fbx"; public static string EmptyTester = "RoR2/DLC3/VultureHunter/EmptyTester.prefab"; public static string vultureboss = "RoR2/DLC3/VultureHunter/vulture_boss.fbx"; public static string vulturebosstempBackpackGlow02 = "RoR2/DLC3/VultureHunter/vulture_boss_temp_Backpack_Glow02.fbx"; public static string BeamVultureHunterSolus = "RoR2/DLC3/VultureHunter/BeamVultureHunterSolus.prefab"; public static string BombingRunDelayedExplosionProjectile = "RoR2/DLC3/VultureHunter/BombingRunDelayedExplosionProjectile.prefab"; public static string SpearImpactDelayedExplosionProjectile = "RoR2/DLC3/VultureHunter/SpearImpactDelayedExplosionProjectile.prefab"; public static string SpearImpactHeatUpGhost = "RoR2/DLC3/VultureHunter/SpearImpactHeatUpGhost.prefab"; public static string VultureBombingRunSwoop = "RoR2/DLC3/VultureHunter/VultureBombingRunSwoop.prefab"; public static string VultureCallDownMuzzle = "RoR2/DLC3/VultureHunter/VultureCallDownMuzzle.prefab"; public static string VultureHunterAimLaser = "RoR2/DLC3/VultureHunter/VultureHunterAimLaser.prefab"; public static string VultureHunterDiabloStrikeEntranceGhost = "RoR2/DLC3/VultureHunter/VultureHunterDiabloStrikeEntranceGhost.prefab"; public static string VultureHunterDiabloStrikeEntranceProjectile = "RoR2/DLC3/VultureHunter/VultureHunterDiabloStrikeEntranceProjectile.prefab"; public static string VultureHunterDiabloStrikeGhost = "RoR2/DLC3/VultureHunter/VultureHunterDiabloStrikeGhost.prefab"; public static string VultureHunterDiabloStrikeProjectile = "RoR2/DLC3/VultureHunter/VultureHunterDiabloStrikeProjectile.prefab"; public static string VultureHunterSendFlare = "RoR2/DLC3/VultureHunter/VultureHunterSendFlare.prefab"; public static string VultureHunterSkyDeath = "RoR2/DLC3/VultureHunter/VultureHunterSkyDeath.prefab"; public static string VultureHunterSolusCharge = "RoR2/DLC3/VultureHunter/VultureHunterSolusCharge.prefab"; public static string VultureHunterSolusExplosion = "RoR2/DLC3/VultureHunter/VultureHunterSolusExplosion.prefab"; public static string VultureHunterSolusProjectileGhost = "RoR2/DLC3/VultureHunter/VultureHunterSolusProjectileGhost.prefab"; public static string VultureHunterSpearIndicator = "RoR2/DLC3/VultureHunter/VultureHunterSpearIndicator.prefab"; public static string VultureHunterSpearThrowFX = "RoR2/DLC3/VultureHunter/VultureHunterSpearThrowFX.prefab"; public static string VultureHunterTaggedSolusProjectileGhost = "RoR2/DLC3/VultureHunter/VultureHunterTaggedSolusProjectileGhost.prefab"; public static string VultureHunterTaggedXiProjectileGhost = "RoR2/DLC3/VultureHunter/VultureHunterTaggedXiProjectileGhost.prefab"; public static string VultureHunterTrashCalldownGhost = "RoR2/DLC3/VultureHunter/VultureHunterTrashCalldownGhost.prefab"; public static string VultureHunterTrashCalldownImpact = "RoR2/DLC3/VultureHunter/VultureHunterTrashCalldownImpact.prefab"; public static string VultureHunterXiChargeFX = "RoR2/DLC3/VultureHunter/VultureHunterXiChargeFX.prefab"; public static string VultureHunterXiExplosion = "RoR2/DLC3/VultureHunter/VultureHunterXiExplosion.prefab"; public static string VultureHunterXiLaser = "RoR2/DLC3/VultureHunter/VultureHunterXiLaser.prefab"; public static string VultureHunterXiMuzzleFlash = "RoR2/DLC3/VultureHunter/VultureHunterXiMuzzleFlash.prefab"; public static string VultureHunterXiProjectileGhost = "RoR2/DLC3/VultureHunter/VultureHunterXiProjectileGhost.prefab"; public static string VultureHunterXiSpearExplosion = "RoR2/DLC3/VultureHunter/VultureHunterXiSpearExplosion.prefab"; public static string XiSpearImpactVisual = "RoR2/DLC3/VultureHunter/XiSpearImpactVisual.prefab"; public static string XiSpearRoostEffect = "RoR2/DLC3/VultureHunter/XiSpearRoostEffect.prefab"; public static string VultureHunterBombingRunHomingProjectile = "RoR2/DLC3/VultureHunter/VultureHunterBombingRunHomingProjectile.prefab"; public static string vultureHunterExplosion = "RoR2/DLC3/VultureHunter/vultureHunterExplosion.prefab"; public static string vultureHunterProjectile = "RoR2/DLC3/VultureHunter/vultureHunterProjectile.prefab"; public static string VultureHunterProjectileIndicator = "RoR2/DLC3/VultureHunter/VultureHunterProjectileIndicator.prefab"; public static string VultureHunterTeleportDisappear = "RoR2/DLC3/VultureHunter/VultureHunterTeleportDisappear.prefab"; public static string VultureHunterTeleportReAppear = "RoR2/DLC3/VultureHunter/VultureHunterTeleportReAppear.prefab"; public static string VultureHunterXiSpearProjectileTeleported = "RoR2/DLC3/VultureHunter/VultureHunterXiSpearProjectileTeleported.prefab"; public static string VultureHunterXiSpearProjectileThrown = "RoR2/DLC3/VultureHunter/VultureHunterXiSpearProjectileThrown.prefab"; public static string VultureHunterXiSpearTeleportDropEffect = "RoR2/DLC3/VultureHunter/VultureHunterXiSpearTeleportDropEffect.prefab"; public static string VultureHunterXiSpearVisual = "RoR2/DLC3/VultureHunter/VultureHunterXiSpearVisual.prefab"; public static string VultureHunterBody = "RoR2/DLC3/VultureHunter/VultureHunterBody.prefab"; public static string VultureHunterMaster = "RoR2/DLC3/VultureHunter/VultureHunterMaster.prefab"; public static string mdlWorkerUnit = "RoR2/DLC3/WorkerUnit/mdlWorkerUnit.fbx"; public static string mdlWorkerUnitMaster = "RoR2/DLC3/WorkerUnit/mdlWorkerUnit@Master.fbx"; public static string SolusEyeCharge = "RoR2/DLC3/WorkerUnit/SolusEyeCharge.prefab"; public static string SolusLaser = "RoR2/DLC3/WorkerUnit/SolusLaser.prefab"; public static string WorkerUnitDeathVFX = "RoR2/DLC3/WorkerUnit/WorkerUnitDeathVFX.prefab"; public static string WorkerUnitHitImpact = "RoR2/DLC3/WorkerUnit/WorkerUnitHitImpact.prefab"; public static string WorkerUnitMinePlantVFX = "RoR2/DLC3/WorkerUnit/WorkerUnitMinePlantVFX.prefab"; public static string WorkerUnitSpawnVFX = "RoR2/DLC3/WorkerUnit/WorkerUnitSpawnVFX.prefab"; public static string WorkerUnitBody = "RoR2/DLC3/WorkerUnit/WorkerUnitBody.prefab"; public static string WorkerUnitMaster = "RoR2/DLC3/WorkerUnit/WorkerUnitMaster.prefab"; public static string AccelerantDebuffEffect = "RoR2/DLC3/Buffs/AccelerantDebuffEffect.prefab"; public static string DroneShockDamageElectrocutedEffect = "RoR2/DLC3/Buffs/DroneShockDamage_ElectrocutedEffect.prefab"; public static string DroneShockDamageSpreadAOE = "RoR2/DLC3/Buffs/DroneShockDamageSpreadAOE.prefab"; public static string DroneShockDamageSpreadAOEGhost = "RoR2/DLC3/Buffs/DroneShockDamageSpreadAOEGhost.prefab"; public static string DroneShockDamageElectrocutionerEffect = "RoR2/DLC3/Buffs/DroneShockDamage_ElectrocutionerEffect.prefab"; public static string DroneShockDamageElectrocutionerOnDroneEffect = "RoR2/DLC3/Buffs/DroneShockDamage_ElectrocutionerOnDroneEffect.prefab"; public static string DroneShockDamageActivateVFX = "RoR2/DLC3/Buffs/DroneShockDamageActivateVFX.prefab"; public static string DroneShockDamageIdleVFX = "RoR2/DLC3/Buffs/DroneShockDamageIdleVFX.prefab"; public static string InventoryDisableEffect = "RoR2/DLC3/Buffs/InventoryDisableEffect.prefab"; public static string NanoBugEffect = "RoR2/DLC3/Buffs/NanoBugEffect.prefab"; public static string NanoBugProcEffect = "RoR2/DLC3/Buffs/NanoBugProcEffect.prefab"; public static string OLDNanoBugEffect = "RoR2/DLC3/Buffs/OLD_NanoBugEffect.prefab"; public static string ShieldTankDamageEffect = "RoR2/DLC3/Buffs/ShieldTankDamageEffect.prefab"; public static string SureProcDetonateEffect = "RoR2/DLC3/Buffs/SureProcDetonateEffect.prefab"; public static string SureProcPassiveEffect = "RoR2/DLC3/Buffs/SureProcPassiveEffect.prefab"; public static string DLC3RunBehavior = "RoR2/DLC3/DLC3RunBehavior.prefab"; public static string CCZiprailVehicle = "RoR2/DLC3/CCZiprailVehicle.prefab"; public static string SolutionalHauntZiprailVehicle = "RoR2/DLC3/SolutionalHauntZiprailVehicle.prefab"; public static string TechZiprail = "RoR2/DLC3/TechZiprail.prefab"; public static string TEMPTechZiprailEdgepointVFX = "RoR2/DLC3/TEMP_TechZiprailEdgepointVFX.prefab"; public static string TEMPTechZiprailNodeVFX = "RoR2/DLC3/TEMP_TechZiprailNodeVFX.prefab"; public static string TEMPTechZiprailVehicleVFX = "RoR2/DLC3/TEMP_TechZiprailVehicleVFX.prefab"; public static string ZipRailHaloRadiusVFX = "RoR2/DLC3/ZipRail_HaloRadius_VFX.prefab"; public static string ZipRailLineRenderWithBaseVFX = "RoR2/DLC3/ZipRail_LineRender_WithBase_VFX.prefab"; public static string ZipRailNodeVFXVFX = "RoR2/DLC3/ZipRail_NodeVFX_VFX.prefab"; public static string ZipRailVehicleVFXVFX = "RoR2/DLC3/ZipRail_VehicleVFX_VFX.prefab"; public static string mdlACPortal = "RoR2/DLC3/mdlACPortal.fbx"; public static string mdlArielSpinnerRing = "RoR2/DLC3/mdlArielSpinnerRing.fbx"; public static string mdlArielSpinnerRing2 = "RoR2/DLC3/mdlArielSpinnerRing2.fbx"; public static string mdlBasicPlane01 = "RoR2/DLC3/mdlBasicPlane01.fbx"; public static string mdlBasicPlane02 = "RoR2/DLC3/mdlBasicPlane02.fbx"; public static string mdlBentLightning01 = "RoR2/DLC3/mdlBentLightning01.fbx"; public static string mdlCubeScaleTest = "RoR2/DLC3/mdlCubeScaleTest.fbx"; public static string mdlCylinderTopPivot = "RoR2/DLC3/mdlCylinderTopPivot.fbx"; public static string mdlCylinderVFXRing01 = "RoR2/DLC3/mdlCylinderVFXRing01.fbx"; public static string mdlDonutVFX01 = "RoR2/DLC3/mdlDonutVFX01.fbx"; public static string mdlDonutVFX01b = "RoR2/DLC3/mdlDonutVFX01b.fbx"; public static string mdlEmitterMesh01 = "RoR2/DLC3/mdlEmitterMesh01.fbx"; public static string mdlNoiseSphere01 = "RoR2/DLC3/mdlNoiseSphere_01.fbx"; public static string mdlNoiseSphere03 = "RoR2/DLC3/mdlNoiseSphere_03.fbx"; public static string mdlNoiseTorus01 = "RoR2/DLC3/mdlNoiseTorus01.fbx"; public static string mdlShockwaveDonut1 = "RoR2/DLC3/mdlShockwaveDonut1.fbx"; public static string mdlShockwaveRing = "RoR2/DLC3/mdlShockwaveRing.fbx"; public static string mdlSphereBoxTriLarge = "RoR2/DLC3/mdlSphereBoxTriLarge.fbx"; public static string mdlSphereTriLarge = "RoR2/DLC3/mdlSphereTriLarge.fbx"; public static string mdlTorusVFXRing = "RoR2/DLC3/mdlTorusVFXRing.fbx"; public static string mdlTorusVFXRing02 = "RoR2/DLC3/mdlTorusVFXRing02.fbx"; public static string mdlTorusVFXRing03 = "RoR2/DLC3/mdlTorusVFXRing03.fbx"; public static string mdlTorusVFXRing03b = "RoR2/DLC3/mdlTorusVFXRing03b.fbx"; public static string mdlTorusVFXRing04 = "RoR2/DLC3/mdlTorusVFXRing04.fbx"; public static string mdlVertCylinder = "RoR2/DLC3/mdlVertCylinder.fbx"; public static string mdlVFXCylinder01 = "RoR2/DLC3/mdlVFXCylinder01.fbx"; public static string mdlVFXCylinder01b = "RoR2/DLC3/mdlVFXCylinder01b.fbx"; public static string mdlVFXCylinder01c = "RoR2/DLC3/mdlVFXCylinder01c.fbx"; public static string mdlXmesh = "RoR2/DLC3/mdlXmesh.fbx"; public static string mdlZFacingPlane = "RoR2/DLC3/mdlZFacingPlane.fbx"; public static string AffixCollectiveBodyAttachment = "RoR2/DLC3/Collective/AffixCollectiveBodyAttachment.prefab"; public static string AffixCollectiveTetherVFX = "RoR2/DLC3/Collective/AffixCollectiveTetherVFX.prefab"; public static string CollectiveDeathProjectile = "RoR2/DLC3/Collective/CollectiveDeathProjectile.prefab"; public static string CollectiveDeathProjectileGhost = "RoR2/DLC3/Collective/CollectiveDeathProjectileGhost.prefab"; public static string CollectiveHornWarningVFX = "RoR2/DLC3/Collective/CollectiveHornWarningVFX.prefab"; public static string CollectiveOrbEffect = "RoR2/DLC3/Collective/CollectiveOrbEffect.prefab"; public static string CollectiveProjectileAlly = "RoR2/DLC3/Collective/CollectiveProjectile_Ally.prefab"; public static string CollectiveProjectileMain = "RoR2/DLC3/Collective/CollectiveProjectile_Main.prefab"; public static string DamageBlockedVFX = "RoR2/DLC3/Collective/DamageBlockedVFX.prefab"; public static string DisplayEliteCollectiveHorn = "RoR2/DLC3/Collective/DisplayEliteCollectiveHorn.prefab"; public static string DisplayEliteCollectiveRing = "RoR2/DLC3/Collective/DisplayEliteCollectiveRing.prefab"; public static string EliteHorn = "RoR2/DLC3/Collective/EliteHorn.fbx"; public static string EliteRings = "RoR2/DLC3/Collective/EliteRings.fbx"; public static string mdlEliteCollective = "RoR2/DLC3/Collective/mdlEliteCollective.fbx"; public static string OrbSpawnerVFX = "RoR2/DLC3/Collective/OrbSpawnerVFX.prefab"; public static string PickupEliteCollective = "RoR2/DLC3/Collective/PickupEliteCollective.prefab"; public static string DisplayGroundEnemies = "RoR2/DLC3/GroundEnemies/DisplayGroundEnemies.prefab"; public static string GroundEnemiesIndicator = "RoR2/DLC3/GroundEnemies/GroundEnemiesIndicator.prefab"; public static string mdlGroundEnemies = "RoR2/DLC3/GroundEnemies/mdlGroundEnemies.fbx"; public static string PickupGroundEnemies = "RoR2/DLC3/GroundEnemies/PickupGroundEnemies.prefab"; public static string GroundEnemiesAoEZoneVFX = "RoR2/DLC3/GroundEnemies/GroundEnemiesAoEZoneVFX.prefab"; public static string GroundEnemiesMuzzleFlash = "RoR2/DLC3/GroundEnemies/GroundEnemiesMuzzleFlash.prefab"; public static string mdlGravityCone = "RoR2/DLC3/GroundEnemies/mdlGravityCone.fbx"; public static string mdlGravityGroundDonut = "RoR2/DLC3/GroundEnemies/mdlGravityGroundDonut.fbx"; public static string TracerGroundEnemies = "RoR2/DLC3/GroundEnemies/TracerGroundEnemies.prefab"; public static string mdlParry = "RoR2/DLC3/Parry/mdlParry.fbx"; public static string ParryDisplay = "RoR2/DLC3/Parry/ParryDisplay.prefab"; public static string ParryEffect = "RoR2/DLC3/Parry/ParryEffect.prefab"; public static string ParryHalo = "RoR2/DLC3/Parry/ParryHalo.prefab"; public static string ParryOrbEffect = "RoR2/DLC3/Parry/ParryOrbEffect.prefab"; public static string PickupParry = "RoR2/DLC3/Parry/PickupParry.prefab"; public static string DecompileFadeAway = "RoR2/DLC3/ClassicRun/Endings/DecompileFadeAway.prefab"; public static string DecompileFlash = "RoR2/DLC3/ClassicRun/Endings/DecompileFlash.prefab"; public static string DecompileFlowers = "RoR2/DLC3/ClassicRun/Endings/DecompileFlowers.prefab"; public static string DecompileFreezeBegin = "RoR2/DLC3/ClassicRun/Endings/DecompileFreezeBegin.prefab"; public static string AccessCodesNode = "RoR2/DLC3/AccessCodesNode/Access Codes Node.prefab"; public static string AccessCodesPortals = "RoR2/DLC3/AccessCodesNode/Access Codes Portals.prefab"; public static string AccessCodesNodeOFF = "RoR2/DLC3/AccessCodesNode/AccessCodesNodeOFF.prefab"; public static string AccessCodesNodeON = "RoR2/DLC3/AccessCodesNode/AccessCodesNodeON.prefab"; public static string GROUPAccessCodesHauntVariant = "RoR2/DLC3/AccessCodesNode/GROUP_ Access Codes Haunt Variant.prefab"; public static string GROUPAccessCodes = "RoR2/DLC3/AccessCodesNode/GROUP_ Access Codes.prefab"; public static string mdlAccessCodesNode = "RoR2/DLC3/AccessCodesNode/mdlAccessCodesNode.fbx"; public static string mdlAccessCodesNodeMaster = "RoR2/DLC3/AccessCodesNode/mdlAccessCodesNode@Master.fbx"; public static string AccessCodesTeleporterVFX = "RoR2/DLC3/AccessCodesNode/AccessCodesTeleporterVFX.prefab"; public static string ACTeleporterVFXLight = "RoR2/DLC3/AccessCodesNode/ACTeleporterVFXLight.prefab"; public static string NodeBlinkVFX = "RoR2/DLC3/AccessCodesNode/NodeBlinkVFX.prefab"; public static string NodeCompleteVFX = "RoR2/DLC3/AccessCodesNode/NodeCompleteVFX.prefab"; public static string NodeFailureVFX = "RoR2/DLC3/AccessCodesNode/NodeFailureVFX.prefab"; public static string NodeSuccessVFX = "RoR2/DLC3/AccessCodesNode/NodeSuccessVFX.prefab"; public static string BrokenHAND = "RoR2/DLC3/BrokenHAND/BrokenHAND.prefab"; public static string CoinSlot = "RoR2/DLC3/CoinSlot/CoinSlot.prefab"; public static string CoinSlotStatue = "RoR2/DLC3/CoinSlot/CoinSlotStatue.prefab"; public static string CoinSlotStatueSHPostBossPuzzle = "RoR2/DLC3/CoinSlot/CoinSlotStatue_SH_PostBossPuzzle.prefab"; public static string CoinSlotTeleporterVFX = "RoR2/DLC3/CoinSlot/CoinSlotTeleporterVFX.prefab"; public static string CoinSlotUseEffect = "RoR2/DLC3/CoinSlot/CoinSlotUseEffect.prefab"; public static string mdlCoinSlot = "RoR2/DLC3/CoinSlot/mdlCoinSlot.fbx"; public static string mdlEmitterMesh02 = "RoR2/DLC3/CoinSlot/mdlEmitterMesh02.fbx"; public static string mdlEmitterMesh02b = "RoR2/DLC3/CoinSlot/mdlEmitterMesh02b.fbx"; public static string ShrineCollectiveUseEffect = "RoR2/DLC3/ShrineCollectiveUseEffect.prefab"; public static string ShrineCombatCollective = "RoR2/DLC3/ShrineCombatCollective.prefab"; public static string DrifterBagChest = "RoR2/DLC3/DrifterBagChest/DrifterBagChest.prefab"; public static string AssemblyStationPickerPanelv2 = "RoR2/DLC3/DroneAssemblyStation/AssemblyStationPickerPanelv2.prefab"; public static string DroneAssemblyStation = "RoR2/DLC3/DroneAssemblyStation/DroneAssemblyStation.prefab"; public static string DroneAssemblyStationPickerPanel = "RoR2/DLC3/DroneAssemblyStation/DroneAssemblyStationPickerPanel.prefab"; public static string mdlDroneAssemblyStation = "RoR2/DLC3/DroneAssemblyStation/mdlDroneAssemblyStation.fbx"; public static string mdlDroneAssemblyStationmaster = "RoR2/DLC3/DroneAssemblyStation/mdlDroneAssemblyStation@master.fbx"; public static string AssemblyDroneSpawnVFX = "RoR2/DLC3/DroneAssemblyStation/AssemblyDroneSpawnVFX.prefab"; public static string AssemblyDroneVFX = "RoR2/DLC3/DroneAssemblyStation/AssemblyDroneVFX.prefab"; public static string mdlDroneAssemblyStationRayFX = "RoR2/DLC3/DroneAssemblyStation/mdlDroneAssemblyStation_Ray_FX.fbx"; public static string DroneCombinerCharging = "RoR2/DLC3/DroneCombinerStation/DroneCombinerCharging.prefab"; public static string DroneCombinerDroneDestroy = "RoR2/DLC3/DroneCombinerStation/DroneCombinerDroneDestroy.prefab"; public static string DroneCombinerDroneUpgrade = "RoR2/DLC3/DroneCombinerStation/DroneCombinerDroneUpgrade.prefab"; public static string DroneCombinerFlash = "RoR2/DLC3/DroneCombinerStation/DroneCombinerFlash.prefab"; public static string DroneCombinerStation = "RoR2/DLC3/DroneCombinerStation/DroneCombinerStation.prefab"; public static string HologramContent = "RoR2/DLC3/DroneCombinerStation/HologramContent.prefab"; public static string DroneScrapper = "RoR2/DLC3/DroneScrapper/DroneScrapper.prefab"; public static string DroneScrapperPickerPanel = "RoR2/DLC3/DroneScrapper/DroneScrapperPickerPanel.prefab"; public static string DroneTakenOrbEffect = "RoR2/DLC3/DroneScrapper/DroneTakenOrbEffect.prefab"; public static string mdlDroneScrapper = "RoR2/DLC3/DroneScrapper/mdlDroneScrapper.fbx"; public static string mdlScrapperDronemaster = "RoR2/DLC3/DroneScrapper/mdlScrapperDrone@master.fbx"; public static string DroneScrapperEndVFX = "RoR2/DLC3/DroneScrapper/DroneScrapperEndVFX.prefab"; public static string DroneScrapperScrappingVFX = "RoR2/DLC3/DroneScrapper/DroneScrapperScrappingVFX.prefab"; public static string HoloDrone1 = "RoR2/DLC3/HoloDrone1.prefab"; public static string HoloDrone2 = "RoR2/DLC3/HoloDrone2.prefab"; public static string HoloDroneBackup = "RoR2/DLC3/HoloDroneBackup.prefab"; public static string HoloDroneBombardment = "RoR2/DLC3/HoloDroneBombardment.prefab"; public static string HoloDroneCleanup = "RoR2/DLC3/HoloDroneCleanup.prefab"; public static string HoloDroneCopycat = "RoR2/DLC3/HoloDroneCopycat.prefab"; public static string HoloDroneEmergency = "RoR2/DLC3/HoloDroneEmergency.prefab"; public static string HoloDroneEquipment = "RoR2/DLC3/HoloDroneEquipment.prefab"; public static string HoloDroneFlame = "RoR2/DLC3/HoloDroneFlame.prefab"; public static string HoloDroneHauler = "RoR2/DLC3/HoloDroneHauler.prefab"; public static string HoloDroneJailer = "RoR2/DLC3/HoloDroneJailer.prefab"; public static string HoloDroneJunk = "RoR2/DLC3/HoloDroneJunk.prefab"; public static string HoloDroneMega = "RoR2/DLC3/HoloDroneMega.prefab"; public static string HoloDroneMissile = "RoR2/DLC3/HoloDroneMissile.prefab"; public static string HoloDroneRecharge = "RoR2/DLC3/HoloDroneRecharge.prefab"; public static string PickupDroneBackup = "RoR2/DLC3/PickupDroneBackup.prefab"; public static string PickupDroneBombardment = "RoR2/DLC3/PickupDroneBombardment.prefab"; public static string PickupDroneCleanup = "RoR2/DLC3/PickupDroneCleanup.prefab"; public static string PickupDroneCopycat = "RoR2/DLC3/PickupDroneCopycat.prefab"; public static string PickupDroneEmergency = "RoR2/DLC3/PickupDroneEmergency.prefab"; public static string PickupDroneEquipment = "RoR2/DLC3/PickupDroneEquipment.prefab"; public static string PickupDroneFlame = "RoR2/DLC3/PickupDroneFlame.prefab"; public static string PickupDroneHauler = "RoR2/DLC3/PickupDroneHauler.prefab"; public static string PickupDroneJailer = "RoR2/DLC3/PickupDroneJailer.prefab"; public static string PickupDroneJunk = "RoR2/DLC3/PickupDroneJunk.prefab"; public static string PickupDroneMega = "RoR2/DLC3/PickupDroneMega.prefab"; public static string PickupDroneMissile = "RoR2/DLC3/PickupDroneMissile.prefab"; public static string PickupDroneRecharge = "RoR2/DLC3/PickupDroneRecharge.prefab"; public static string DroneVendor = "RoR2/DLC3/DroneVendor.prefab"; public static string DroneVendorBeamEndVFX = "RoR2/DLC3/DroneVendorBeamEndVFX.prefab"; public static string DroneVendorBeamPurchaseEndVFX = "RoR2/DLC3/DroneVendorBeamPurchaseEndVFX.prefab"; public static string DroneVendorBeamPurchasePersVFX = "RoR2/DLC3/DroneVendorBeamPurchasePersVFX.prefab"; public static string DroneVendorBeamSelectVFX = "RoR2/DLC3/DroneVendorBeamSelectVFX.prefab"; public static string DroneVendorDroneBeamsVFX = "RoR2/DLC3/DroneVendorDroneBeamsVFX.prefab"; public static string DroneVendorSpawnVFX = "RoR2/DLC3/DroneVendorSpawnVFX.prefab"; public static string mdlDroneVendor = "RoR2/DLC3/mdlDroneVendor.fbx"; public static string mdlDroneVendorMaster = "RoR2/DLC3/mdlDroneVendor@Master.fbx"; public static string mdlDroneVendorLight = "RoR2/DLC3/mdlDroneVendor_Light.fbx"; public static string mdlDroneVendorCollision = "RoR2/DLC3/mdlDroneVendorCollision.fbx"; public static string DroneVendorBeamPersSelectedVFX = "RoR2/DLC3/DroneVendorBeamPersSelectedVFX.prefab"; public static string DroneVendorBeamPersVFX = "RoR2/DLC3/DroneVendorBeamPersVFX.prefab"; public static string TripleDroneShop = "RoR2/DLC3/TripleDroneShop/TripleDroneShop.prefab"; public static string TripleDroneShopTerminal = "RoR2/DLC3/TripleDroneShopTerminal/TripleDroneShopTerminal.prefab"; public static string FriendUnitUnlockInteractable = "RoR2/DLC3/FriendUnitUnlockInteractable/FriendUnitUnlockInteractable.prefab"; public static string FWHumanFan1 = "RoR2/DLC3/FW_HumanFan 1.prefab"; public static string ChefWokWhitesAndGreens = "RoR2/DLC3/MealPrep/ChefWok, WhitesAndGreens.prefab"; public static string CookingTier0Effect = "RoR2/DLC3/MealPrep/CookingTier0Effect.prefab"; public static string CookingTier1EffectVariant = "RoR2/DLC3/MealPrep/CookingTier1Effect Variant.prefab"; public static string CookingTier2EffectVariant = "RoR2/DLC3/MealPrep/CookingTier2Effect Variant.prefab"; public static string CookingTier3EffectVariant = "RoR2/DLC3/MealPrep/CookingTier3Effect Variant.prefab"; public static string MealPrep = "RoR2/DLC3/MealPrep/MealPrep.prefab"; public static string MealPrepCookEffect = "RoR2/DLC3/MealPrep/MealPrepCookEffect.prefab"; public static string MealPrepPickerPanel = "RoR2/DLC3/MealPrep/MealPrepPickerPanel.prefab"; public static string PickupTakenOrbEffect = "RoR2/DLC3/MealPrep/PickupTakenOrbEffect.prefab"; public static string EyePortal = "RoR2/DLC3/EyePortal/EyePortal.prefab"; public static string EyePortalMuzzleEffect = "RoR2/DLC3/EyePortal/EyePortalMuzzleEffect.prefab"; public static string HardwareProgPortal = "RoR2/DLC3/HardwareProgPortal.prefab"; public static string HardwareProgPortalHaunt = "RoR2/DLC3/HardwareProgPortal_Haunt.prefab"; public static string CompExchangePortal = "RoR2/DLC3/CompExchangePortal.prefab"; public static string CompExchangePortalTeleporter = "RoR2/DLC3/CompExchangePortalTeleporter.prefab"; public static string SolusWebPortal = "RoR2/DLC3/SolusWebPortal.prefab"; public static string SolusWebPortalPrespawnEffect = "RoR2/DLC3/SolusWebPortalPrespawnEffect.prefab"; public static string SolusWebPortalSpawnEffect = "RoR2/DLC3/SolusWebPortalSpawnEffect.prefab"; public static string PowerPedestalCube = "RoR2/DLC3/PowerOrbPedestal/PowerPedestal_Cube.prefab"; public static string PowerPedestalOrb = "RoR2/DLC3/PowerOrbPedestal/PowerPedestal_Orb.prefab"; public static string PowerPedestalPyramid = "RoR2/DLC3/PowerOrbPedestal/PowerPedestal_Pyramid.prefab"; public static string PowerPedestalBase = "RoR2/DLC3/PowerOrbPedestal/PowerPedestalBase.prefab"; public static string mdlPowerCubeVaultSecret = "RoR2/DLC3/PowerOrbPedestal/mdlPowerCubeVaultSecret.fbx"; public static string mdlPowerOrbBase = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbBase.fbx"; public static string mdlPowerOrbBaseMaster = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbBase@Master.fbx"; public static string mdlPowerOrbBaseCollision = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbBaseCollision.fbx"; public static string mdlPowerOrbBaseSM = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbBaseSM.fbx"; public static string mdlPowerOrbBaseSMOpen = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbBaseSM_Open.fbx"; public static string mdlPowerOrbContainerCube = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbContainerCube.fbx"; public static string mdlPowerOrbContainerCubeMaster = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbContainerCube@Master.fbx"; public static string mdlPowerOrbContainerPyramid = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbContainerPyramid.fbx"; public static string mdlPowerOrbContainerPyramidMaster = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbContainerPyramid@Master.fbx"; public static string mdlPowerOrbContainerSphere = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbContainerSphere.fbx"; public static string mdlPowerOrbContainerSphereMaster = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbContainerSphere@Master.fbx"; public static string mdlPowerOrbCube = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbCube.fbx"; public static string mdlPowerOrbPyramid = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbPyramid.fbx"; public static string mdlPowerOrbSphere = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbSphere.fbx"; public static string mdlPowerOrbVaultSecret = "RoR2/DLC3/PowerOrbPedestal/mdlPowerOrbVaultSecret.fbx"; public static string mdlPowerPyramidVaultSecret = "RoR2/DLC3/PowerOrbPedestal/mdlPowerPyramidVaultSecret.fbx"; public static string PowerCubeVault = "RoR2/DLC3/PowerOrbPedestal/PowerCubeVault.prefab"; public static string PowerCubeVaultSecret = "RoR2/DLC3/PowerOrbPedestal/PowerCubeVaultSecret.prefab"; public static string PowerOrbVault = "RoR2/DLC3/PowerOrbPedestal/PowerOrbVault.prefab"; public static string PowerOrbVaultSecret = "RoR2/DLC3/PowerOrbPedestal/PowerOrbVaultSecret.prefab"; public static string PowerPyramidVault = "RoR2/DLC3/PowerOrbPedestal/PowerPyramidVault.prefab"; public static string PowerPyramidVaultSecret = "RoR2/DLC3/PowerOrbPedestal/PowerPyramidVaultSecret.prefab"; public static string PowerVaultBase = "RoR2/DLC3/PowerOrbPedestal/PowerVaultBase.prefab"; public static string PowerVaultActivationVFX = "RoR2/DLC3/PowerOrbPedestal/PowerVaultActivationVFX.prefab"; public static string PowerVaultAmbientVFX = "RoR2/DLC3/PowerOrbPedestal/PowerVaultAmbientVFX.prefab"; public static string mdlChamferCylinder = "RoR2/DLC3/PowerOrbShieldTank/mdlChamferCylinder.fbx"; public static string PowerOrbShieldTank = "RoR2/DLC3/PowerOrbShieldTank/PowerOrbShieldTank.prefab"; public static string ShieldTankDeadIdleVFX = "RoR2/DLC3/PowerOrbShieldTank/ShieldTankDeadIdleVFX.prefab"; public static string ShieldTankExplosionVFX = "RoR2/DLC3/PowerOrbShieldTank/ShieldTankExplosionVFX.prefab"; public static string ShieldTankExplosionVFXRed = "RoR2/DLC3/PowerOrbShieldTank/ShieldTankExplosionVFXRed.prefab"; public static string ShieldTankExplosionVFXTeal = "RoR2/DLC3/PowerOrbShieldTank/ShieldTankExplosionVFXTeal.prefab"; public static string ShieldTankIdleVFX = "RoR2/DLC3/PowerOrbShieldTank/ShieldTankIdleVFX.prefab"; public static string Pylon = "RoR2/DLC3/Pylon.prefab"; public static string SolusVendorShrine = "RoR2/DLC3/SolusVendorShrine/SolusVendorShrine.prefab"; public static string SolusVendorShrine2 = "RoR2/DLC3/SolusVendorShrine/SolusVendorShrine2.prefab"; public static string SolusVendorShrinePickerPanelVariant = "RoR2/DLC3/SolusVendorShrine/SolusVendorShrinePickerPanel-Variant.prefab"; public static string SolusVendorShrinePulse = "RoR2/DLC3/SolusVendorShrine/SolusVendorShrinePulse.prefab"; public static string SolutionalHauntPortal = "RoR2/DLC3/SolutionalHauntPortal.prefab"; public static string SolutionalHauntPortal2 = "RoR2/DLC3/SolutionalHauntPortal2.prefab"; public static string mdlTempItemDistributer = "RoR2/DLC3/TemporaryItemsDistributor/mdlTempItemDistributer.fbx"; public static string mdlTempItemDistributerMaster = "RoR2/DLC3/TemporaryItemsDistributor/mdlTempItemDistributer@Master.fbx"; public static string TempItemDistributorActivationVFX = "RoR2/DLC3/TemporaryItemsDistributor/TempItemDistributorActivationVFX.prefab"; public static string TempItemDistributorIdleVFX = "RoR2/DLC3/TemporaryItemsDistributor/TempItemDistributorIdleVFX.prefab"; public static string TemporaryItemsShopTerminal = "RoR2/DLC3/TemporaryItemsDistributor/TemporaryItemsShopTerminal.prefab"; public static string BarrierOnCooldownProc = "RoR2/DLC3/Items/BarrierOnCooldown/BarrierOnCooldownProc.prefab"; public static string DisplayBarrierOnCooldown = "RoR2/DLC3/Items/BarrierOnCooldown/DisplayBarrierOnCooldown.prefab"; public static string mdlBarrierOnCooldown = "RoR2/DLC3/Items/BarrierOnCooldown/mdlBarrierOnCooldown.fbx"; public static string mdlBarrierOnCooldown2 = "RoR2/DLC3/Items/BarrierOnCooldown/mdlBarrierOnCooldown.prefab"; public static string PickupBarrierOnCooldown = "RoR2/DLC3/Items/BarrierOnCooldown/PickupBarrierOnCooldown.prefab"; public static string DisplayQuickFix = "RoR2/DLC3/Items/BonusHealthBoost/DisplayQuickFix.prefab"; public static string mdlQuickFix = "RoR2/DLC3/Items/BonusHealthBoost/mdlQuickFix.fbx"; public static string PickupDubiousMeal = "RoR2/DLC3/Items/BonusHealthBoost/PickupDubiousMeal.prefab"; public static string PickupQuickFix = "RoR2/DLC3/Items/BonusHealthBoost/PickupQuickFix.prefab"; public static string DisplayCookedSteakCurved = "RoR2/DLC3/Items/CookedSteak/DisplayCookedSteakCurved.prefab"; public static string DisplayCookedSteakFlat = "RoR2/DLC3/Items/CookedSteak/DisplayCookedSteakFlat.prefab"; public static string mdlSearedSteak = "RoR2/DLC3/Items/CookedSteak/mdlSearedSteak.fbx"; public static string PickupCookedSteak = "RoR2/DLC3/Items/CookedSteak/PickupCookedSteak.prefab"; public static string CritAtLowerElevationDisplay = "RoR2/DLC3/Items/CritAtLowerElevation/CritAtLowerElevationDisplay.prefab"; public static string CritAtLowerElevationFullEffect = "RoR2/DLC3/Items/CritAtLowerElevation/CritAtLowerElevationFullEffect.prefab"; public static string CritAtLowerElevationImpact = "RoR2/DLC3/Items/CritAtLowerElevation/CritAtLowerElevationImpact.prefab"; public static string CritAtLowerElevationIndicator = "RoR2/DLC3/Items/CritAtLowerElevation/CritAtLowerElevationIndicator.prefab"; public static string mdlCritAtLowerElevation = "RoR2/DLC3/Items/CritAtLowerElevation/mdlCritAtLowerElevation.fbx"; public static string PickupCritAtLowerElevation = "RoR2/DLC3/Items/CritAtLowerElevation/PickupCritAtLowerElevation.prefab"; public static string DestructibleSpawner12 = "RoR2/DLC3/Items/DestructibleSpawnerItem/DestructibleSpawner.prefab"; public static string DestructibleSpawnerIdleVFX = "RoR2/DLC3/Items/DestructibleSpawnerItem/DestructibleSpawnerIdleVFX.prefab"; public static string DisplayDestructibleSpawnerIdleVFX = "RoR2/DLC3/Items/DestructibleSpawnerItem/DisplayDestructibleSpawnerIdleVFX.prefab"; public static string mdlDestructibleSpawner = "RoR2/DLC3/Items/DestructibleSpawnerItem/mdlDestructibleSpawner.fbx"; public static string mushroomCloud = "RoR2/DLC3/Items/DestructibleSpawnerItem/mushroomCloud.fbx"; public static string PickupDestructibleSpawner = "RoR2/DLC3/Items/DestructibleSpawnerItem/PickupDestructibleSpawner.prefab"; public static string DronesDropDynamiteDisplay = "RoR2/DLC3/Items/DronesDropDynamite/DronesDropDynamiteDisplay.prefab"; public static string DynamiteExplosionVFX = "RoR2/DLC3/Items/DronesDropDynamite/DynamiteExplosionVFX.prefab"; public static string DynamiteProjectile = "RoR2/DLC3/Items/DronesDropDynamite/DynamiteProjectile.prefab"; public static string DynamiteProjectileGhost = "RoR2/DLC3/Items/DronesDropDynamite/DynamiteProjectileGhost.prefab"; public static string DynamiteSpawner = "RoR2/DLC3/Items/DronesDropDynamite/DynamiteSpawner.prefab"; public static string mdlDestructibleSpawnerDynamite = "RoR2/DLC3/Items/DronesDropDynamite/mdlDestructibleSpawnerDynamite.fbx"; public static string DisplayDuplicator = "RoR2/DLC3/Items/Duplicator/DisplayDuplicator.prefab"; public static string DuplicatorFX = "RoR2/DLC3/Items/Duplicator/DuplicatorFX.prefab"; public static string mdlDuplicator34 = "RoR2/DLC3/Items/Duplicator/mdlDuplicator.fbx"; public static string PickupDuplicator = "RoR2/DLC3/Items/Duplicator/PickupDuplicator.prefab"; public static string DisplayExtraEquipment = "RoR2/DLC3/Items/ExtraEquipment/DisplayExtraEquipment.prefab"; public static string DisplayExtraEquipmentSingle = "RoR2/DLC3/Items/ExtraEquipment/DisplayExtraEquipmentSingle.prefab"; public static string meshExtraEquipment = "RoR2/DLC3/Items/ExtraEquipment/mesh_ExtraEquipment.fbx"; public static string PickupExtraEquipment = "RoR2/DLC3/Items/ExtraEquipment/PickupExtraEquipment.prefab"; public static string DisplayJumpDamageStrike = "RoR2/DLC3/Items/JumpDamageStrike/DisplayJumpDamageStrike.prefab"; public static string JumpDamageStrikeAccumulateCharge = "RoR2/DLC3/Items/JumpDamageStrike/JumpDamageStrikeAccumulateCharge.prefab"; public static string JumpDamageStrikeLightningAura = "RoR2/DLC3/Items/JumpDamageStrike/JumpDamageStrikeLightningAura.prefab"; public static string JumpDamageStrikeVFX = "RoR2/DLC3/Items/JumpDamageStrike/JumpDamageStrikeVFX.prefab"; public static string mdlJumpDamageStrike = "RoR2/DLC3/Items/JumpDamageStrike/mdlJumpDamageStrike.fbx"; public static string mdlFaradaySpurs = "RoR2/DLC3/Items/JumpDamageStrike/mdlFaradaySpurs.fbx"; public static string mdlFaradaySpurs6 = "RoR2/DLC3/Items/JumpDamageStrike/mdlFaradaySpurs.prefab"; public static string PickupJumpDamageStrike = "RoR2/DLC3/Items/JumpDamageStrike/PickupJumpDamageStrike.prefab"; public static string JunkPickup = "RoR2/DLC3/Items/JunkPickup.fbx"; public static string JunkPickupEffect = "RoR2/DLC3/Items/JunkPickupEffect.prefab"; public static string JunkPickUpFloat = "RoR2/DLC3/Items/JunkPickUpFloat.fbx"; public static string PickupJunk = "RoR2/DLC3/Items/PickupJunk.prefab"; public static string DisplayPowerOrbSphere = "RoR2/DLC3/Items/MasterBattery/DisplayPowerOrbSphere.prefab"; public static string DisplayPowerOrbSphereFollower = "RoR2/DLC3/Items/MasterBattery/DisplayPowerOrbSphereFollower.prefab"; public static string mdlPowerOrbSphere23 = "RoR2/DLC3/Items/MasterBattery/mdlPowerOrbSphere.fbx"; public static string PickupPowerOrbSphere = "RoR2/DLC3/Items/MasterBattery/PickupPowerOrbSphere.prefab"; public static string DisplayPowerOrbSphere3 = "RoR2/DLC3/Items/MasterCore/DisplayPowerOrbSphere.prefab"; public static string DisplayPowerOrbSphereFollower13 = "RoR2/DLC3/Items/MasterCore/DisplayPowerOrbSphereFollower.prefab"; public static string mdlPowerOrbSphere20 = "RoR2/DLC3/Items/MasterCore/mdlPowerOrbSphere.fbx"; public static string PickupMasterCore = "RoR2/DLC3/Items/MasterCore/PickupMasterCore.prefab"; public static string PickupPowerOrbSphere0 = "RoR2/DLC3/Items/MasterCore/PickupPowerOrbSphere.prefab"; public static string DebtPickupEffect = "RoR2/DLC3/Items/MoneyLoan/DebtPickupEffect.prefab"; public static string mdlPhysicsProjectile = "RoR2/DLC3/Items/PhysicsProjectile/mdlPhysicsProjectile.fbx"; public static string PhysicsProjectileDisplay = "RoR2/DLC3/Items/PhysicsProjectile/PhysicsProjectileDisplay.prefab"; public static string PickupPhysicsProjectile = "RoR2/DLC3/Items/PhysicsProjectile/PickupPhysicsProjectile.prefab"; public static string DisplayPowerCube = "RoR2/DLC3/Items/PowerCube/DisplayPowerCube.prefab"; public static string DisplayPowerCubeFollower = "RoR2/DLC3/Items/PowerCube/DisplayPowerCubeFollower.prefab"; public static string mdlPowerCoreBeacon = "RoR2/DLC3/Items/PowerCube/mdlPowerCoreBeacon.fbx"; public static string mdlPowerCube = "RoR2/DLC3/Items/PowerCube/mdlPowerCube.fbx"; public static string PickupPowerCube = "RoR2/DLC3/Items/PowerCube/PickupPowerCube.prefab"; public static string DisplayPowerPyramid = "RoR2/DLC3/Items/PowerPyramid/DisplayPowerPyramid.prefab"; public static string DisplayPowerPyramidFollower = "RoR2/DLC3/Items/PowerPyramid/DisplayPowerPyramidFollower.prefab"; public static string mdlPowerPyramid = "RoR2/DLC3/Items/PowerPyramid/mdlPowerPyramid.fbx"; public static string PickupPowerPyramid = "RoR2/DLC3/Items/PowerPyramid/PickupPowerPyramid.prefab"; public static string mdlSharedSuffering = "RoR2/DLC3/Items/SharedSuffering/mdlSharedSuffering.fbx"; public static string mdlSharedSuffering3 = "RoR2/DLC3/Items/SharedSuffering/mdlSharedSuffering.prefab"; public static string mdlSharedSufferingNew = "RoR2/DLC3/Items/SharedSuffering/mdlSharedSufferingNew.fbx"; public static string nail = "RoR2/DLC3/Items/SharedSuffering/nail.fbx"; public static string PickupSharedSuffering = "RoR2/DLC3/Items/SharedSuffering/PickupSharedSuffering.prefab"; public static string SharedSufferingConnectionTether = "RoR2/DLC3/Items/SharedSuffering/SharedSufferingConnectionTether.prefab"; public static string SharedSufferingDamageEffect = "RoR2/DLC3/Items/SharedSuffering/SharedSufferingDamageEffect.prefab"; public static string SharedSufferingDisplay = "RoR2/DLC3/Items/SharedSuffering/SharedSufferingDisplay.prefab"; public static string SharedSufferingPassiveEffect = "RoR2/DLC3/Items/SharedSuffering/SharedSufferingPassiveEffect.prefab"; public static string SharedSufferingTetherOrigin = "RoR2/DLC3/Items/SharedSuffering/SharedSufferingTetherOrigin.prefab"; public static string DisplayShieldBooster = "RoR2/DLC3/Items/ShieldBooster/DisplayShieldBooster.prefab"; public static string mdlShieldBooster = "RoR2/DLC3/Items/ShieldBooster/mdlShieldBooster.fbx"; public static string mdlShieldBooster4 = "RoR2/DLC3/Items/ShieldBooster/mdlShieldBooster.prefab"; public static string mdlShieldBooster2 = "RoR2/DLC3/Items/ShieldBooster/mdlShieldBooster2.fbx"; public static string PickupShieldBooster = "RoR2/DLC3/Items/ShieldBooster/PickupShieldBooster.prefab"; public static string ShieldBoosterRegenEffect = "RoR2/DLC3/Items/ShieldBooster/ShieldBoosterRegenEffect.prefab"; public static string ShieldEMPPulseEffect = "RoR2/DLC3/Items/ShieldBooster/ShieldEMPPulseEffect.prefab"; public static string ShieldEMPPulseEffectVoid = "RoR2/DLC3/Items/ShieldBooster/ShieldEMPPulseEffectVoid.prefab"; public static string mdlDroneShockDamage = "RoR2/DLC3/Items/ShockDamageAura/mdlDroneShockDamage.fbx"; public static string PickupShockDamageAura = "RoR2/DLC3/Items/ShockDamageAura/PickupShockDamageAura.prefab"; public static string ShockDamageAura5 = "RoR2/DLC3/Items/ShockDamageAura/ShockDamageAura.prefab"; public static string ShockDamageAuraDisplay = "RoR2/DLC3/Items/ShockDamageAura/ShockDamageAuraDisplay.prefab"; public static string ShockDamageAuraOrbEffect = "RoR2/DLC3/Items/ShockDamageAura/ShockDamageAuraOrbEffect.prefab"; public static string ShockDamageAuraPrefab = "RoR2/DLC3/Items/ShockDamageAura/ShockDamageAuraPrefab.prefab"; public static string ShockDamageAuraPulse = "RoR2/DLC3/Items/ShockDamageAura/ShockDamageAuraPulse.prefab"; public static string CollectorsCompulsionani = "RoR2/DLC3/Items/SpeedOnPickup/Collector's Compulsion_ani.fbx"; public static string mdlSpeedOnPickup = "RoR2/DLC3/Items/SpeedOnPickup/mdlSpeedOnPickup.fbx"; public static string PickupSpeedOnPickup = "RoR2/DLC3/Items/SpeedOnPickup/PickupSpeedOnPickup.prefab"; public static string SpeedOnPickupDisplay = "RoR2/DLC3/Items/SpeedOnPickup/SpeedOnPickupDisplay.prefab"; public static string SpeedOnPickupEffectTier1 = "RoR2/DLC3/Items/SpeedOnPickup/SpeedOnPickupEffectTier1.prefab"; public static string SpeedOnPickupEffectTier2 = "RoR2/DLC3/Items/SpeedOnPickup/SpeedOnPickupEffectTier2.prefab"; public static string SpeedOnPickupEffectTier3 = "RoR2/DLC3/Items/SpeedOnPickup/SpeedOnPickupEffectTier3.prefab"; public static string SpeedOnPickupSalvage = "RoR2/DLC3/Items/SpeedOnPickup/SpeedOnPickupSalvage.prefab"; public static string mdlStew = "RoR2/DLC3/Items/Stew/mdlStew.fbx"; public static string PickupStew = "RoR2/DLC3/Items/Stew/PickupStew.prefab"; public static string StewDisplay = "RoR2/DLC3/Items/Stew/StewDisplay.prefab"; public static string mdlTransferDebuffOnHit = "RoR2/DLC3/Items/TransferDebuffOnHit/mdlTransferDebuffOnHit.fbx"; public static string PickupTransferDebuffOnHit = "RoR2/DLC3/Items/TransferDebuffOnHit/PickupTransferDebuffOnHit.prefab"; public static string TransferDebuffOnHitExpire = "RoR2/DLC3/Items/TransferDebuffOnHit/TransferDebuffOnHitExpire.prefab"; public static string TransferDebuffOnHitIndicator = "RoR2/DLC3/Items/TransferDebuffOnHit/TransferDebuffOnHitIndicator.prefab"; public static string TransferDebuffOnHitProjectile = "RoR2/DLC3/Items/TransferDebuffOnHit/TransferDebuffOnHitProjectile.prefab"; public static string TransferDebuffOnHitProjectileGhost = "RoR2/DLC3/Items/TransferDebuffOnHit/TransferDebuffOnHitProjectileGhost.prefab"; public static string TransferDebuffPassiveEffect = "RoR2/DLC3/Items/TransferDebuffOnHit/TransferDebuffPassiveEffect.prefab"; public static string mdlUltimateMeal = "RoR2/DLC3/Items/UltimateMeal/mdlUltimateMeal.fbx"; public static string PickupUltimateMeal = "RoR2/DLC3/Items/UltimateMeal/PickupUltimateMeal.prefab"; public static string UltimateMealBoostEffect = "RoR2/DLC3/Items/UltimateMeal/UltimateMealBoostEffect.prefab"; public static string UltimateMealDisplay = "RoR2/DLC3/Items/UltimateMeal/UltimateMealDisplay.prefab"; public static string UltimateMealDisplayFollower = "RoR2/DLC3/Items/UltimateMeal/UltimateMealDisplayFollower.prefab"; public static string UltimateMealPrefab = "RoR2/DLC3/Items/UltimateMeal/UltimateMealPrefab.prefab"; public static string DisplayWyrmOnHit = "RoR2/DLC3/Items/WyrmOnHit/DisplayWyrmOnHit.prefab"; public static string mdlWyrmOnHitDisplay = "RoR2/DLC3/Items/WyrmOnHit/mdlWyrmOnHitDisplay.fbx"; public static string mdlWyrmOnHitPickup = "RoR2/DLC3/Items/WyrmOnHit/mdlWyrmOnHitPickup.fbx"; public static string PickupWyrmOnHit = "RoR2/DLC3/Items/WyrmOnHit/PickupWyrmOnHit.prefab"; public static string SauteedWormsaniidle = "RoR2/DLC3/Items/WyrmOnHit/SauteedWorms_ani_idle.fbx"; public static string SauteedWormsrig = "RoR2/DLC3/Items/WyrmOnHit/SauteedWorms_rig.fbx"; public static string WyrmOnHitPickup = "RoR2/DLC3/Items/WyrmOnHit/WyrmOnHitPickup.prefab"; public static string WyrmProjectile = "RoR2/DLC3/Items/WyrmOnHit/WyrmProjectile.prefab"; public static string WyrmProjectileBurrow = "RoR2/DLC3/Items/WyrmOnHit/WyrmProjectileBurrow.prefab"; public static string WyrmProjectileGhost = "RoR2/DLC3/Items/WyrmOnHit/WyrmProjectileGhost.prefab"; public static string WyrmSummonFX = "RoR2/DLC3/Items/WyrmOnHit/WyrmSummonFX.prefab"; public static string mdlCEAuroraA = "RoR2/DLC3/computationalexchange/mdlCEAuroraA.fbx"; public static string mdlCEAuroraB = "RoR2/DLC3/computationalexchange/mdlCEAuroraB.fbx"; public static string mdlCEAuroraC = "RoR2/DLC3/computationalexchange/mdlCEAuroraC.fbx"; public static string mdlCEAuroraD = "RoR2/DLC3/computationalexchange/mdlCEAuroraD.fbx"; public static string mdlCEAuroraE = "RoR2/DLC3/computationalexchange/mdlCEAuroraE.fbx"; public static string mdlCEBlockout = "RoR2/DLC3/computationalexchange/mdlCEBlockout.fbx"; public static string mdlCECableA = "RoR2/DLC3/computationalexchange/mdlCECableA.fbx"; public static string mdlCECableB = "RoR2/DLC3/computationalexchange/mdlCECableB.fbx"; public static string mdlCECableC = "RoR2/DLC3/computationalexchange/mdlCECableC.fbx"; public static string mdlCECubeA = "RoR2/DLC3/computationalexchange/mdlCECubeA.fbx"; public static string mdlCECubeACOL = "RoR2/DLC3/computationalexchange/mdlCECubeA_COL.fbx"; public static string mdlCECubeAGlow = "RoR2/DLC3/computationalexchange/mdlCECubeAGlow.fbx"; public static string mdlCECubeALines = "RoR2/DLC3/computationalexchange/mdlCECubeALines.fbx"; public static string mdlCECubeB = "RoR2/DLC3/computationalexchange/mdlCECubeB.fbx"; public static string mdlCECubeBCOL = "RoR2/DLC3/computationalexchange/mdlCECubeB_COL.fbx"; public static string mdlCECubeBLines = "RoR2/DLC3/computationalexchange/mdlCECubeBLines.fbx"; public static string mdlCECubeC = "RoR2/DLC3/computationalexchange/mdlCECubeC.fbx"; public static string mdlCECubeD = "RoR2/DLC3/computationalexchange/mdlCECubeD.fbx"; public static string mdlCECubeVendor = "RoR2/DLC3/computationalexchange/mdlCECubeVendor.fbx"; public static string mdlCEDebrisA = "RoR2/DLC3/computationalexchange/mdlCEDebrisA.fbx"; public static string mdlCEDebrisB = "RoR2/DLC3/computationalexchange/mdlCEDebrisB.fbx"; public static string mdlCEDebrisC = "RoR2/DLC3/computationalexchange/mdlCEDebrisC.fbx"; public static string mdlCEDioramaBase = "RoR2/DLC3/computationalexchange/mdlCEDioramaBase.fbx"; public static string mdlCEDistantPlatformA = "RoR2/DLC3/computationalexchange/mdlCEDistantPlatformA.fbx"; public static string mdlCEDistantPlatformB = "RoR2/DLC3/computationalexchange/mdlCEDistantPlatformB.fbx"; public static string mdlCEDistantPlatformC = "RoR2/DLC3/computationalexchange/mdlCEDistantPlatformC.fbx"; public static string mdlCEDistantPlatformD = "RoR2/DLC3/computationalexchange/mdlCEDistantPlatformD.fbx"; public static string mdlCEDistantPlatformE = "RoR2/DLC3/computationalexchange/mdlCEDistantPlatformE.fbx"; public static string mdlCEFlowerA = "RoR2/DLC3/computationalexchange/mdlCEFlowerA.fbx"; public static string mdlCEFlowerB = "RoR2/DLC3/computationalexchange/mdlCEFlowerB.fbx"; public static string mdlCEFlowerBedHoloA = "RoR2/DLC3/computationalexchange/mdlCEFlowerBedHoloA.fbx"; public static string mdlCEFlowerC = "RoR2/DLC3/computationalexchange/mdlCEFlowerC.fbx"; public static string mdlCEFlowerD = "RoR2/DLC3/computationalexchange/mdlCEFlowerD.fbx"; public static string mdlCEFlowerStemA = "RoR2/DLC3/computationalexchange/mdlCEFlowerStemA.fbx"; public static string mdlCEParticleCube = "RoR2/DLC3/computationalexchange/mdlCEParticleCube.fbx"; public static string mdlCEPillarSmallA = "RoR2/DLC3/computationalexchange/mdlCEPillarSmallA.fbx"; public static string mdlCEPlatformCubeCutA = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeCutA.fbx"; public static string mdlCEPlatformCubeLarge = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeLarge.fbx"; public static string mdlCEPlatformCubeLargeDetailA = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeLargeDetailA.fbx"; public static string mdlCEPlatformCubeLargeDetailB = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeLargeDetailB.fbx"; public static string mdlCEPlatformCubeLargeDetailC = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeLargeDetailC.fbx"; public static string mdlCEPlatformCubeLargeDetailD = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeLargeDetailD.fbx"; public static string mdlCEPlatformCubeSmall = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeSmall.fbx"; public static string mdlCEPlatformCubeSmallDetailA = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeSmallDetailA.fbx"; public static string mdlCEPlatformCubeSmallDetailB = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeSmallDetailB.fbx"; public static string mdlCEPlatformCubeSmallDetailC = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeSmallDetailC.fbx"; public static string mdlCEPlatformCubeSmallDetailD = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeSmallDetailD.fbx"; public static string mdlCEPlatformCubeSmallDetailE = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeSmallDetailE.fbx"; public static string mdlCEPlatformCubeSmallDetailF = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeSmallDetailF.fbx"; public static string mdlCEPlatformCubeSmallRimA = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeSmallRimA.fbx"; public static string mdlCEPlatformCubeSmallRimB = "RoR2/DLC3/computationalexchange/mdlCEPlatformCubeSmallRimB.fbx"; public static string mdlCEPlatformRampA = "RoR2/DLC3/computationalexchange/mdlCEPlatformRampA.fbx"; public static string mdlCEPlatformSpawn = "RoR2/DLC3/computationalexchange/mdlCEPlatformSpawn.fbx"; public static string mdlCEVoxelObjectA = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectA.fbx"; public static string mdlCEVoxelObjectB = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectB.fbx"; public static string mdlCEVoxelObjectC = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectC.fbx"; public static string mdlCEVoxelObjectD = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectD.fbx"; public static string mdlCEVoxelObjectDGLOW = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectDGLOW.fbx"; public static string mdlCEVoxelObjectE = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectE.fbx"; public static string mdlCEVoxelObjectEGLOW = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectEGLOW.fbx"; public static string mdlCEVoxelObjectF = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectF.fbx"; public static string mdlCEVoxelObjectFGLOW = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectFGLOW.fbx"; public static string mdlCEVoxelObjectG = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectG.fbx"; public static string mdlCEVoxelObjectGGLOW = "RoR2/DLC3/computationalexchange/mdlCEVoxelObjectGGLOW.fbx"; public static string mdlCEVoxelPuddleA = "RoR2/DLC3/computationalexchange/mdlCEVoxelPuddleA.fbx"; public static string mdlCEVoxelRiverA = "RoR2/DLC3/computationalexchange/mdlCEVoxelRiverA.fbx"; public static string mdlCEVoxelRiverB = "RoR2/DLC3/computationalexchange/mdlCEVoxelRiverB.fbx"; public static string mdlCEVoxelRiverC = "RoR2/DLC3/computationalexchange/mdlCEVoxelRiverC.fbx"; public static string mdlCEVoxelRiverD = "RoR2/DLC3/computationalexchange/mdlCEVoxelRiverD.fbx"; public static string mdlCEVoxelRiverE = "RoR2/DLC3/computationalexchange/mdlCEVoxelRiverE.fbx"; public static string mdlCubeBottom = "RoR2/DLC3/computationalexchange/mdlCubeBottom.fbx"; public static string mdlMealPrepTable = "RoR2/DLC3/computationalexchange/mdlMealPrepTable.fbx"; public static string mdlSlightTrapezoid = "RoR2/DLC3/computationalexchange/mdlSlightTrapezoid.fbx"; public static string mdlCEAuroraMerged = "RoR2/DLC3/computationalexchange/mdlCEAurora_Merged.fbx"; public static string mdlCEFlowerBaseMerged = "RoR2/DLC3/computationalexchange/mdlCEFlowerBase_Merged.fbx"; public static string mdlCELightShaftMerged = "RoR2/DLC3/computationalexchange/mdlCELightShaft_Merged.fbx"; public static string mdlCERiverMerged = "RoR2/DLC3/computationalexchange/mdlCERiver_Merged.fbx"; public static string mdlCEVoxelBackArea = "RoR2/DLC3/computationalexchange/mdlCEVoxel_BackArea.fbx"; public static string mdlCEVoxelBGBack = "RoR2/DLC3/computationalexchange/mdlCEVoxel_BG_Back.fbx"; public static string mdlCEVoxelBGBelow = "RoR2/DLC3/computationalexchange/mdlCEVoxel_BG_Below.fbx"; public static string mdlCEVoxelBGFront = "RoR2/DLC3/computationalexchange/mdlCEVoxel_BG_Front.fbx"; public static string mdlCEVoxelCenterArea = "RoR2/DLC3/computationalexchange/mdlCEVoxel_CenterArea.fbx"; public static string mdlCEVoxelEntranceArea = "RoR2/DLC3/computationalexchange/mdlCEVoxel_EntranceArea.fbx"; public static string mdlCEVoxelSecretArea = "RoR2/DLC3/computationalexchange/mdlCEVoxel_SecretArea.fbx"; public static string CEAurora = "RoR2/DLC3/computationalexchange/CEAurora.prefab"; public static string CEAuroraMerged = "RoR2/DLC3/computationalexchange/CEAurora_Merged.prefab"; public static string CEAuroraA = "RoR2/DLC3/computationalexchange/CEAuroraA.prefab"; public static string CEAuroraB = "RoR2/DLC3/computationalexchange/CEAuroraB.prefab"; public static string CEAuroraC = "RoR2/DLC3/computationalexchange/CEAuroraC.prefab"; public static string CEAuroraD = "RoR2/DLC3/computationalexchange/CEAuroraD.prefab"; public static string CEAuroraE = "RoR2/DLC3/computationalexchange/CEAuroraE.prefab"; public static string CECableA = "RoR2/DLC3/computationalexchange/CECableA.prefab"; public static string CECableC = "RoR2/DLC3/computationalexchange/CECableC.prefab"; public static string CECollider = "RoR2/DLC3/computationalexchange/CECollider.prefab"; public static string CECubeA = "RoR2/DLC3/computationalexchange/CECubeA.prefab"; public static string CECubeAFloater = "RoR2/DLC3/computationalexchange/CECubeAFloater.prefab"; public static string CECubeAGlow = "RoR2/DLC3/computationalexchange/CECubeAGlow.prefab"; public static string CECubeB = "RoR2/DLC3/computationalexchange/CECubeB.prefab"; public static string CECubeBSolusWebVariant = "RoR2/DLC3/computationalexchange/CECubeB_SolusWebVariant.prefab"; public static string CECubeVendor = "RoR2/DLC3/computationalexchange/CECubeVendor.prefab"; public static string CEDistantPlatformA = "RoR2/DLC3/computationalexchange/CEDistantPlatformA.prefab"; public static string CEDistantPlatformB = "RoR2/DLC3/computationalexchange/CEDistantPlatformB.prefab"; public static string CEDistantPlatformC = "RoR2/DLC3/computationalexchange/CEDistantPlatformC.prefab"; public static string CEDistantPlatformD = "RoR2/DLC3/computationalexchange/CEDistantPlatformD.prefab"; public static string CEDistantPlatformE = "RoR2/DLC3/computationalexchange/CEDistantPlatformE.prefab"; public static string CEFlowerA = "RoR2/DLC3/computationalexchange/CEFlowerA.prefab"; public static string CEFlowerAopt = "RoR2/DLC3/computationalexchange/CEFlowerA_opt.prefab"; public static string CEFlowerB = "RoR2/DLC3/computationalexchange/CEFlowerB.prefab"; public static string CEFlowerBopt = "RoR2/DLC3/computationalexchange/CEFlowerB_opt.prefab"; public static string CEFlowerBaseCubeMerged = "RoR2/DLC3/computationalexchange/CEFlowerBaseCube_Merged.prefab"; public static string CEFlowerBaseCubeMergedopt = "RoR2/DLC3/computationalexchange/CEFlowerBaseCube_Merged_opt.prefab"; public static string CEFlowerD = "RoR2/DLC3/computationalexchange/CEFlowerD.prefab"; public static string CEFlowerDopt = "RoR2/DLC3/computationalexchange/CEFlowerD_opt.prefab"; public static string CEFlowerStemA = "RoR2/DLC3/computationalexchange/CEFlowerStemA.prefab"; public static string CEFlowerStemAopt = "RoR2/DLC3/computationalexchange/CEFlowerStemA_opt.prefab"; public static string CEGlowBedA = "RoR2/DLC3/computationalexchange/CEGlowBedA.prefab"; public static string CELightShaftMerged = "RoR2/DLC3/computationalexchange/CELightShaft_Merged.prefab"; public static string CELightShaftMergedopt = "RoR2/DLC3/computationalexchange/CELightShaft_Merged_opt.prefab"; public static string CEParticleCube = "RoR2/DLC3/computationalexchange/CEParticleCube.prefab"; public static string CEPillarSmallA = "RoR2/DLC3/computationalexchange/CEPillarSmallA.prefab"; public static string CEPlatformCubeCutA = "RoR2/DLC3/computationalexchange/CEPlatformCubeCutA.prefab"; public static string CEPlatformCubeLarge = "RoR2/DLC3/computationalexchange/CEPlatformCubeLarge.prefab"; public static string CEPlatformCubeLargeDetailA = "RoR2/DLC3/computationalexchange/CEPlatformCubeLargeDetailA.prefab"; public static string CEPlatformCubeLargeDetailB = "RoR2/DLC3/computationalexchange/CEPlatformCubeLargeDetailB.prefab"; public static string CEPlatformCubeLargeDetailC = "RoR2/DLC3/computationalexchange/CEPlatformCubeLargeDetailC.prefab"; public static string CEPlatformCubeLargeDetailD = "RoR2/DLC3/computationalexchange/CEPlatformCubeLargeDetailD.prefab"; public static string CEPlatformCubeSmall = "RoR2/DLC3/computationalexchange/CEPlatformCubeSmall.prefab"; public static string CEPlatformCubeSmallDetailA = "RoR2/DLC3/computationalexchange/CEPlatformCubeSmallDetailA.prefab"; public static string CEPlatformCubeSmallDetailB = "RoR2/DLC3/computationalexchange/CEPlatformCubeSmallDetailB.prefab"; public static string CEPlatformCubeSmallDetailC = "RoR2/DLC3/computationalexchange/CEPlatformCubeSmallDetailC.prefab"; public static string CEPlatformCubeSmallDetailD = "RoR2/DLC3/computationalexchange/CEPlatformCubeSmallDetailD.prefab"; public static string CEPlatformCubeSmallDetailE = "RoR2/DLC3/computationalexchange/CEPlatformCubeSmallDetailE.prefab"; public static string CEPlatformCubeSmallDetailF = "RoR2/DLC3/computationalexchange/CEPlatformCubeSmallDetailF.prefab"; public static string CEPlatformCubeSmallRimA = "RoR2/DLC3/computationalexchange/CEPlatformCubeSmallRimA.prefab"; public static string CEPlatformCubeSmallRimB = "RoR2/DLC3/computationalexchange/CEPlatformCubeSmallRimB.prefab"; public static string CEPlatformSpawn = "RoR2/DLC3/computationalexchange/CEPlatformSpawn.prefab"; public static string CERiverMerged = "RoR2/DLC3/computationalexchange/CERiver_Merged.prefab"; public static string CERiverMergedopt = "RoR2/DLC3/computationalexchange/CERiver_Merged_opt.prefab"; public static string CETreasurePile = "RoR2/DLC3/computationalexchange/CETreasurePile.prefab"; public static string CEVoxelBackArea = "RoR2/DLC3/computationalexchange/CEVoxel_BackArea.prefab"; public static string CEVoxelBackAreaopt = "RoR2/DLC3/computationalexchange/CEVoxel_BackArea_opt.prefab"; public static string CEVoxelBGBack = "RoR2/DLC3/computationalexchange/CEVoxel_BG_Back.prefab"; public static string CEVoxelBGBackopt = "RoR2/DLC3/computationalexchange/CEVoxel_BG_Back_opt.prefab"; public static string CEVoxelBGBelow = "RoR2/DLC3/computationalexchange/CEVoxel_BG_Below.prefab"; public static string CEVoxelBGBelowopt = "RoR2/DLC3/computationalexchange/CEVoxel_BG_Below_opt.prefab"; public static string CEVoxelBGFront = "RoR2/DLC3/computationalexchange/CEVoxel_BG_Front.prefab"; public static string CEVoxelBGFrontopt = "RoR2/DLC3/computationalexchange/CEVoxel_BG_Front_opt.prefab"; public static string CEVoxelCenterArea = "RoR2/DLC3/computationalexchange/CEVoxel_CenterArea.prefab"; public static string CEVoxelCenterAreaopt = "RoR2/DLC3/computationalexchange/CEVoxel_CenterArea_opt.prefab"; public static string CEVoxelEntranceArea = "RoR2/DLC3/computationalexchange/CEVoxel_EntranceArea.prefab"; public static string CEVoxelEntranceAreaopt = "RoR2/DLC3/computationalexchange/CEVoxel_EntranceArea_opt.prefab"; public static string CEVoxelSecretArea = "RoR2/DLC3/computationalexchange/CEVoxel_SecretArea.prefab"; public static string CEVoxelSecretAreaopt = "RoR2/DLC3/computationalexchange/CEVoxel_SecretArea_opt.prefab"; public static string CEVoxelObjectA = "RoR2/DLC3/computationalexchange/CEVoxelObjectA.prefab"; public static string CEVoxelObjectB = "RoR2/DLC3/computationalexchange/CEVoxelObjectB.prefab"; public static string CEVoxelObjectC = "RoR2/DLC3/computationalexchange/CEVoxelObjectC.prefab"; public static string CEVoxelObjectD = "RoR2/DLC3/computationalexchange/CEVoxelObjectD.prefab"; public static string CEVoxelObjectE = "RoR2/DLC3/computationalexchange/CEVoxelObjectE.prefab"; public static string CEVoxelObjectF = "RoR2/DLC3/computationalexchange/CEVoxelObjectF.prefab"; public static string CEVoxelObjectG = "RoR2/DLC3/computationalexchange/CEVoxelObjectG.prefab"; public static string CEVoxelRamp = "RoR2/DLC3/computationalexchange/CEVoxelRamp.prefab"; public static string CEVoxelRiverA = "RoR2/DLC3/computationalexchange/CEVoxelRiverA.prefab"; public static string CEVoxelRiverB = "RoR2/DLC3/computationalexchange/CEVoxelRiverB.prefab"; public static string CEVoxelRiverC = "RoR2/DLC3/computationalexchange/CEVoxelRiverC.prefab"; public static string CEVoxelRiverD = "RoR2/DLC3/computationalexchange/CEVoxelRiverD.prefab"; public static string CEVoxelRiverE = "RoR2/DLC3/computationalexchange/CEVoxelRiverE.prefab"; public static string Cyberification = "RoR2/DLC3/computationalexchange/Cyberification.prefab"; public static string DrifterCaptured6 = "RoR2/DLC3/computationalexchange/DrifterCaptured.prefab"; public static string DrifterShieldTank = "RoR2/DLC3/computationalexchange/DrifterShieldTank.prefab"; public static string HOLDERZiprails = "RoR2/DLC3/computationalexchange/HOLDER_ Ziprails.prefab"; public static string LockedDrifter = "RoR2/DLC3/computationalexchange/LockedDrifter.prefab"; public static string MainCamera19 = "RoR2/DLC3/computationalexchange/Main Camera.prefab"; public static string WeatherHabitatCE = "RoR2/DLC3/computationalexchange/Weather, Habitat CE.prefab"; public static string ComputationalExchangeController = "RoR2/DLC3/computationalexchange/ComputationalExchangeController.prefab"; public static string ComputationalExchangeDioramaDisplay = "RoR2/DLC3/computationalexchange/ComputationalExchangeDioramaDisplay.prefab"; public static string WeatherComputationalExchange = "RoR2/DLC3/computationalexchange/Weather, Computational Exchange.prefab"; public static string mdlCCBoulderA = "RoR2/DLC3/conduitcanyon/mdlCCBoulderA.fbx"; public static string mdlCCBuilding1Far = "RoR2/DLC3/conduitcanyon/mdlCCBuilding1_Far.fbx"; public static string mdlCCBuildingBlock7Far = "RoR2/DLC3/conduitcanyon/mdlCCBuildingBlock7_Far.fbx"; public static string mdlCCConduit09 = "RoR2/DLC3/conduitcanyon/mdlCCConduit_09.fbx"; public static string mdlCCConduitEnd1 = "RoR2/DLC3/conduitcanyon/mdlCCConduitEnd1.fbx"; public static string mdlCCFogOcean = "RoR2/DLC3/conduitcanyon/mdlCCFogOcean.fbx"; public static string mdlCCFoliageFlowerA = "RoR2/DLC3/conduitcanyon/mdlCCFoliageFlowerA.fbx"; public static string mdlCCFoliageFlowerB = "RoR2/DLC3/conduitcanyon/mdlCCFoliageFlowerB.fbx"; public static string mdlCCFoliageFlowerC = "RoR2/DLC3/conduitcanyon/mdlCCFoliageFlowerC.fbx"; public static string mdlCCFoliageFlowerD = "RoR2/DLC3/conduitcanyon/mdlCCFoliageFlowerD.fbx"; public static string mdlCCFoliageGlowingFungusA = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGlowingFungusA.fbx"; public static string mdlCCFoliageGlowingFungusB = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGlowingFungusB.fbx"; public static string mdlCCFoliageGlowingFungusC = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGlowingFungusC.fbx"; public static string mdlCCFoliageGrassA = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGrassA.fbx"; public static string mdlCCFoliageGrassB = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGrassB.fbx"; public static string mdlCCFoliageGrassC = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGrassC.fbx"; public static string mdlCCFoliageGrassGlowA = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGrassGlowA.fbx"; public static string mdlCCFoliageGrassGlowB = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGrassGlowB.fbx"; public static string mdlCCFoliageGrassGlowC = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGrassGlowC.fbx"; public static string mdlCCFoliageGrassOrangeB = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGrassOrangeB.fbx"; public static string mdlCCFoliageGrassOrangeBCluster = "RoR2/DLC3/conduitcanyon/mdlCCFoliageGrassOrangeBCluster.fbx"; public static string mdlCCFoliageLeafSmallA = "RoR2/DLC3/conduitcanyon/mdlCCFoliageLeafSmallA.fbx"; public static string mdlCCFoliageRootD = "RoR2/DLC3/conduitcanyon/mdlCCFoliageRootD.fbx"; public static string mdlCCFoliageRootE = "RoR2/DLC3/conduitcanyon/mdlCCFoliageRootE.fbx"; public static string mdlCCImpostorLeafs = "RoR2/DLC3/conduitcanyon/mdlCCImpostorLeafs.fbx"; public static string mdlCCImpostorTreeA = "RoR2/DLC3/conduitcanyon/mdlCCImpostorTreeA.fbx"; public static string mdlCCImpostorTreeB = "RoR2/DLC3/conduitcanyon/mdlCCImpostorTreeB.fbx"; public static string mdlCCImpostorTreeBottomA = "RoR2/DLC3/conduitcanyon/mdlCCImpostorTreeBottomA.fbx"; public static string mdlCCImpostorTreeC = "RoR2/DLC3/conduitcanyon/mdlCCImpostorTreeC.fbx"; public static string mdlCCLink10 = "RoR2/DLC3/conduitcanyon/mdlCCLink_10.fbx"; public static string mdlCCOuterCanyonA = "RoR2/DLC3/conduitcanyon/mdlCCOuterCanyonA.fbx"; public static string mdlCCTerrainA = "RoR2/DLC3/conduitcanyon/mdlCCTerrainA.fbx"; public static string mdlCCWaterA = "RoR2/DLC3/conduitcanyon/mdlCCWaterA.fbx"; public static string mdlCCWaterB = "RoR2/DLC3/conduitcanyon/mdlCCWaterB.fbx"; public static string mdlCCWaterfallA = "RoR2/DLC3/conduitcanyon/mdlCCWaterfallA.fbx"; public static string mdlCCWaterfallB = "RoR2/DLC3/conduitcanyon/mdlCCWaterfallB.fbx"; public static string mdlCCWaterfallC = "RoR2/DLC3/conduitcanyon/mdlCCWaterfallC.fbx"; public static string mdlCCConduitOOBEnergyLink = "RoR2/DLC3/conduitcanyon/mdlCCConduitOOB_EnergyLink.fbx"; public static string mdlCCConduitOOBMetal = "RoR2/DLC3/conduitcanyon/mdlCCConduitOOB_Metal.fbx"; public static string mdlCCConduitPhase01EnergyLink = "RoR2/DLC3/conduitcanyon/mdlCCConduitPhase01_EnergyLink.fbx"; public static string mdlCCConduitPhase01Metal = "RoR2/DLC3/conduitcanyon/mdlCCConduitPhase01_Metal.fbx"; public static string mdlCCConduitPhase02EnergyLink = "RoR2/DLC3/conduitcanyon/mdlCCConduitPhase02_EnergyLink.fbx"; public static string mdlCCConduitPhase02Metal = "RoR2/DLC3/conduitcanyon/mdlCCConduitPhase02_Metal.fbx"; public static string mdlCCDioramaMerged = "RoR2/DLC3/conduitcanyon/mdlCCDiorama_Merged.fbx"; public static string mdlCCFoliageTreeAMerged = "RoR2/DLC3/conduitcanyon/mdlCCFoliageTreeA_Merged.fbx"; public static string mdlCCFoliageTreeBMerged = "RoR2/DLC3/conduitcanyon/mdlCCFoliageTreeB_Merged.fbx"; public static string mdlCCGiantRockSlabMerged = "RoR2/DLC3/conduitcanyon/mdlCCGiantRockSlab_Merged.fbx"; public static string CCCrate = "RoR2/DLC3/conduitcanyon/CC_Crate.prefab"; public static string CCCrate2 = "RoR2/DLC3/conduitcanyon/CC_Crate2.prefab"; public static string CCBuilding1 = "RoR2/DLC3/conduitcanyon/CCBuilding1.prefab"; public static string CCBuilding1Far = "RoR2/DLC3/conduitcanyon/CCBuilding1_Far.prefab"; public static string CCBuilding1Faropt = "RoR2/DLC3/conduitcanyon/CCBuilding1_Far_opt.prefab"; public static string CCBuilding1opt = "RoR2/DLC3/conduitcanyon/CCBuilding1_opt.prefab"; public static string CCBuilding1B = "RoR2/DLC3/conduitcanyon/CCBuilding1B.prefab"; public static string CCBuilding1Bopt = "RoR2/DLC3/conduitcanyon/CCBuilding1B_opt.prefab"; public static string CCBuilding2 = "RoR2/DLC3/conduitcanyon/CCBuilding2.prefab"; public static string CCBuilding2opt = "RoR2/DLC3/conduitcanyon/CCBuilding2_opt.prefab"; public static string CCBuildingBlock6 = "RoR2/DLC3/conduitcanyon/CCBuildingBlock6.prefab"; public static string CCBuildingBlock6opt = "RoR2/DLC3/conduitcanyon/CCBuildingBlock6_opt.prefab"; public static string CCBuildingBlock7 = "RoR2/DLC3/conduitcanyon/CCBuildingBlock7.prefab"; public static string CCBuildingBlock7Far = "RoR2/DLC3/conduitcanyon/CCBuildingBlock7_Far.prefab"; public static string CCBuildingBlock7Faropt = "RoR2/DLC3/conduitcanyon/CCBuildingBlock7_Far_opt.prefab"; public static string CCBuildingBlock7opt = "RoR2/DLC3/conduitcanyon/CCBuildingBlock7_opt.prefab"; public static string CCBuildingBlock8 = "RoR2/DLC3/conduitcanyon/CCBuildingBlock8.prefab"; public static string CCBuildingBlock8opt = "RoR2/DLC3/conduitcanyon/CCBuildingBlock8_opt.prefab"; public static string CCCableWalkway01 = "RoR2/DLC3/conduitcanyon/CCCableWalkway_01.prefab"; public static string CCCableWalkway01opt = "RoR2/DLC3/conduitcanyon/CCCableWalkway_01_opt.prefab"; public static string CCCableWalkway02 = "RoR2/DLC3/conduitcanyon/CCCableWalkway_02.prefab"; public static string CCCableWalkway02opt = "RoR2/DLC3/conduitcanyon/CCCableWalkway_02_opt.prefab"; public static string CCCableWalkway04 = "RoR2/DLC3/conduitcanyon/CCCableWalkway_04.prefab"; public static string CCCableWalkway04opt = "RoR2/DLC3/conduitcanyon/CCCableWalkway_04_opt.prefab"; public static string CCCableWalkway05 = "RoR2/DLC3/conduitcanyon/CCCableWalkway_05.prefab"; public static string CCCableWalkway05opt = "RoR2/DLC3/conduitcanyon/CCCableWalkway_05_opt.prefab"; public static string CCCableWalkway06 = "RoR2/DLC3/conduitcanyon/CCCableWalkway_06.prefab"; public static string CCCableWalkway06opt = "RoR2/DLC3/conduitcanyon/CCCableWalkway_06_opt.prefab"; public static string CCCableWalkway07 = "RoR2/DLC3/conduitcanyon/CCCableWalkway_07.prefab"; public static string CCCableWalkway07opt = "RoR2/DLC3/conduitcanyon/CCCableWalkway_07_opt.prefab"; public static string CCCableWalkway08 = "RoR2/DLC3/conduitcanyon/CCCableWalkway_08.prefab"; public static string CCCableWalkway08opt = "RoR2/DLC3/conduitcanyon/CCCableWalkway_08_opt.prefab"; public static string CCCableWalkway09 = "RoR2/DLC3/conduitcanyon/CCCableWalkway_09.prefab"; public static string CCCableWalkway09opt = "RoR2/DLC3/conduitcanyon/CCCableWalkway_09_opt.prefab"; public static string CCCableWalkway10 = "RoR2/DLC3/conduitcanyon/CCCableWalkway_10.prefab"; public static string CCCableWalkway10opt = "RoR2/DLC3/conduitcanyon/CCCableWalkway_10_opt.prefab"; public static string CCConduit01 = "RoR2/DLC3/conduitcanyon/CCConduit_01.prefab"; public static string CCConduit01opt = "RoR2/DLC3/conduitcanyon/CCConduit_01_opt.prefab"; public static string CCConduit02 = "RoR2/DLC3/conduitcanyon/CCConduit_02.prefab"; public static string CCConduit02opt = "RoR2/DLC3/conduitcanyon/CCConduit_02_opt.prefab"; public static string CCConduit03 = "RoR2/DLC3/conduitcanyon/CCConduit_03.prefab"; public static string CCConduit03opt = "RoR2/DLC3/conduitcanyon/CCConduit_03_opt.prefab"; public static string CCConduit04 = "RoR2/DLC3/conduitcanyon/CCConduit_04.prefab"; public static string CCConduit04opt = "RoR2/DLC3/conduitcanyon/CCConduit_04_opt.prefab"; public static string CCConduit05 = "RoR2/DLC3/conduitcanyon/CCConduit_05.prefab"; public static string CCConduit05opt = "RoR2/DLC3/conduitcanyon/CCConduit_05_opt.prefab"; public static string CCConduit06 = "RoR2/DLC3/conduitcanyon/CCConduit_06.prefab"; public static string CCConduit06opt = "RoR2/DLC3/conduitcanyon/CCConduit_06_opt.prefab"; public static string CCConduit07 = "RoR2/DLC3/conduitcanyon/CCConduit_07.prefab"; public static string CCConduit07opt = "RoR2/DLC3/conduitcanyon/CCConduit_07_opt.prefab"; public static string CCConduit08 = "RoR2/DLC3/conduitcanyon/CCConduit_08.prefab"; public static string CCConduit08opt = "RoR2/DLC3/conduitcanyon/CCConduit_08_opt.prefab"; public static string CCConduit09 = "RoR2/DLC3/conduitcanyon/CCConduit_09.prefab"; public static string CCConduit09opt = "RoR2/DLC3/conduitcanyon/CCConduit_09_opt.prefab"; public static string CCConduitAngledWingRamp = "RoR2/DLC3/conduitcanyon/CCConduit_AngledWingRamp.prefab"; public static string CCConduitAngledWingRampopt = "RoR2/DLC3/conduitcanyon/CCConduit_AngledWingRamp_opt.prefab"; public static string CCConduitAntenna1Variant = "RoR2/DLC3/conduitcanyon/CCConduit_Antenna1 Variant.prefab"; public static string CCConduitAntenna1Variantopt = "RoR2/DLC3/conduitcanyon/CCConduit_Antenna1 Variant_opt.prefab"; public static string CCConduitAntenna1 = "RoR2/DLC3/conduitcanyon/CCConduit_Antenna1.prefab"; public static string CCConduitAntenna1opt = "RoR2/DLC3/conduitcanyon/CCConduit_Antenna1_opt.prefab"; public static string CCConduitChimney = "RoR2/DLC3/conduitcanyon/CCConduit_Chimney.prefab"; public static string CCConduitChimneyopt = "RoR2/DLC3/conduitcanyon/CCConduit_Chimney_opt.prefab"; public static string CCConduitColumn = "RoR2/DLC3/conduitcanyon/CCConduit_Column.prefab"; public static string CCConduitColumnopt = "RoR2/DLC3/conduitcanyon/CCConduit_Column_opt.prefab"; public static string CCConduitColumnBig = "RoR2/DLC3/conduitcanyon/CCConduit_ColumnBig.prefab"; public static string CCConduitColumnBigopt = "RoR2/DLC3/conduitcanyon/CCConduit_ColumnBig_opt.prefab"; public static string CCConduitColumnSide = "RoR2/DLC3/conduitcanyon/CCConduit_ColumnSide.prefab"; public static string CCConduitColumnSideopt = "RoR2/DLC3/conduitcanyon/CCConduit_ColumnSide_opt.prefab"; public static string CCConduitHingePiston1 = "RoR2/DLC3/conduitcanyon/CCConduit_HingePiston1.prefab"; public static string CCConduitHingePiston1opt = "RoR2/DLC3/conduitcanyon/CCConduit_HingePiston1_opt.prefab"; public static string CCConduitHolder2Variant1 = "RoR2/DLC3/conduitcanyon/CCConduit_Holder2 Variant 1.prefab"; public static string CCConduitHolder2Variant1opt = "RoR2/DLC3/conduitcanyon/CCConduit_Holder2 Variant 1_opt.prefab"; public static string CCConduitHolder2Variant2 = "RoR2/DLC3/conduitcanyon/CCConduit_Holder2 Variant 2.prefab"; public static string CCConduitHolder2Variant2opt = "RoR2/DLC3/conduitcanyon/CCConduit_Holder2 Variant 2_opt.prefab"; public static string CCConduitHolder2 = "RoR2/DLC3/conduitcanyon/CCConduit_Holder2.prefab"; public static string CCConduitHolder2opt = "RoR2/DLC3/conduitcanyon/CCConduit_Holder2_opt.prefab"; public static string CCConduitHolder3 = "RoR2/DLC3/conduitcanyon/CCConduit_Holder3.prefab"; public static string CCConduitHolder3opt = "RoR2/DLC3/conduitcanyon/CCConduit_Holder3_opt.prefab"; public static string CCConduitHolder4 = "RoR2/DLC3/conduitcanyon/CCConduit_Holder4.prefab"; public static string CCConduitHolder4opt = "RoR2/DLC3/conduitcanyon/CCConduit_Holder4_opt.prefab"; public static string CCConduitHolder5 = "RoR2/DLC3/conduitcanyon/CCConduit_Holder5.prefab"; public static string CCConduitHolder5opt = "RoR2/DLC3/conduitcanyon/CCConduit_Holder5_opt.prefab"; public static string CCConduitHolder6 = "RoR2/DLC3/conduitcanyon/CCConduit_Holder6.prefab"; public static string CCConduitHolder6opt = "RoR2/DLC3/conduitcanyon/CCConduit_Holder6_opt.prefab"; public static string CCConduitHolder7 = "RoR2/DLC3/conduitcanyon/CCConduit_Holder7.prefab"; public static string CCConduitHolder7opt = "RoR2/DLC3/conduitcanyon/CCConduit_Holder7_opt.prefab"; public static string CCConduitHolder8 = "RoR2/DLC3/conduitcanyon/CCConduit_Holder8.prefab"; public static string CCConduitHolder8opt = "RoR2/DLC3/conduitcanyon/CCConduit_Holder8_opt.prefab"; public static string CCConduitHolderLong = "RoR2/DLC3/conduitcanyon/CCConduit_HolderLong.prefab"; public static string CCConduitHolderLongopt = "RoR2/DLC3/conduitcanyon/CCConduit_HolderLong_opt.prefab"; public static string CCConduitHorizontalPipe1 = "RoR2/DLC3/conduitcanyon/CCConduit_HorizontalPipe1.prefab"; public static string CCConduitHorizontalPipe1opt = "RoR2/DLC3/conduitcanyon/CCConduit_HorizontalPipe1_opt.prefab"; public static string CCConduitPlatform1 = "RoR2/DLC3/conduitcanyon/CCConduit_Platform1.prefab"; public static string CCConduitPlatform1opt = "RoR2/DLC3/conduitcanyon/CCConduit_Platform1_opt.prefab"; public static string CCConduitPlatform2 = "RoR2/DLC3/conduitcanyon/CCConduit_Platform2.prefab"; public static string CCConduitPlatform2opt = "RoR2/DLC3/conduitcanyon/CCConduit_Platform2_opt.prefab"; public static string CCConduitPlatform3 = "RoR2/DLC3/conduitcanyon/CCConduit_Platform3.prefab"; public static string CCConduitPlatform3Mirror = "RoR2/DLC3/conduitcanyon/CCConduit_Platform3_Mirror.prefab"; public static string CCConduitPlatform3Mirroropt = "RoR2/DLC3/conduitcanyon/CCConduit_Platform3_Mirror_opt.prefab"; public static string CCConduitPlatform3opt = "RoR2/DLC3/conduitcanyon/CCConduit_Platform3_opt.prefab"; public static string CCConduitRampBridge1 = "RoR2/DLC3/conduitcanyon/CCConduit_RampBridge1.prefab"; public static string CCConduitRampBridge1opt = "RoR2/DLC3/conduitcanyon/CCConduit_RampBridge1_opt.prefab"; public static string CCConduitRampBridge2 = "RoR2/DLC3/conduitcanyon/CCConduit_RampBridge2.prefab"; public static string CCConduitRampBridge2opt = "RoR2/DLC3/conduitcanyon/CCConduit_RampBridge2_opt.prefab"; public static string CCConduitTop0 = "RoR2/DLC3/conduitcanyon/CCConduit_Top0.prefab"; public static string CCConduitTop0opt = "RoR2/DLC3/conduitcanyon/CCConduit_Top0_opt.prefab"; public static string CCConduitTop1Variant = "RoR2/DLC3/conduitcanyon/CCConduit_Top1 Variant.prefab"; public static string CCConduitTop1Variantopt = "RoR2/DLC3/conduitcanyon/CCConduit_Top1 Variant_opt.prefab"; public static string CCConduitTop1 = "RoR2/DLC3/conduitcanyon/CCConduit_Top1.prefab"; public static string CCConduitTop1opt = "RoR2/DLC3/conduitcanyon/CCConduit_Top1_opt.prefab"; public static string CCConduitTop2 = "RoR2/DLC3/conduitcanyon/CCConduit_Top2.prefab"; public static string CCConduitTop2opt = "RoR2/DLC3/conduitcanyon/CCConduit_Top2_opt.prefab"; public static string CCConduitTop2B = "RoR2/DLC3/conduitcanyon/CCConduit_Top2B.prefab"; public static string CCConduitTop2Bopt = "RoR2/DLC3/conduitcanyon/CCConduit_Top2B_opt.prefab"; public static string CCConduitTop2C = "RoR2/DLC3/conduitcanyon/CCConduit_Top2C.prefab"; public static string CCConduitTop2Copt = "RoR2/DLC3/conduitcanyon/CCConduit_Top2C_opt.prefab"; public static string CCConduitTop3 = "RoR2/DLC3/conduitcanyon/CCConduit_Top3.prefab"; public static string CCConduitTop3opt = "RoR2/DLC3/conduitcanyon/CCConduit_Top3_opt.prefab"; public static string CCConduitTop4 = "RoR2/DLC3/conduitcanyon/CCConduit_Top4.prefab"; public static string CCConduitTop4opt = "RoR2/DLC3/conduitcanyon/CCConduit_Top4_opt.prefab"; public static string CCConduitTop4B = "RoR2/DLC3/conduitcanyon/CCConduit_Top4B.prefab"; public static string CCConduitTop4Bopt = "RoR2/DLC3/conduitcanyon/CCConduit_Top4B_opt.prefab"; public static string CCConduitTop8 = "RoR2/DLC3/conduitcanyon/CCConduit_Top8.prefab"; public static string CCConduitTop8opt = "RoR2/DLC3/conduitcanyon/CCConduit_Top8_opt.prefab"; public static string CCConduitTop9 = "RoR2/DLC3/conduitcanyon/CCConduit_Top9.prefab"; public static string CCConduitTop9opt = "RoR2/DLC3/conduitcanyon/CCConduit_Top9_opt.prefab"; public static string CCConduitVertPipe1 = "RoR2/DLC3/conduitcanyon/CCConduit_VertPipe1.prefab"; public static string CCConduitVertPipe1opt = "RoR2/DLC3/conduitcanyon/CCConduit_VertPipe1_opt.prefab"; public static string CCConduitVertPipe2 = "RoR2/DLC3/conduitcanyon/CCConduit_VertPipe2.prefab"; public static string CCConduitVertPipe2opt = "RoR2/DLC3/conduitcanyon/CCConduit_VertPipe2_opt.prefab"; public static string CCConduitWingRamp = "RoR2/DLC3/conduitcanyon/CCConduit_WingRamp.prefab"; public static string CCConduitWingRampopt = "RoR2/DLC3/conduitcanyon/CCConduit_WingRamp_opt.prefab"; public static string CCConduitWingTop = "RoR2/DLC3/conduitcanyon/CCConduit_WingTop.prefab"; public static string CCConduitWingTopopt = "RoR2/DLC3/conduitcanyon/CCConduit_WingTop_opt.prefab"; public static string CCConduitEnd1 = "RoR2/DLC3/conduitcanyon/CCConduitEnd1.prefab"; public static string CCConduitEnd1Far = "RoR2/DLC3/conduitcanyon/CCConduitEnd1_Far.prefab"; public static string CCConduitEnd1Faropt = "RoR2/DLC3/conduitcanyon/CCConduitEnd1_Far_opt.prefab"; public static string CCConduitEnd1opt = "RoR2/DLC3/conduitcanyon/CCConduitEnd1_opt.prefab"; public static string CCConduitOOBEnergyLink = "RoR2/DLC3/conduitcanyon/CCConduitOOB_EnergyLink.prefab"; public static string CCConduitOOBEnergyLinkopt = "RoR2/DLC3/conduitcanyon/CCConduitOOB_EnergyLink_opt.prefab"; public static string CCConduitOOBMetal = "RoR2/DLC3/conduitcanyon/CCConduitOOB_Metal.prefab"; public static string CCConduitOOBMetalopt = "RoR2/DLC3/conduitcanyon/CCConduitOOB_Metal_opt.prefab"; public static string CCConduitPhase01EnergyLink = "RoR2/DLC3/conduitcanyon/CCConduitPhase01_EnergyLink.prefab"; public static string CCConduitPhase01EnergyLinkopt = "RoR2/DLC3/conduitcanyon/CCConduitPhase01_EnergyLink_opt.prefab"; public static string CCConduitPhase01Metal = "RoR2/DLC3/conduitcanyon/CCConduitPhase01_Metal.prefab"; public static string CCConduitPhase01Metalopt = "RoR2/DLC3/conduitcanyon/CCConduitPhase01_Metal_opt.prefab"; public static string CCConduitPhase02EnergyLink = "RoR2/DLC3/conduitcanyon/CCConduitPhase02_EnergyLink.prefab"; public static string CCConduitPhase02EnergyLinkopt = "RoR2/DLC3/conduitcanyon/CCConduitPhase02_EnergyLink_opt.prefab"; public static string CCConduitPhase02Metal = "RoR2/DLC3/conduitcanyon/CCConduitPhase02_Metal.prefab"; public static string CCConduitPhase02Metalopt = "RoR2/DLC3/conduitcanyon/CCConduitPhase02_Metal_opt.prefab"; public static string CCDioramaMerged = "RoR2/DLC3/conduitcanyon/CCDiorama_Merged.prefab"; public static string CCDioramaMergedopt = "RoR2/DLC3/conduitcanyon/CCDiorama_Merged_opt.prefab"; public static string CCEnergy1 = "RoR2/DLC3/conduitcanyon/CCEnergy1.prefab"; public static string CCEnergy1opt = "RoR2/DLC3/conduitcanyon/CCEnergy1_opt.prefab"; public static string CCEnergy2 = "RoR2/DLC3/conduitcanyon/CCEnergy2.prefab"; public static string CCEnergy2opt = "RoR2/DLC3/conduitcanyon/CCEnergy2_opt.prefab"; public static string CCEnergy3 = "RoR2/DLC3/conduitcanyon/CCEnergy3.prefab"; public static string CCEnergy3opt = "RoR2/DLC3/conduitcanyon/CCEnergy3_opt.prefab"; public static string CCEnergyLink01 = "RoR2/DLC3/conduitcanyon/CCEnergyLink_01.prefab"; public static string CCEnergyLink01opt = "RoR2/DLC3/conduitcanyon/CCEnergyLink_01_opt.prefab"; public static string CCEnergyLink02 = "RoR2/DLC3/conduitcanyon/CCEnergyLink_02.prefab"; public static string CCEnergyLink02opt = "RoR2/DLC3/conduitcanyon/CCEnergyLink_02_opt.prefab"; public static string CCEnergyLink03 = "RoR2/DLC3/conduitcanyon/CCEnergyLink_03.prefab"; public static string CCEnergyLink03opt = "RoR2/DLC3/conduitcanyon/CCEnergyLink_03_opt.prefab"; public static string CCEnergyLink04 = "RoR2/DLC3/conduitcanyon/CCEnergyLink_04.prefab"; public static string CCEnergyLink04opt = "RoR2/DLC3/conduitcanyon/CCEnergyLink_04_opt.prefab"; public static string CCEnergyLink05 = "RoR2/DLC3/conduitcanyon/CCEnergyLink_05.prefab"; public static string CCEnergyLink05opt = "RoR2/DLC3/conduitcanyon/CCEnergyLink_05_opt.prefab"; public static string CCEnergyLink06 = "RoR2/DLC3/conduitcanyon/CCEnergyLink_06.prefab"; public static string CCEnergyLink06opt = "RoR2/DLC3/conduitcanyon/CCEnergyLink_06_opt.prefab"; public static string CCEnergyLinkEnd = "RoR2/DLC3/conduitcanyon/CCEnergyLinkEnd.prefab"; public static string CCEnergyLinkEndopt = "RoR2/DLC3/conduitcanyon/CCEnergyLinkEnd_opt.prefab"; public static string CCEnergySocket = "RoR2/DLC3/conduitcanyon/CCEnergySocket.prefab"; public static string CCEnergySocketopt = "RoR2/DLC3/conduitcanyon/CCEnergySocket_opt.prefab"; public static string CCFlatWalkways01 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_01.prefab"; public static string CCFlatWalkways01opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_01_opt.prefab"; public static string CCFlatWalkways02 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_02.prefab"; public static string CCFlatWalkways02opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_02_opt.prefab"; public static string CCFlatWalkways03 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_03.prefab"; public static string CCFlatWalkways03opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_03_opt.prefab"; public static string CCFlatWalkways04 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_04.prefab"; public static string CCFlatWalkways04opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_04_opt.prefab"; public static string CCFlatWalkways05 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_05.prefab"; public static string CCFlatWalkways05opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_05_opt.prefab"; public static string CCFlatWalkways06 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_06.prefab"; public static string CCFlatWalkways06opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_06_opt.prefab"; public static string CCFlatWalkways07 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_07.prefab"; public static string CCFlatWalkways07opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_07_opt.prefab"; public static string CCFlatWalkways08 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_08.prefab"; public static string CCFlatWalkways08opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_08_opt.prefab"; public static string CCFlatWalkways09 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_09.prefab"; public static string CCFlatWalkways09opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_09_opt.prefab"; public static string CCFlatWalkways10 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_10.prefab"; public static string CCFlatWalkways10opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_10_opt.prefab"; public static string CCFlatWalkways11 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_11.prefab"; public static string CCFlatWalkways11opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_11_opt.prefab"; public static string CCFlatWalkways12 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_12.prefab"; public static string CCFlatWalkways12opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_12_opt.prefab"; public static string CCFlatWalkways13 = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_13.prefab"; public static string CCFlatWalkways13opt = "RoR2/DLC3/conduitcanyon/CCFlatWalkways_13_opt.prefab"; public static string CCFoam = "RoR2/DLC3/conduitcanyon/CCFoam.prefab"; public static string CCFogOcean = "RoR2/DLC3/conduitcanyon/CCFogOcean.prefab"; public static string CCFoliageFlowerA = "RoR2/DLC3/conduitcanyon/CCFoliageFlowerA.prefab"; public static string CCFoliageFlowerAopt = "RoR2/DLC3/conduitcanyon/CCFoliageFlowerA_opt.prefab"; public static string CCFoliageFlowerB = "RoR2/DLC3/conduitcanyon/CCFoliageFlowerB.prefab"; public static string CCFoliageFlowerBopt = "RoR2/DLC3/conduitcanyon/CCFoliageFlowerB_opt.prefab"; public static string CCFoliageFlowerC = "RoR2/DLC3/conduitcanyon/CCFoliageFlowerC.prefab"; public static string CCFoliageFlowerCopt = "RoR2/DLC3/conduitcanyon/CCFoliageFlowerC_opt.prefab"; public static string CCFoliageFlowerD = "RoR2/DLC3/conduitcanyon/CCFoliageFlowerD.prefab"; public static string CCFoliageGlowingFungusA = "RoR2/DLC3/conduitcanyon/CCFoliageGlowingFungusA.prefab"; public static string CCFoliageGlowingFungusAopt = "RoR2/DLC3/conduitcanyon/CCFoliageGlowingFungusA_opt.prefab"; public static string CCFoliageGlowingFungusB = "RoR2/DLC3/conduitcanyon/CCFoliageGlowingFungusB.prefab"; public static string CCFoliageGlowingFungusBopt = "RoR2/DLC3/conduitcanyon/CCFoliageGlowingFungusB_opt.prefab"; public static string CCFoliageGlowingFungusC = "RoR2/DLC3/conduitcanyon/CCFoliageGlowingFungusC.prefab"; public static string CCFoliageGlowingFungusCopt = "RoR2/DLC3/conduitcanyon/CCFoliageGlowingFungusC_opt.prefab"; public static string CCFoliageGrassA = "RoR2/DLC3/conduitcanyon/CCFoliageGrassA.prefab"; public static string CCFoliageGrassAopt = "RoR2/DLC3/conduitcanyon/CCFoliageGrassA_opt.prefab"; public static string CCFoliageGrassB = "RoR2/DLC3/conduitcanyon/CCFoliageGrassB.prefab"; public static string CCFoliageGrassBopt = "RoR2/DLC3/conduitcanyon/CCFoliageGrassB_opt.prefab"; public static string CCFoliageGrassC = "RoR2/DLC3/conduitcanyon/CCFoliageGrassC.prefab"; public static string CCFoliageGrassCopt = "RoR2/DLC3/conduitcanyon/CCFoliageGrassC_opt.prefab"; public static string CCFoliageGrassGlowA = "RoR2/DLC3/conduitcanyon/CCFoliageGrassGlowA.prefab"; public static string CCFoliageGrassGlowB = "RoR2/DLC3/conduitcanyon/CCFoliageGrassGlowB.prefab"; public static string CCFoliageGrassGlowC = "RoR2/DLC3/conduitcanyon/CCFoliageGrassGlowC.prefab"; public static string CCFoliageGrassOrangeB = "RoR2/DLC3/conduitcanyon/CCFoliageGrassOrangeB.prefab"; public static string CCFoliageGrassOrangeBopt = "RoR2/DLC3/conduitcanyon/CCFoliageGrassOrangeB_opt.prefab"; public static string CCFoliageGrassOrangeBCluster = "RoR2/DLC3/conduitcanyon/CCFoliageGrassOrangeBCluster.prefab"; public static string CCFoliageGrassOrangeBClusteropt = "RoR2/DLC3/conduitcanyon/CCFoliageGrassOrangeBCluster_opt.prefab"; public static string CCFoliageLeafSmallA = "RoR2/DLC3/conduitcanyon/CCFoliageLeafSmallA.prefab"; public static string CCFoliageLeafSmallAopt = "RoR2/DLC3/conduitcanyon/CCFoliageLeafSmallA_opt.prefab"; public static string CCFoliageRootD = "RoR2/DLC3/conduitcanyon/CCFoliageRootD.prefab"; public static string CCFoliageRootE = "RoR2/DLC3/conduitcanyon/CCFoliageRootE.prefab"; public static string CCFoliageTreeA = "RoR2/DLC3/conduitcanyon/CCFoliageTreeA.prefab"; public static string CCFoliageTreeAopt = "RoR2/DLC3/conduitcanyon/CCFoliageTreeA_opt.prefab"; public static string CCFoliageTreeB = "RoR2/DLC3/conduitcanyon/CCFoliageTreeB.prefab"; public static string CCFoliageTreeBopt = "RoR2/DLC3/conduitcanyon/CCFoliageTreeB_opt.prefab"; public static string CCFoliageTreeBranchA = "RoR2/DLC3/conduitcanyon/CCFoliageTreeBranchA.prefab"; public static string CCFoliageTreeSingleA = "RoR2/DLC3/conduitcanyon/CCFoliageTreeSingleA.prefab"; public static string CCFoliageTreeSingleB = "RoR2/DLC3/conduitcanyon/CCFoliageTreeSingleB.prefab"; public static string CCFoliageVineA = "RoR2/DLC3/conduitcanyon/CCFoliageVineA.prefab"; public static string CCFoliageVineB = "RoR2/DLC3/conduitcanyon/CCFoliageVineB.prefab"; public static string CCFoliageVineC = "RoR2/DLC3/conduitcanyon/CCFoliageVineC.prefab"; public static string CCFoliageVineD = "RoR2/DLC3/conduitcanyon/CCFoliageVineD.prefab"; public static string CCFoliageWallFlowerA = "RoR2/DLC3/conduitcanyon/CCFoliageWallFlowerA.prefab"; public static string CCGiantRockSlab = "RoR2/DLC3/conduitcanyon/CCGiantRockSlab.prefab"; public static string CCGiantRockSlabopt = "RoR2/DLC3/conduitcanyon/CCGiantRockSlab_opt.prefab"; public static string CCImpostorLeafA = "RoR2/DLC3/conduitcanyon/CCImpostorLeafA.prefab"; public static string CCImpostorTreeA = "RoR2/DLC3/conduitcanyon/CCImpostorTreeA.prefab"; public static string CCImpostorTreeB = "RoR2/DLC3/conduitcanyon/CCImpostorTreeB.prefab"; public static string CCImpostorTreeBottomA = "RoR2/DLC3/conduitcanyon/CCImpostorTreeBottomA.prefab"; public static string CCImpostorTreeC = "RoR2/DLC3/conduitcanyon/CCImpostorTreeC.prefab"; public static string CCInteriorCables = "RoR2/DLC3/conduitcanyon/CCInteriorCables.prefab"; public static string CCInteriorCablesopt = "RoR2/DLC3/conduitcanyon/CCInteriorCables_opt.prefab"; public static string CCInteriorCrane1 = "RoR2/DLC3/conduitcanyon/CCInteriorCrane1.prefab"; public static string CCInteriorCrane1opt = "RoR2/DLC3/conduitcanyon/CCInteriorCrane1_opt.prefab"; public static string CCInteriorCrane2 = "RoR2/DLC3/conduitcanyon/CCInteriorCrane2.prefab"; public static string CCInteriorCrane2opt = "RoR2/DLC3/conduitcanyon/CCInteriorCrane2_opt.prefab"; public static string CCLink01 = "RoR2/DLC3/conduitcanyon/CCLink_01.prefab"; public static string CCLink01opt = "RoR2/DLC3/conduitcanyon/CCLink_01_opt.prefab"; public static string CCLink02 = "RoR2/DLC3/conduitcanyon/CCLink_02.prefab"; public static string CCLink02opt = "RoR2/DLC3/conduitcanyon/CCLink_02_opt.prefab"; public static string CCLink03 = "RoR2/DLC3/conduitcanyon/CCLink_03.prefab"; public static string CCLink03opt = "RoR2/DLC3/conduitcanyon/CCLink_03_opt.prefab"; public static string CCLink04 = "RoR2/DLC3/conduitcanyon/CCLink_04.prefab"; public static string CCLink04opt = "RoR2/DLC3/conduitcanyon/CCLink_04_opt.prefab"; public static string CCLink06 = "RoR2/DLC3/conduitcanyon/CCLink_06.prefab"; public static string CCLink06opt = "RoR2/DLC3/conduitcanyon/CCLink_06_opt.prefab"; public static string CCLink07 = "RoR2/DLC3/conduitcanyon/CCLink_07.prefab"; public static string CCLink07opt = "RoR2/DLC3/conduitcanyon/CCLink_07_opt.prefab"; public static string CCLink08 = "RoR2/DLC3/conduitcanyon/CCLink_08.prefab"; public static string CCLink08opt = "RoR2/DLC3/conduitcanyon/CCLink_08_opt.prefab"; public static string CCLink09 = "RoR2/DLC3/conduitcanyon/CCLink_09.prefab"; public static string CCLink09opt = "RoR2/DLC3/conduitcanyon/CCLink_09_opt.prefab"; public static string CCLink10 = "RoR2/DLC3/conduitcanyon/CCLink_10.prefab"; public static string CCOuterCanyonA = "RoR2/DLC3/conduitcanyon/CCOuterCanyonA.prefab"; public static string CCOuterCanyonAopt = "RoR2/DLC3/conduitcanyon/CCOuterCanyonA_opt.prefab"; public static string CCOvalLight = "RoR2/DLC3/conduitcanyon/CCOvalLight.prefab"; public static string CCOvalLightopt = "RoR2/DLC3/conduitcanyon/CCOvalLight_opt.prefab"; public static string CCOvalLightRedEm = "RoR2/DLC3/conduitcanyon/CCOvalLightRedEm.prefab"; public static string CCOvalLightRedEmopt = "RoR2/DLC3/conduitcanyon/CCOvalLightRedEm_opt.prefab"; public static string CCPebbleA = "RoR2/DLC3/conduitcanyon/CCPebbleA.prefab"; public static string CCPebbleAopt = "RoR2/DLC3/conduitcanyon/CCPebbleA_opt.prefab"; public static string CCPebbleB = "RoR2/DLC3/conduitcanyon/CCPebbleB.prefab"; public static string CCPebbleBopt = "RoR2/DLC3/conduitcanyon/CCPebbleB_opt.prefab"; public static string CCPebbleC = "RoR2/DLC3/conduitcanyon/CCPebbleC.prefab"; public static string CCPebbleCopt = "RoR2/DLC3/conduitcanyon/CCPebbleC_opt.prefab"; public static string CCPlatform = "RoR2/DLC3/conduitcanyon/CCPlatform.prefab"; public static string CCPlatformMossy = "RoR2/DLC3/conduitcanyon/CCPlatform_Mossy.prefab"; public static string CCRockA = "RoR2/DLC3/conduitcanyon/CCRockA.prefab"; public static string CCRockAopt = "RoR2/DLC3/conduitcanyon/CCRockA_opt.prefab"; public static string CCSmallSparksPoint = "RoR2/DLC3/conduitcanyon/CCSmall Sparks, Point.prefab"; public static string CCSplashBig = "RoR2/DLC3/conduitcanyon/CCSplashBig.prefab"; public static string CCStormCloud = "RoR2/DLC3/conduitcanyon/CCStormCloud.prefab"; public static string CCTerrainA = "RoR2/DLC3/conduitcanyon/CCTerrainA.prefab"; public static string CCTreeA = "RoR2/DLC3/conduitcanyon/CCTreeA.prefab"; public static string CCTreeArmA = "RoR2/DLC3/conduitcanyon/CCTreeArmA.prefab"; public static string CCTreeArmB = "RoR2/DLC3/conduitcanyon/CCTreeArmB.prefab"; public static string CCTreeAShort = "RoR2/DLC3/conduitcanyon/CCTreeAShort.prefab"; public static string CCTreeB = "RoR2/DLC3/conduitcanyon/CCTreeB.prefab"; public static string CCTreeBShort = "RoR2/DLC3/conduitcanyon/CCTreeBShort.prefab"; public static string CCTreeC = "RoR2/DLC3/conduitcanyon/CCTreeC.prefab"; public static string CCTreeCShort = "RoR2/DLC3/conduitcanyon/CCTreeCShort.prefab"; public static string CCTreesBranchA = "RoR2/DLC3/conduitcanyon/CCTreesBranchA.prefab"; public static string CCTreesBranchACurved = "RoR2/DLC3/conduitcanyon/CCTreesBranchACurved.prefab"; public static string CCTreesBranchALong = "RoR2/DLC3/conduitcanyon/CCTreesBranchALong.prefab"; public static string CCTreesBranchALongCurved = "RoR2/DLC3/conduitcanyon/CCTreesBranchALongCurved.prefab"; public static string CCTreesBranchALongStraight = "RoR2/DLC3/conduitcanyon/CCTreesBranchALongStraight.prefab"; public static string CCTreesBranchB = "RoR2/DLC3/conduitcanyon/CCTreesBranchB.prefab"; public static string CCTreesBranchBCurved = "RoR2/DLC3/conduitcanyon/CCTreesBranchBCurved.prefab"; public static string CCTreesBranchC = "RoR2/DLC3/conduitcanyon/CCTreesBranchC.prefab"; public static string CCTreesBranchCCurved = "RoR2/DLC3/conduitcanyon/CCTreesBranchCCurved.prefab"; public static string CCWaterA = "RoR2/DLC3/conduitcanyon/CCWaterA.prefab"; public static string CCWaterAopt = "RoR2/DLC3/conduitcanyon/CCWaterA_opt.prefab"; public static string CCWaterB = "RoR2/DLC3/conduitcanyon/CCWaterB.prefab"; public static string CCWaterBopt = "RoR2/DLC3/conduitcanyon/CCWaterB_opt.prefab"; public static string CCWaterfallA = "RoR2/DLC3/conduitcanyon/CCWaterfallA.prefab"; public static string CCWaterfallAopt = "RoR2/DLC3/conduitcanyon/CCWaterfallA_opt.prefab"; public static string CCWaterfallB = "RoR2/DLC3/conduitcanyon/CCWaterfallB.prefab"; public static string CCWaterfallBopt = "RoR2/DLC3/conduitcanyon/CCWaterfallB_opt.prefab"; public static string CCWaterfallC = "RoR2/DLC3/conduitcanyon/CCWaterfallC.prefab"; public static string CCWaterfallCopt = "RoR2/DLC3/conduitcanyon/CCWaterfallC_opt.prefab"; public static string Director26 = "RoR2/DLC3/conduitcanyon/Director.prefab"; public static string ChargingWip = "RoR2/DLC3/conduitcanyon/ChargingWip.prefab"; public static string ConduitCanyonVFXHolder = "RoR2/DLC3/conduitcanyon/ConduitCanyonVFXHolder.prefab"; public static string ConduitPowerCoil = "RoR2/DLC3/conduitcanyon/ConduitPowerCoil.prefab"; public static string ConduitTeleporterFlash = "RoR2/DLC3/conduitcanyon/ConduitTeleporterFlash.prefab"; public static string TeleporterConduitCanyonVariant = "RoR2/DLC3/conduitcanyon/Teleporter_ConduitCanyon_Variant.prefab"; public static string TeleporterConduitLightning = "RoR2/DLC3/conduitcanyon/TeleporterConduitLightning.prefab"; public static string FWWaterContainer21 = "RoR2/DLC3/conduitcanyon/FW_WaterContainer.prefab"; public static string HOLDERZiprails23 = "RoR2/DLC3/conduitcanyon/HOLDER_ Ziprails.prefab"; public static string MinorShieldWall = "RoR2/DLC3/conduitcanyon/MinorShieldWall.prefab"; public static string ShieldWallWall = "RoR2/DLC3/conduitcanyon/ShieldWall_Wall.prefab"; public static string ConduitCanyonDioramaDisplay = "RoR2/DLC3/conduitcanyon/ConduitCanyonDioramaDisplay.prefab"; public static string mdlDrillMachineBulkheadA = "RoR2/DLC3/ironalluvium/mdlDrillMachineBulkheadA.fbx"; public static string mdlDrillMachineBulkheadB = "RoR2/DLC3/ironalluvium/mdlDrillMachineBulkheadB.fbx"; public static string mdlDrillMachineCables2 = "RoR2/DLC3/ironalluvium/mdlDrillMachineCables2.fbx"; public static string mdlDrillMachineCap = "RoR2/DLC3/ironalluvium/mdlDrillMachineCap.fbx"; public static string mdlDrillMachineDebrisA = "RoR2/DLC3/ironalluvium/mdlDrillMachineDebrisA.fbx"; public static string mdlDrillMachineDebrisB = "RoR2/DLC3/ironalluvium/mdlDrillMachineDebrisB.fbx"; public static string mdlDrillMachineDebrisC = "RoR2/DLC3/ironalluvium/mdlDrillMachineDebrisC.fbx"; public static string mdlDrillMachineDebrisD = "RoR2/DLC3/ironalluvium/mdlDrillMachineDebrisD.fbx"; public static string mdlDrillMachineDebrisE = "RoR2/DLC3/ironalluvium/mdlDrillMachineDebrisE.fbx"; public static string mdlDrillMachineEngine = "RoR2/DLC3/ironalluvium/mdlDrillMachineEngine.fbx"; public static string mdlDrillMachineHead = "RoR2/DLC3/ironalluvium/mdlDrillMachineHead.fbx"; public static string mdlDrillMachineModule = "RoR2/DLC3/ironalluvium/mdlDrillMachineModule.fbx"; public static string mdlDrillMachineModuleBrokenA = "RoR2/DLC3/ironalluvium/mdlDrillMachineModuleBrokenA.fbx"; public static string mdlDrillMachineModuleHollowA = "RoR2/DLC3/ironalluvium/mdlDrillMachineModuleHollowA.fbx"; public static string mdlDrillMachineModulePlatform = "RoR2/DLC3/ironalluvium/mdlDrillMachineModulePlatform.fbx"; public static string mdlDrillMachineModuleWide = "RoR2/DLC3/ironalluvium/mdlDrillMachineModuleWide.fbx"; public static string mdlDrillMachineSection = "RoR2/DLC3/ironalluvium/mdlDrillMachineSection.fbx"; public static string mdlDrillMachineSectionLong = "RoR2/DLC3/ironalluvium/mdlDrillMachineSectionLong.fbx"; public static string mdlDrillMarkA = "RoR2/DLC3/ironalluvium/mdlDrillMarkA.fbx"; public static string mdlDrillPanelModule = "RoR2/DLC3/ironalluvium/mdlDrillPanelModule.fbx"; public static string mdlIACableBridgeSegment = "RoR2/DLC3/ironalluvium/mdlIACableBridgeSegment.fbx"; public static string mdlIACacti = "RoR2/DLC3/ironalluvium/mdlIACacti.fbx"; public static string mdlIACactiBaby = "RoR2/DLC3/ironalluvium/mdlIACactiBaby.fbx"; public static string mdlIACactiSmall = "RoR2/DLC3/ironalluvium/mdlIACactiSmall.fbx"; public static string mdlIACaveFungi01 = "RoR2/DLC3/ironalluvium/mdlIACaveFungi01.fbx"; public static string mdlIACaveFungi02 = "RoR2/DLC3/ironalluvium/mdlIACaveFungi02.fbx"; public static string mdlIACaveFungi03 = "RoR2/DLC3/ironalluvium/mdlIACaveFungi03.fbx"; public static string mdlIACaveFungi04 = "RoR2/DLC3/ironalluvium/mdlIACaveFungi04.fbx"; public static string mdlIACollapsedMineBase = "RoR2/DLC3/ironalluvium/mdlIACollapsedMineBase.fbx"; public static string mdlIADrillShadowCaster = "RoR2/DLC3/ironalluvium/mdlIADrillShadowCaster.fbx"; public static string mdlIAGrassShort1 = "RoR2/DLC3/ironalluvium/mdlIAGrassShort1.fbx"; public static string mdlIAGrassShort2 = "RoR2/DLC3/ironalluvium/mdlIAGrassShort2.fbx"; public static string mdlIAGrassTall = "RoR2/DLC3/ironalluvium/mdlIAGrassTall.fbx"; public static string mdlIAIronVein = "RoR2/DLC3/ironalluvium/mdlIAIronVein.fbx"; public static string mdlIALight = "RoR2/DLC3/ironalluvium/mdlIALight.fbx"; public static string mdlIALightPole = "RoR2/DLC3/ironalluvium/mdlIALightPole.fbx"; public static string mdlIAOreA = "RoR2/DLC3/ironalluvium/mdlIAOreA.fbx"; public static string mdlIAOreB = "RoR2/DLC3/ironalluvium/mdlIAOreB.fbx"; public static string mdlIAOreC = "RoR2/DLC3/ironalluvium/mdlIAOreC.fbx"; public static string mdlIAOreChunkA = "RoR2/DLC3/ironalluvium/mdlIAOreChunkA.fbx"; public static string mdlIAOreChunkContainer = "RoR2/DLC3/ironalluvium/mdlIAOreChunkContainer.fbx"; public static string mdlIAOreContainer = "RoR2/DLC3/ironalluvium/mdlIAOreContainer.fbx"; public static string mdlIAOreHalfContainer = "RoR2/DLC3/ironalluvium/mdlIAOreHalfContainer.fbx"; public static string mdlIAPlatformA = "RoR2/DLC3/ironalluvium/mdlIAPlatformA.fbx"; public static string mdlIAPlatformB = "RoR2/DLC3/ironalluvium/mdlIAPlatformB.fbx"; public static string mdlIAPlatformC = "RoR2/DLC3/ironalluvium/mdlIAPlatformC.fbx"; public static string mdlIAShadowCaster = "RoR2/DLC3/ironalluvium/mdlIAShadowCaster.fbx"; public static string mdlIASmallBridge = "RoR2/DLC3/ironalluvium/mdlIASmallBridge.fbx"; public static string mdlIASmelter = "RoR2/DLC3/ironalluvium/mdlIASmelter.fbx"; public static string mdlIATerrainA = "RoR2/DLC3/ironalluvium/mdlIATerrainA.fbx"; public static string mdlIATerrainAopt = "RoR2/DLC3/ironalluvium/mdlIATerrainA_opt.fbx"; public static string mdlIATerrainB = "RoR2/DLC3/ironalluvium/mdlIATerrainB.fbx"; public static string mdlIATerrainBopt = "RoR2/DLC3/ironalluvium/mdlIATerrainB_opt.fbx"; public static string mdlIATerrainC = "RoR2/DLC3/ironalluvium/mdlIATerrainC.fbx"; public static string mdlIATerrainCopt = "RoR2/DLC3/ironalluvium/mdlIATerrainC_opt.fbx"; public static string mdlIATerrainD = "RoR2/DLC3/ironalluvium/mdlIATerrainD.fbx"; public static string mdlIATerrainDopt = "RoR2/DLC3/ironalluvium/mdlIATerrainD_opt.fbx"; public static string mdlIATinyBridge = "RoR2/DLC3/ironalluvium/mdlIATinyBridge.fbx"; public static string mdlIAWalkway4 = "RoR2/DLC3/ironalluvium/mdlIAWalkway4.fbx"; public static string mdlIAWalkway6 = "RoR2/DLC3/ironalluvium/mdlIAWalkway6.fbx"; public static string mdlIAWalkway8 = "RoR2/DLC3/ironalluvium/mdlIAWalkway8.fbx"; public static string mdlIAWalkway8Xtra = "RoR2/DLC3/ironalluvium/mdlIAWalkway8Xtra.fbx"; public static string IABoulderA = "RoR2/DLC3/ironalluvium/IABoulderA.prefab"; public static string IABoulderAopt = "RoR2/DLC3/ironalluvium/IABoulderA_opt.prefab"; public static string IABoulderB = "RoR2/DLC3/ironalluvium/IABoulderB.prefab"; public static string IABoulderBopt = "RoR2/DLC3/ironalluvium/IABoulderB_opt.prefab"; public static string IABoulderC = "RoR2/DLC3/ironalluvium/IABoulderC.prefab"; public static string IABoulderCopt = "RoR2/DLC3/ironalluvium/IABoulderC_opt.prefab"; public static string IACableBridge = "RoR2/DLC3/ironalluvium/IACableBridge.prefab"; public static string IACableBridgeopt = "RoR2/DLC3/ironalluvium/IACableBridge_opt.prefab"; public static string IACableBridge2 = "RoR2/DLC3/ironalluvium/IACableBridge2.prefab"; public static string IACableBridge2opt = "RoR2/DLC3/ironalluvium/IACableBridge2_opt.prefab"; public static string IACableBridgeSegment = "RoR2/DLC3/ironalluvium/IACableBridgeSegment.prefab"; public static string IACableBridgeSegmentopt = "RoR2/DLC3/ironalluvium/IACableBridgeSegment_opt.prefab"; public static string IACactiBaby = "RoR2/DLC3/ironalluvium/IACactiBaby.prefab"; public static string IACactiBabyopt = "RoR2/DLC3/ironalluvium/IACactiBaby_opt.prefab"; public static string IACactiLarge = "RoR2/DLC3/ironalluvium/IACactiLarge.prefab"; public static string IACactiLargeopt = "RoR2/DLC3/ironalluvium/IACactiLarge_opt.prefab"; public static string IACactiSmall = "RoR2/DLC3/ironalluvium/IACactiSmall.prefab"; public static string IACactiSmallopt = "RoR2/DLC3/ironalluvium/IACactiSmall_opt.prefab"; public static string IACaveFungi01 = "RoR2/DLC3/ironalluvium/IACaveFungi01.prefab"; public static string IACaveFungi01opt = "RoR2/DLC3/ironalluvium/IACaveFungi01_opt.prefab"; public static string IACaveFungi02 = "RoR2/DLC3/ironalluvium/IACaveFungi02.prefab"; public static string IACaveFungi02opt = "RoR2/DLC3/ironalluvium/IACaveFungi02_opt.prefab"; public static string IACaveFungi03 = "RoR2/DLC3/ironalluvium/IACaveFungi03.prefab"; public static string IACaveFungi03opt = "RoR2/DLC3/ironalluvium/IACaveFungi03_opt.prefab"; public static string IACaveFungi04 = "RoR2/DLC3/ironalluvium/IACaveFungi04.prefab"; public static string IACaveFungi04opt = "RoR2/DLC3/ironalluvium/IACaveFungi04_opt.prefab"; public static string IACollapsedMine = "RoR2/DLC3/ironalluvium/IACollapsedMine.prefab"; public static string IACollapsedMineopt = "RoR2/DLC3/ironalluvium/IACollapsedMine_opt.prefab"; public static string IADrillMachineBridge2 = "RoR2/DLC3/ironalluvium/IADrillMachineBridge2.prefab"; public static string IADrillMachineBridge2opt = "RoR2/DLC3/ironalluvium/IADrillMachineBridge2_opt.prefab"; public static string IADrillMachineBulkheadA = "RoR2/DLC3/ironalluvium/IADrillMachineBulkheadA.prefab"; public static string IADrillMachineBulkheadAopt = "RoR2/DLC3/ironalluvium/IADrillMachineBulkheadA_opt.prefab"; public static string IADrillMachineBulkheadB = "RoR2/DLC3/ironalluvium/IADrillMachineBulkheadB.prefab"; public static string IADrillMachineBulkheadBopt = "RoR2/DLC3/ironalluvium/IADrillMachineBulkheadB_opt.prefab"; public static string IADrillMachineCables2 = "RoR2/DLC3/ironalluvium/IADrillMachineCables2.prefab"; public static string IADrillMachineCables2opt = "RoR2/DLC3/ironalluvium/IADrillMachineCables2_opt.prefab"; public static string IADrillMachineCap = "RoR2/DLC3/ironalluvium/IADrillMachineCap.prefab"; public static string IADrillMachineCapopt = "RoR2/DLC3/ironalluvium/IADrillMachineCap_opt.prefab"; public static string IADrillMachineDebrisA = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisA.prefab"; public static string IADrillMachineDebrisAopt = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisA_opt.prefab"; public static string IADrillMachineDebrisB = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisB.prefab"; public static string IADrillMachineDebrisBopt = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisB_opt.prefab"; public static string IADrillMachineDebrisC = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisC.prefab"; public static string IADrillMachineDebrisCopt = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisC_opt.prefab"; public static string IADrillMachineDebrisD = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisD.prefab"; public static string IADrillMachineDebrisDopt = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisD_opt.prefab"; public static string IADrillMachineDebrisE = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisE.prefab"; public static string IADrillMachineDebrisEopt = "RoR2/DLC3/ironalluvium/IADrillMachineDebrisE_opt.prefab"; public static string IADrillMachineEngine = "RoR2/DLC3/ironalluvium/IADrillMachineEngine.prefab"; public static string IADrillMachineEngineopt = "RoR2/DLC3/ironalluvium/IADrillMachineEngine_opt.prefab"; public static string IADrillMachineHead = "RoR2/DLC3/ironalluvium/IADrillMachineHead.prefab"; public static string IADrillMachineHeadopt = "RoR2/DLC3/ironalluvium/IADrillMachineHead_opt.prefab"; public static string IADrillMachineLong = "RoR2/DLC3/ironalluvium/IADrillMachineLong.prefab"; public static string IADrillMachineLongopt = "RoR2/DLC3/ironalluvium/IADrillMachineLong_opt.prefab"; public static string IADrillMachineModule = "RoR2/DLC3/ironalluvium/IADrillMachineModule.prefab"; public static string IADrillMachineModuleopt = "RoR2/DLC3/ironalluvium/IADrillMachineModule_opt.prefab"; public static string IADrillMachineModuleBrokenA = "RoR2/DLC3/ironalluvium/IADrillMachineModuleBrokenA.prefab"; public static string IADrillMachineModuleBrokenAopt = "RoR2/DLC3/ironalluvium/IADrillMachineModuleBrokenA_opt.prefab"; public static string IADrillMachineModuleHollowA = "RoR2/DLC3/ironalluvium/IADrillMachineModuleHollowA.prefab"; public static string IADrillMachineModuleHollowAopt = "RoR2/DLC3/ironalluvium/IADrillMachineModuleHollowA_opt.prefab"; public static string IADrillMachineModulePlatform = "RoR2/DLC3/ironalluvium/IADrillMachineModulePlatform.prefab"; public static string IADrillMachineModulePlatformopt = "RoR2/DLC3/ironalluvium/IADrillMachineModulePlatform_opt.prefab"; public static string IADrillMachineModuleWide = "RoR2/DLC3/ironalluvium/IADrillMachineModuleWide.prefab"; public static string IADrillMachineModuleWideopt = "RoR2/DLC3/ironalluvium/IADrillMachineModuleWide_opt.prefab"; public static string IADrillMachineSection = "RoR2/DLC3/ironalluvium/IADrillMachineSection.prefab"; public static string IADrillMachineSectionopt = "RoR2/DLC3/ironalluvium/IADrillMachineSection_opt.prefab"; public static string IADrillMachineSectionLong = "RoR2/DLC3/ironalluvium/IADrillMachineSectionLong.prefab"; public static string IADrillMachineSectionLongopt = "RoR2/DLC3/ironalluvium/IADrillMachineSectionLong_opt.prefab"; public static string IADrillMachineShort = "RoR2/DLC3/ironalluvium/IADrillMachineShort.prefab"; public static string IADrillMachineShortopt = "RoR2/DLC3/ironalluvium/IADrillMachineShort_opt.prefab"; public static string IADrillMarkA = "RoR2/DLC3/ironalluvium/IADrillMarkA.prefab"; public static string IADrillMarkAopt = "RoR2/DLC3/ironalluvium/IADrillMarkA_opt.prefab"; public static string IADrillPanelModule = "RoR2/DLC3/ironalluvium/IADrillPanelModule.prefab"; public static string IADrillPanelModuleopt = "RoR2/DLC3/ironalluvium/IADrillPanelModule_opt.prefab"; public static string IADrillShadowCaster = "RoR2/DLC3/ironalluvium/IADrillShadowCaster.prefab"; public static string IAGrassShort1 = "RoR2/DLC3/ironalluvium/IAGrassShort1.prefab"; public static string IAGrassShort2 = "RoR2/DLC3/ironalluvium/IAGrassShort2.prefab"; public static string IAGrassTall = "RoR2/DLC3/ironalluvium/IAGrassTall.prefab"; public static string IAIronChunkLarge = "RoR2/DLC3/ironalluvium/IAIronChunkLarge.prefab"; public static string IAIronChunkLargeopt = "RoR2/DLC3/ironalluvium/IAIronChunkLarge_opt.prefab"; public static string IAIronVein = "RoR2/DLC3/ironalluvium/IAIronVein.prefab"; public static string IAIronVeinopt = "RoR2/DLC3/ironalluvium/IAIronVein_opt.prefab"; public static string IALight = "RoR2/DLC3/ironalluvium/IALight.prefab"; public static string IALightopt = "RoR2/DLC3/ironalluvium/IALight_opt.prefab"; public static string IALightRed = "RoR2/DLC3/ironalluvium/IALight_Red.prefab"; public static string IALightRedopt = "RoR2/DLC3/ironalluvium/IALight_Red_opt.prefab"; public static string IALightPole = "RoR2/DLC3/ironalluvium/IALightPole.prefab"; public static string IALightPoleopt = "RoR2/DLC3/ironalluvium/IALightPole_opt.prefab"; public static string IAOreA = "RoR2/DLC3/ironalluvium/IAOreA.prefab"; public static string IAOreAopt = "RoR2/DLC3/ironalluvium/IAOreA_opt.prefab"; public static string IAOreB = "RoR2/DLC3/ironalluvium/IAOreB.prefab"; public static string IAOreBopt = "RoR2/DLC3/ironalluvium/IAOreB_opt.prefab"; public static string IAOreC = "RoR2/DLC3/ironalluvium/IAOreC.prefab"; public static string IAOreCopt = "RoR2/DLC3/ironalluvium/IAOreC_opt.prefab"; public static string IAOreContainer = "RoR2/DLC3/ironalluvium/IAOreContainer.prefab"; public static string IAOreContaineropt = "RoR2/DLC3/ironalluvium/IAOreContainer_opt.prefab"; public static string IAOreContainerOpen = "RoR2/DLC3/ironalluvium/IAOreContainerOpen.prefab"; public static string IAOreContainerOpenopt = "RoR2/DLC3/ironalluvium/IAOreContainerOpen_opt.prefab"; public static string IAOreContainerStackable = "RoR2/DLC3/ironalluvium/IAOreContainerStackable.prefab"; public static string IAOreContainerStackableopt = "RoR2/DLC3/ironalluvium/IAOreContainerStackable_opt.prefab"; public static string IAOreHalfContainer = "RoR2/DLC3/ironalluvium/IAOreHalfContainer.prefab"; public static string IAOreHalfContaineropt = "RoR2/DLC3/ironalluvium/IAOreHalfContainer_opt.prefab"; public static string IAOrePebbleA = "RoR2/DLC3/ironalluvium/IAOrePebbleA.prefab"; public static string IAOrePebbleAopt = "RoR2/DLC3/ironalluvium/IAOrePebbleA_opt.prefab"; public static string IAOrePebbleB = "RoR2/DLC3/ironalluvium/IAOrePebbleB.prefab"; public static string IAOrePebbleBopt = "RoR2/DLC3/ironalluvium/IAOrePebbleB_opt.prefab"; public static string IAOrePebbleC = "RoR2/DLC3/ironalluvium/IAOrePebbleC.prefab"; public static string IAOrePebbleCopt = "RoR2/DLC3/ironalluvium/IAOrePebbleC_opt.prefab"; public static string IAPlatformA = "RoR2/DLC3/ironalluvium/IAPlatformA.prefab"; public static string IAPlatformAopt = "RoR2/DLC3/ironalluvium/IAPlatformA_opt.prefab"; public static string IAPlatformB = "RoR2/DLC3/ironalluvium/IAPlatformB.prefab"; public static string IAPlatformBopt = "RoR2/DLC3/ironalluvium/IAPlatformB_opt.prefab"; public static string IAPlatformC = "RoR2/DLC3/ironalluvium/IAPlatformC.prefab"; public static string IAPlatformCopt = "RoR2/DLC3/ironalluvium/IAPlatformC_opt.prefab"; public static string IARockA = "RoR2/DLC3/ironalluvium/IARockA.prefab"; public static string IARockAopt = "RoR2/DLC3/ironalluvium/IARockA_opt.prefab"; public static string IARockB = "RoR2/DLC3/ironalluvium/IARockB.prefab"; public static string IARockBopt = "RoR2/DLC3/ironalluvium/IARockB_opt.prefab"; public static string IARockC = "RoR2/DLC3/ironalluvium/IARockC.prefab"; public static string IARockCopt = "RoR2/DLC3/ironalluvium/IARockC_opt.prefab"; public static string IARockChunkA = "RoR2/DLC3/ironalluvium/IARockChunkA.prefab"; public static string IARockChunkAopt = "RoR2/DLC3/ironalluvium/IARockChunkA_opt.prefab"; public static string IAShadowCaster = "RoR2/DLC3/ironalluvium/IAShadowCaster.prefab"; public static string IAShadowCasteropt = "RoR2/DLC3/ironalluvium/IAShadowCaster_opt.prefab"; public static string IASmallBridge = "RoR2/DLC3/ironalluvium/IASmallBridge.prefab"; public static string IASmallBridgeopt = "RoR2/DLC3/ironalluvium/IASmallBridge_opt.prefab"; public static string IASmelter = "RoR2/DLC3/ironalluvium/IASmelter.prefab"; public static string IASmelteropt = "RoR2/DLC3/ironalluvium/IASmelter_opt.prefab"; public static string IASmelterFire = "RoR2/DLC3/ironalluvium/IASmelterFire.prefab"; public static string IASmelterFireopt = "RoR2/DLC3/ironalluvium/IASmelterFire_opt.prefab"; public static string IATerrainA = "RoR2/DLC3/ironalluvium/IATerrainA.prefab"; public static string IATerrainAopt = "RoR2/DLC3/ironalluvium/IATerrainA_opt.prefab"; public static string IATerrainB = "RoR2/DLC3/ironalluvium/IATerrainB.prefab"; public static string IATerrainBopt = "RoR2/DLC3/ironalluvium/IATerrainB_opt.prefab"; public static string IATerrainC = "RoR2/DLC3/ironalluvium/IATerrainC.prefab"; public static string IATerrainCopt = "RoR2/DLC3/ironalluvium/IATerrainC_opt.prefab"; public static string IATerrainD = "RoR2/DLC3/ironalluvium/IATerrainD.prefab"; public static string IATerrainDopt = "RoR2/DLC3/ironalluvium/IATerrainD_opt.prefab"; public static string IATinyBridge = "RoR2/DLC3/ironalluvium/IATinyBridge.prefab"; public static string IATinyBridgeopt = "RoR2/DLC3/ironalluvium/IATinyBridge_opt.prefab"; public static string IAWalkway4 = "RoR2/DLC3/ironalluvium/IAWalkway4.prefab"; public static string IAWalkway4opt = "RoR2/DLC3/ironalluvium/IAWalkway4_opt.prefab"; public static string IAWalkway6 = "RoR2/DLC3/ironalluvium/IAWalkway6.prefab"; public static string IAWalkway6opt = "RoR2/DLC3/ironalluvium/IAWalkway6_opt.prefab"; public static string IAWalkway8 = "RoR2/DLC3/ironalluvium/IAWalkway8.prefab"; public static string IAWalkway8opt = "RoR2/DLC3/ironalluvium/IAWalkway8_opt.prefab"; public static string IAWalkway8Xtra = "RoR2/DLC3/ironalluvium/IAWalkway8Xtra.prefab"; public static string IAWalkway8Xtraopt = "RoR2/DLC3/ironalluvium/IAWalkway8Xtra_opt.prefab"; public static string ironalluviumPOIManager = "RoR2/DLC3/ironalluvium/ironalluvium_POIManager.prefab"; public static string IronAlluviumWeather = "RoR2/DLC3/ironalluvium/IronAlluvium_Weather.prefab"; public static string IronAlluviumWeatherps4 = "RoR2/DLC3/ironalluvium/IronAlluvium_Weather_ps4.prefab"; public static string IronAlluviumDioramaDisplay = "RoR2/DLC3/ironalluvium/IronAlluviumDioramaDisplay.prefab"; public static string mdlIATerrainDiorama = "RoR2/DLC3/ironalluvium/mdlIATerrainDiorama.fbx"; public static string mdlIA2AurelianiteVeinA = "RoR2/DLC3/ironalluvium2/mdlIA2AurelianiteVeinA.fbx"; public static string mdlIA2AurelianiteVeinC = "RoR2/DLC3/ironalluvium2/mdlIA2AurelianiteVeinC.fbx"; public static string mdlIA2AurelioniteCube = "RoR2/DLC3/ironalluvium2/mdlIA2AurelioniteCube.fbx"; public static string mdlIA2AurelionitePile = "RoR2/DLC3/ironalluvium2/mdlIA2AurelionitePile.fbx"; public static string mdlIA2Aurora = "RoR2/DLC3/ironalluvium2/mdlIA2Aurora.fbx"; public static string mdlIA2DrillMachineEngineHollow = "RoR2/DLC3/ironalluvium2/mdlIA2DrillMachineEngineHollow.fbx"; public static string mdlIA2DrillMachineSectionHollow = "RoR2/DLC3/ironalluvium2/mdlIA2DrillMachineSectionHollow.fbx"; public static string mdlIA2Plant1Small = "RoR2/DLC3/ironalluvium2/mdlIA2Plant1Small.fbx"; public static string mdlIA2Plant2Medium = "RoR2/DLC3/ironalluvium2/mdlIA2Plant2Medium.fbx"; public static string mdlIA2Plant3Large = "RoR2/DLC3/ironalluvium2/mdlIA2Plant3Large.fbx"; public static string mdlIA2Plant4Leafy = "RoR2/DLC3/ironalluvium2/mdlIA2Plant4Leafy.fbx"; public static string mdlIA2Plant5LeafyMedium = "RoR2/DLC3/ironalluvium2/mdlIA2Plant5LeafyMedium.fbx"; public static string mdlIA2Plant6LeafySmall = "RoR2/DLC3/ironalluvium2/mdlIA2Plant6LeafySmall.fbx"; public static string mdlIA2TerrainShadowCaster = "RoR2/DLC3/ironalluvium2/mdlIA2Terrain_ShadowCaster.fbx"; public static string mdlIA2TerrainA = "RoR2/DLC3/ironalluvium2/mdlIA2TerrainA.fbx"; public static string mdlIA2TerrainAOpt = "RoR2/DLC3/ironalluvium2/mdlIA2TerrainA_Opt.fbx"; public static string IA2AurelianiteVeinA = "RoR2/DLC3/ironalluvium2/IA2AurelianiteVeinA.prefab"; public static string IA2AurelianiteVeinAOpt = "RoR2/DLC3/ironalluvium2/IA2AurelianiteVeinA_Opt.prefab"; public static string IA2AurelianiteVeinC = "RoR2/DLC3/ironalluvium2/IA2AurelianiteVeinC.prefab"; public static string IA2AurelianiteVeinCOpt = "RoR2/DLC3/ironalluvium2/IA2AurelianiteVeinC_Opt.prefab"; public static string IA2AurelioniteCube = "RoR2/DLC3/ironalluvium2/IA2AurelioniteCube.prefab"; public static string IA2AurelionitePile = "RoR2/DLC3/ironalluvium2/IA2AurelionitePile.prefab"; public static string IA2AurelionitePileOpt = "RoR2/DLC3/ironalluvium2/IA2AurelionitePile_Opt.prefab"; public static string IA2Aurora = "RoR2/DLC3/ironalluvium2/IA2Aurora.prefab"; public static string IA2DrillMachineEngineHollow = "RoR2/DLC3/ironalluvium2/IA2DrillMachineEngineHollow.prefab"; public static string IA2DrillMachineEngineHollowOpt = "RoR2/DLC3/ironalluvium2/IA2DrillMachineEngineHollow_Opt.prefab"; public static string IA2DrillMachineLong = "RoR2/DLC3/ironalluvium2/IA2DrillMachineLong.prefab"; public static string IA2DrillMachineLongOpt = "RoR2/DLC3/ironalluvium2/IA2DrillMachineLong_Opt.prefab"; public static string IA2DrillMachineSectionHollow = "RoR2/DLC3/ironalluvium2/IA2DrillMachineSectionHollow.prefab"; public static string IA2DrillMachineSectionHollowOpt = "RoR2/DLC3/ironalluvium2/IA2DrillMachineSectionHollow_Opt.prefab"; public static string IA2Plant1Small = "RoR2/DLC3/ironalluvium2/IA2Plant1Small.prefab"; public static string IA2Plant1SmallOpt = "RoR2/DLC3/ironalluvium2/IA2Plant1Small_Opt.prefab"; public static string IA2Plant2Medium = "RoR2/DLC3/ironalluvium2/IA2Plant2Medium.prefab"; public static string IA2Plant2MediumOpt = "RoR2/DLC3/ironalluvium2/IA2Plant2Medium_Opt.prefab"; public static string IA2Plant3Large = "RoR2/DLC3/ironalluvium2/IA2Plant3Large.prefab"; public static string IA2Plant3LargeOpt = "RoR2/DLC3/ironalluvium2/IA2Plant3Large_Opt.prefab"; public static string IA2Plant4Leafy = "RoR2/DLC3/ironalluvium2/IA2Plant4Leafy.prefab"; public static string IA2Plant4LeafyOpt = "RoR2/DLC3/ironalluvium2/IA2Plant4Leafy_Opt.prefab"; public static string IA2Plant5LeafyMedium = "RoR2/DLC3/ironalluvium2/IA2Plant5LeafyMedium.prefab"; public static string IA2Plant5LeafyMediumOpt = "RoR2/DLC3/ironalluvium2/IA2Plant5LeafyMedium_Opt.prefab"; public static string IA2Plant6LeafySmall = "RoR2/DLC3/ironalluvium2/IA2Plant6LeafySmall.prefab"; public static string IA2Plant6LeafySmallOpt = "RoR2/DLC3/ironalluvium2/IA2Plant6LeafySmall_Opt.prefab"; public static string IA2TerrainShadowCaster = "RoR2/DLC3/ironalluvium2/IA2Terrain_ShadowCaster.prefab"; public static string IA2TerrainA = "RoR2/DLC3/ironalluvium2/IA2TerrainA.prefab"; public static string IA2TerrainAOpt = "RoR2/DLC3/ironalluvium2/IA2TerrainA_Opt.prefab"; public static string IronAlluviumWeather35 = "RoR2/DLC3/ironalluvium2/IronAlluvium_Weather.prefab"; public static string IronAlluviumWeatherps411 = "RoR2/DLC3/ironalluvium2/IronAlluvium_Weather_ps4.prefab"; public static string IronAlluvium2DioramaDisplay = "RoR2/DLC3/ironalluvium2/IronAlluvium2DioramaDisplay.prefab"; public static string mdlNestBranch01 = "RoR2/DLC3/nest/mdlNestBranch01.fbx"; public static string mdlNestBranch02 = "RoR2/DLC3/nest/mdlNestBranch02.fbx"; public static string mdlNestBranch03 = "RoR2/DLC3/nest/mdlNestBranch03.fbx"; public static string mdlNestBranchSnow = "RoR2/DLC3/nest/mdlNestBranchSnow.fbx"; public static string NestFoliage01 = "RoR2/DLC3/nest/Nest_Foliage01.st"; public static string NestFoliage02 = "RoR2/DLC3/nest/Nest_Foliage02.st"; public static string NestFoliage03 = "RoR2/DLC3/nest/Nest_Foliage03.st"; public static string NestFoliage04 = "RoR2/DLC3/nest/Nest_Foliage04.st"; public static string NestFoliage05 = "RoR2/DLC3/nest/Nest_Foliage05.st"; public static string NestFoliage06 = "RoR2/DLC3/nest/Nest_Foliage06.st"; public static string Nestvine01 = "RoR2/DLC3/nest/Nest_vine01.st"; public static string NestRoot01 = "RoR2/DLC3/nest/NestRoot01.fbx"; public static string NestRoot02 = "RoR2/DLC3/nest/NestRoot02.fbx"; public static string NestRoot03 = "RoR2/DLC3/nest/NestRoot03.fbx"; public static string mdlPPArhiDebrisA = "RoR2/DLC3/nest/mdlPPArhiDebrisA.fbx"; public static string mdlPPArhiDebrisACOL = "RoR2/DLC3/nest/mdlPPArhiDebrisA_COL.fbx"; public static string mdlPPArhiDebrisB = "RoR2/DLC3/nest/mdlPPArhiDebrisB.fbx"; public static string mdlPPArhiDebrisC = "RoR2/DLC3/nest/mdlPPArhiDebrisC.fbx"; public static string mdlPPArhiDebrisD = "RoR2/DLC3/nest/mdlPPArhiDebrisD.fbx"; public static string mdlPPArhiDebrisE = "RoR2/DLC3/nest/mdlPPArhiDebrisE.fbx"; public static string mdlPPArhiDebrisECOL = "RoR2/DLC3/nest/mdlPPArhiDebrisE_COL.fbx"; public static string mdlPPArhiDebrisF = "RoR2/DLC3/nest/mdlPPArhiDebrisF.fbx"; public static string mdlPPBoulderB = "RoR2/DLC3/nest/mdlPPBoulderB.fbx"; public static string mdlPPBoulderBCOL = "RoR2/DLC3/nest/mdlPPBoulderB_COL.fbx"; public static string mdlPPBridgeCableA = "RoR2/DLC3/nest/mdlPPBridgeCableA.fbx"; public static string mdlPPBridgeCableB = "RoR2/DLC3/nest/mdlPPBridgeCableB.fbx"; public static string mdlPPBridgeCableC = "RoR2/DLC3/nest/mdlPPBridgeCableC.fbx"; public static string mdlPPBridgeCableD = "RoR2/DLC3/nest/mdlPPBridgeCableD.fbx"; public static string mdlPPBridgeCableDsmall = "RoR2/DLC3/nest/mdlPPBridgeCableD_small.fbx"; public static string mdlPPBridgeCableF = "RoR2/DLC3/nest/mdlPPBridgeCableF.fbx"; public static string mdlPPBridgeCableG = "RoR2/DLC3/nest/mdlPPBridgeCableG.fbx"; public static string mdlPPBridgeCableH = "RoR2/DLC3/nest/mdlPPBridgeCableH.fbx"; public static string mdlPPBridgeCableI = "RoR2/DLC3/nest/mdlPPBridgeCableI.fbx"; public static string mdlPPBridgeToggle = "RoR2/DLC3/nest/mdlPPBridgeToggle.fbx"; public static string mdlPPBrokenShipB = "RoR2/DLC3/nest/mdlPPBrokenShipB.fbx"; public static string mdlPPBrokenShipBCOL = "RoR2/DLC3/nest/mdlPPBrokenShipB_COL.fbx"; public static string mdlPPBrokenShipC = "RoR2/DLC3/nest/mdlPPBrokenShipC.fbx"; public static string mdlPPBrokenShipCcollision = "RoR2/DLC3/nest/mdlPPBrokenShipC_collision.fbx"; public static string mdlPPBrokenShipD = "RoR2/DLC3/nest/mdlPPBrokenShipD.fbx"; public static string mdlPPBrokenShipDCOL = "RoR2/DLC3/nest/mdlPPBrokenShipD_COL.fbx"; public static string mdlPPColliderBOXB = "RoR2/DLC3/nest/mdlPPColliderBOXB.fbx"; public static string mdlPPColliderBridgeA = "RoR2/DLC3/nest/mdlPPColliderBridgeA.fbx"; public static string mdlPPColliderBridgeB = "RoR2/DLC3/nest/mdlPPColliderBridgeB.fbx"; public static string mdlPPColliderBridgeC = "RoR2/DLC3/nest/mdlPPColliderBridgeC.fbx"; public static string mdlPPColliderBridgeDCliff = "RoR2/DLC3/nest/mdlPPColliderBridgeDCliff.fbx"; public static string mdlPPColliderBridgeE = "RoR2/DLC3/nest/mdlPPColliderBridgeE.fbx"; public static string mdlPPColliderBridgeWest = "RoR2/DLC3/nest/mdlPPColliderBridgeWest.fbx"; public static string mdlPPColliderRampA = "RoR2/DLC3/nest/mdlPPColliderRampA.fbx"; public static string mdlPPColliderRampB = "RoR2/DLC3/nest/mdlPPColliderRampB.fbx"; public static string mdlPPColliderSolusA = "RoR2/DLC3/nest/mdlPPColliderSolusA.fbx"; public static string mdlPPDefectiveUnit = "RoR2/DLC3/nest/mdlPPDefectiveUnit.fbx"; public static string mdlPPFeatherA = "RoR2/DLC3/nest/mdlPPFeatherA.fbx"; public static string mdlPPFeatherB = "RoR2/DLC3/nest/mdlPPFeatherB.fbx"; public static string mdlPPFeatherC = "RoR2/DLC3/nest/mdlPPFeatherC.fbx"; public static string mdlPPFogOcean = "RoR2/DLC3/nest/mdlPPFogOcean.fbx"; public static string mdlPPHumanItemsCanisterA = "RoR2/DLC3/nest/mdlPPHumanItemsCanisterA.fbx"; public static string mdlPPHumanItemsCanisterACOL = "RoR2/DLC3/nest/mdlPPHumanItemsCanisterA_COL.fbx"; public static string mdlPPHumanItemsCanisterB = "RoR2/DLC3/nest/mdlPPHumanItemsCanisterB.fbx"; public static string mdlPPHumanItemsCanisterBCol = "RoR2/DLC3/nest/mdlPPHumanItemsCanisterB_Col.fbx"; public static string mdlPPHumanItemsCrateB = "RoR2/DLC3/nest/mdlPPHumanItemsCrateB.fbx"; public static string mdlPPHumanItemsCrateC = "RoR2/DLC3/nest/mdlPPHumanItemsCrateC.fbx"; public static string mdlPPHumanItemsCrateCcollision = "RoR2/DLC3/nest/mdlPPHumanItemsCrateC_collision.fbx"; public static string mdlPPHumanItemsGeneratorA = "RoR2/DLC3/nest/mdlPPHumanItemsGeneratorA.fbx"; public static string mdlPPHumanItemsPlank = "RoR2/DLC3/nest/mdlPPHumanItemsPlank.fbx"; public static string mdlPPHumanItemsPlankCOL = "RoR2/DLC3/nest/mdlPPHumanItemsPlank_COL.fbx"; public static string mdlPPInvisibleCollider = "RoR2/DLC3/nest/mdlPPInvisibleCollider.fbx"; public static string mdlPPMegaConstruct = "RoR2/DLC3/nest/mdlPPMegaConstruct.fbx"; public static string mdlPPOOBA = "RoR2/DLC3/nest/mdlPPOOBA.fbx"; public static string mdlPPRescueShip = "RoR2/DLC3/nest/mdlPPRescueShip.fbx"; public static string mdlPPRescueShipCollision = "RoR2/DLC3/nest/mdlPPRescueShipCollision.fbx"; public static string mdlPPRockPillarA = "RoR2/DLC3/nest/mdlPPRockPillarA.fbx"; public static string mdlPPRockPillarB = "RoR2/DLC3/nest/mdlPPRockPillarB.fbx"; public static string mdlPPSnowballA = "RoR2/DLC3/nest/mdlPPSnowballA.fbx"; public static string mdlPPSolusBallMini = "RoR2/DLC3/nest/mdlPPSolusBallMini.fbx"; public static string mdlPPSolusCore = "RoR2/DLC3/nest/mdlPPSolusCore.fbx"; public static string mdlPPSolusDebrisA = "RoR2/DLC3/nest/mdlPPSolusDebrisA.fbx"; public static string mdlPPSolusDebrisACOL = "RoR2/DLC3/nest/mdlPPSolusDebrisA_COL.fbx"; public static string mdlPPSolusDebrisB = "RoR2/DLC3/nest/mdlPPSolusDebrisB.fbx"; public static string mdlPPSolusDebrisBCOL = "RoR2/DLC3/nest/mdlPPSolusDebrisB_COL.fbx"; public static string mdlPPSolusDebrisC = "RoR2/DLC3/nest/mdlPPSolusDebrisC.fbx"; public static string mdlPPSolusDebrisCCOL = "RoR2/DLC3/nest/mdlPPSolusDebrisC_COL.fbx"; public static string mdlPPSolusDebrisD = "RoR2/DLC3/nest/mdlPPSolusDebrisD.fbx"; public static string mdlPPSolusDebrisDCOL = "RoR2/DLC3/nest/mdlPPSolusDebrisD_COL.fbx"; public static string mdlPPSolusDebrisE = "RoR2/DLC3/nest/mdlPPSolusDebrisE.fbx"; public static string mdlPPSolusDebrisECOL = "RoR2/DLC3/nest/mdlPPSolusDebrisE_COL.fbx"; public static string mdlPPSolusDebrisF = "RoR2/DLC3/nest/mdlPPSolusDebrisF.fbx"; public static string mdlPPSolusDebrisFCOL = "RoR2/DLC3/nest/mdlPPSolusDebrisF_COL.fbx"; public static string mdlPPSolusFloorB = "RoR2/DLC3/nest/mdlPPSolusFloorB.fbx"; public static string mdlPPSolusNest = "RoR2/DLC3/nest/mdlPPSolusNest.fbx"; public static string mdlPPSolusSphereA = "RoR2/DLC3/nest/mdlPPSolusSphereA.fbx"; public static string mdlPPSolusSphereB = "RoR2/DLC3/nest/mdlPPSolusSphereB.fbx"; public static string mdlPPSolusSphereC = "RoR2/DLC3/nest/mdlPPSolusSphereC.fbx"; public static string mdlPPSolusSphereD = "RoR2/DLC3/nest/mdlPPSolusSphereD.fbx"; public static string mdlPPSolusSphereE = "RoR2/DLC3/nest/mdlPPSolusSphereE.fbx"; public static string mdlPPSolusSphereF = "RoR2/DLC3/nest/mdlPPSolusSphereF.fbx"; public static string mdlPPSolusSphereG = "RoR2/DLC3/nest/mdlPPSolusSphereG.fbx"; public static string mdlPPSolusSphereH = "RoR2/DLC3/nest/mdlPPSolusSphereH.fbx"; public static string mdlPPSolusSphereI = "RoR2/DLC3/nest/mdlPPSolusSphereI.fbx"; public static string mdlPPSolusSphereJ = "RoR2/DLC3/nest/mdlPPSolusSphereJ.fbx"; public static string mdlPPSpikeA = "RoR2/DLC3/nest/mdlPPSpikeA.fbx"; public static string mdlPPSpikeADistant = "RoR2/DLC3/nest/mdlPPSpikeADistant.fbx"; public static string mdlPPSpikeB = "RoR2/DLC3/nest/mdlPPSpikeB.fbx"; public static string mdlPPSpikeBeak = "RoR2/DLC3/nest/mdlPPSpikeBeak.fbx"; public static string mdlPPSpikeBrokenTip = "RoR2/DLC3/nest/mdlPPSpikeBrokenTip.fbx"; public static string mdlPPTerrainA = "RoR2/DLC3/nest/mdlPPTerrainA.fbx"; public static string mdlPPTerrainAShadowCaster = "RoR2/DLC3/nest/mdlPPTerrainA_ShadowCaster.fbx"; public static string mdlPPTerrainAWater = "RoR2/DLC3/nest/mdlPPTerrainAWater.fbx"; public static string mdlPPTerrainHiddenCave = "RoR2/DLC3/nest/mdlPPTerrainHiddenCave.fbx"; public static string mdlPPTerrainSouthBrokenSpike = "RoR2/DLC3/nest/mdlPPTerrainSouthBrokenSpike.fbx"; public static string mdlPPTerrainSouthPlatformToggleB = "RoR2/DLC3/nest/mdlPPTerrainSouthPlatformToggleB.fbx"; public static string mdlPPTerrainTGSouth = "RoR2/DLC3/nest/mdlPPTerrainTGSouth.fbx"; public static string mdlPPTerrainWater = "RoR2/DLC3/nest/mdlPPTerrainWater.fbx"; public static string mdlPPTreeA = "RoR2/DLC3/nest/mdlPPTreeA.fbx"; public static string mdlPPTreeB = "RoR2/DLC3/nest/mdlPPTreeB.fbx"; public static string mdlPPTreeBranchA = "RoR2/DLC3/nest/mdlPPTreeBranchA.fbx"; public static string mdlPPTreeBranchB = "RoR2/DLC3/nest/mdlPPTreeBranchB.fbx"; public static string mdlPPTreeBranchC = "RoR2/DLC3/nest/mdlPPTreeBranchC.fbx"; public static string mdlPPWallCliffA = "RoR2/DLC3/nest/mdlPPWallCliffA.fbx"; public static string mdlPPWaterfallA = "RoR2/DLC3/nest/mdlPPWaterfallA.fbx"; public static string mdlPPWaterfallB = "RoR2/DLC3/nest/mdlPPWaterfallB.fbx"; public static string mdlPPWaterfallC = "RoR2/DLC3/nest/mdlPPWaterfallC.fbx"; public static string mdlPPWaterfallD = "RoR2/DLC3/nest/mdlPPWaterfallD.fbx"; public static string mdlPPWaterfallE = "RoR2/DLC3/nest/mdlPPWaterfallE.fbx"; public static string mdlPPWaterfallSpikeB = "RoR2/DLC3/nest/mdlPPWaterfallSpikeB.fbx"; public static string mdlPPWaterfallSpikeC = "RoR2/DLC3/nest/mdlPPWaterfallSpikeC.fbx"; public static string PPBridgeCableK = "RoR2/DLC3/nest/PPBridgeCableK.fbx"; public static string FWLight4 = "RoR2/DLC3/nest/FW_Light4.prefab"; public static string MegaConstructEyeMesh = "RoR2/DLC3/nest/MegaConstructEyeMesh.prefab"; public static string NestFoliage0124 = "RoR2/DLC3/nest/Nest_Foliage01.prefab"; public static string NestFoliage024 = "RoR2/DLC3/nest/Nest_Foliage02.prefab"; public static string NestFoliage033 = "RoR2/DLC3/nest/Nest_Foliage03.prefab"; public static string NestFoliage0418 = "RoR2/DLC3/nest/Nest_Foliage04.prefab"; public static string NestFoliage0517 = "RoR2/DLC3/nest/Nest_Foliage05.prefab"; public static string Nestvine0119 = "RoR2/DLC3/nest/Nest_vine01.prefab"; public static string NestBranch01 = "RoR2/DLC3/nest/NestBranch01.prefab"; public static string NestBranch01opt = "RoR2/DLC3/nest/NestBranch01_opt.prefab"; public static string NestBranch02 = "RoR2/DLC3/nest/NestBranch02.prefab"; public static string NestBranch02opt = "RoR2/DLC3/nest/NestBranch02_opt.prefab"; public static string NestBranch03 = "RoR2/DLC3/nest/NestBranch03.prefab"; public static string NestBranch03opt = "RoR2/DLC3/nest/NestBranch03_opt.prefab"; public static string NestBranch03B = "RoR2/DLC3/nest/NestBranch03B.prefab"; public static string NestBranch03Bopt = "RoR2/DLC3/nest/NestBranch03B_opt.prefab"; public static string NestBranchSnow = "RoR2/DLC3/nest/NestBranchSnow.prefab"; public static string NestRoot0111 = "RoR2/DLC3/nest/NestRoot01.prefab"; public static string NestRoot024 = "RoR2/DLC3/nest/NestRoot02.prefab"; public static string NestRoot0327 = "RoR2/DLC3/nest/NestRoot03.prefab"; public static string PPBoulderB = "RoR2/DLC3/nest/PPBoulderB.prefab"; public static string PPBoulderBopt = "RoR2/DLC3/nest/PPBoulderB_opt.prefab"; public static string PPBridgeCableA = "RoR2/DLC3/nest/PPBridgeCableA.prefab"; public static string PPBridgeCableB = "RoR2/DLC3/nest/PPBridgeCableB.prefab"; public static string PPBridgeCableC = "RoR2/DLC3/nest/PPBridgeCableC.prefab"; public static string PPBridgeCableD = "RoR2/DLC3/nest/PPBridgeCableD.prefab"; public static string PPBridgeCableF = "RoR2/DLC3/nest/PPBridgeCableF.prefab"; public static string PPBridgeCableG = "RoR2/DLC3/nest/PPBridgeCableG.prefab"; public static string PPBridgeCableH = "RoR2/DLC3/nest/PPBridgeCableH.prefab"; public static string PPBridgeCablei = "RoR2/DLC3/nest/PPBridgeCablei.prefab"; public static string PPBridgeCableK2 = "RoR2/DLC3/nest/PPBridgeCableK.prefab"; public static string PPBridgeToggle = "RoR2/DLC3/nest/PPBridgeToggle.prefab"; public static string PPBrokenShipB = "RoR2/DLC3/nest/PPBrokenShipB.prefab"; public static string PPBrokenShipC = "RoR2/DLC3/nest/PPBrokenShipC.prefab"; public static string PPBrokenShipD = "RoR2/DLC3/nest/PPBrokenShipD.prefab"; public static string PPColliderBOXB = "RoR2/DLC3/nest/PPColliderBOXB.prefab"; public static string PPColliderBridgeA = "RoR2/DLC3/nest/PPColliderBridgeA.prefab"; public static string PPColliderBridgeB = "RoR2/DLC3/nest/PPColliderBridgeB.prefab"; public static string PPColliderBridgeC = "RoR2/DLC3/nest/PPColliderBridgeC.prefab"; public static string PPColliderBridgeD = "RoR2/DLC3/nest/PPColliderBridgeD.prefab"; public static string PPColliderBridgeE = "RoR2/DLC3/nest/PPColliderBridgeE.prefab"; public static string PPColliderBridgeWest = "RoR2/DLC3/nest/PPColliderBridgeWest.prefab"; public static string PPColliderCube = "RoR2/DLC3/nest/PPColliderCube.prefab"; public static string PPColliderRampA = "RoR2/DLC3/nest/PPColliderRampA.prefab"; public static string PPColliderRampB = "RoR2/DLC3/nest/PPColliderRampB.prefab"; public static string PPColliderSolusA = "RoR2/DLC3/nest/PPColliderSolusA.prefab"; public static string PPDecalSnowBig = "RoR2/DLC3/nest/PPDecalSnowBig.prefab"; public static string PPDefectiveUnit = "RoR2/DLC3/nest/PPDefectiveUnit.prefab"; public static string PPFeatherA = "RoR2/DLC3/nest/PPFeatherA.prefab"; public static string PPFeatherB = "RoR2/DLC3/nest/PPFeatherB.prefab"; public static string PPFeatherC = "RoR2/DLC3/nest/PPFeatherC.prefab"; public static string PPFogOcean = "RoR2/DLC3/nest/PPFogOcean.prefab"; public static string PPHumanItemsCanisterA = "RoR2/DLC3/nest/PPHumanItemsCanisterA.prefab"; public static string PPHumanItemsCanisterAopt = "RoR2/DLC3/nest/PPHumanItemsCanisterA_opt.prefab"; public static string PPHumanItemsCanisterB = "RoR2/DLC3/nest/PPHumanItemsCanisterB.prefab"; public static string PPHumanItemsCanisterBopt = "RoR2/DLC3/nest/PPHumanItemsCanisterB_opt.prefab"; public static string PPHumanItemsCrateB = "RoR2/DLC3/nest/PPHumanItemsCrateB.prefab"; public static string PPHumanItemsCrateBopt = "RoR2/DLC3/nest/PPHumanItemsCrateB_opt.prefab"; public static string PPHumanItemsCrateC = "RoR2/DLC3/nest/PPHumanItemsCrateC.prefab"; public static string PPHumanItemsCrateCopt = "RoR2/DLC3/nest/PPHumanItemsCrateC_opt.prefab"; public static string PPHumanItemsGeneratorA = "RoR2/DLC3/nest/PPHumanItemsGeneratorA.prefab"; public static string PPHumanItemsGeneratorAopt = "RoR2/DLC3/nest/PPHumanItemsGeneratorA_opt.prefab"; public static string PPHumanItemsPlank = "RoR2/DLC3/nest/PPHumanItemsPlank.prefab"; public static string PPHumanItemsPlankopt = "RoR2/DLC3/nest/PPHumanItemsPlank_opt.prefab"; public static string PPInvisibleColliderA = "RoR2/DLC3/nest/PPInvisibleColliderA.prefab"; public static string PPMegaConstruct = "RoR2/DLC3/nest/PPMegaConstruct.prefab"; public static string PPOOBA = "RoR2/DLC3/nest/PPOOBA.prefab"; public static string PPRescueShip = "RoR2/DLC3/nest/PPRescueShip.prefab"; public static string PPRockPillarA = "RoR2/DLC3/nest/PPRockPillarA.prefab"; public static string PPRockPillarB = "RoR2/DLC3/nest/PPRockPillarB.prefab"; public static string PPShadowCaster = "RoR2/DLC3/nest/PPShadowCaster.prefab"; public static string PPShipDebrisA = "RoR2/DLC3/nest/PPShipDebrisA.prefab"; public static string PPShipDebrisB = "RoR2/DLC3/nest/PPShipDebrisB.prefab"; public static string PPShipDebrisC = "RoR2/DLC3/nest/PPShipDebrisC.prefab"; public static string PPShipDebrisD = "RoR2/DLC3/nest/PPShipDebrisD.prefab"; public static string PPShipDebrisE = "RoR2/DLC3/nest/PPShipDebrisE.prefab"; public static string PPShipDebrisF = "RoR2/DLC3/nest/PPShipDebrisF.prefab"; public static string PPSnowballA = "RoR2/DLC3/nest/PPSnowballA.prefab"; public static string PPSnowballAopt = "RoR2/DLC3/nest/PPSnowballA_opt.prefab"; public static string PPSolusBallMini = "RoR2/DLC3/nest/PPSolusBallMini.prefab"; public static string PPSolusBallMiniopt = "RoR2/DLC3/nest/PPSolusBallMini_opt.prefab"; public static string PPSolusCore = "RoR2/DLC3/nest/PPSolusCore.prefab"; public static string PPSolusDebrisA = "RoR2/DLC3/nest/PPSolusDebrisA.prefab"; public static string PPSolusDebrisB = "RoR2/DLC3/nest/PPSolusDebrisB.prefab"; public static string PPSolusDebrisC = "RoR2/DLC3/nest/PPSolusDebrisC.prefab"; public static string PPSolusDebrisD = "RoR2/DLC3/nest/PPSolusDebrisD.prefab"; public static string PPSolusDebrisE = "RoR2/DLC3/nest/PPSolusDebrisE.prefab"; public static string PPSolusDebrisF = "RoR2/DLC3/nest/PPSolusDebrisF.prefab"; public static string PPSolusFloorB = "RoR2/DLC3/nest/PPSolusFloorB.prefab"; public static string PPSolusNestA = "RoR2/DLC3/nest/PPSolusNestA.prefab"; public static string PPSolusSphereA = "RoR2/DLC3/nest/PPSolusSphereA.prefab"; public static string PPSolusSphereAopt = "RoR2/DLC3/nest/PPSolusSphereA_opt.prefab"; public static string PPSolusSphereB = "RoR2/DLC3/nest/PPSolusSphereB.prefab"; public static string PPSolusSphereBopt = "RoR2/DLC3/nest/PPSolusSphereB_opt.prefab"; public static string PPSolusSphereC = "RoR2/DLC3/nest/PPSolusSphereC.prefab"; public static string PPSolusSphereCopt = "RoR2/DLC3/nest/PPSolusSphereC_opt.prefab"; public static string PPSolusSphereD = "RoR2/DLC3/nest/PPSolusSphereD.prefab"; public static string PPSolusSphereDopt = "RoR2/DLC3/nest/PPSolusSphereD_opt.prefab"; public static string PPSolusSphereE = "RoR2/DLC3/nest/PPSolusSphereE.prefab"; public static string PPSolusSphereEopt = "RoR2/DLC3/nest/PPSolusSphereE_opt.prefab"; public static string PPSolusSphereF = "RoR2/DLC3/nest/PPSolusSphereF.prefab"; public static string PPSolusSphereFopt = "RoR2/DLC3/nest/PPSolusSphereF_opt.prefab"; public static string PPSolusSphereG = "RoR2/DLC3/nest/PPSolusSphereG.prefab"; public static string PPSolusSphereGopt = "RoR2/DLC3/nest/PPSolusSphereG_opt.prefab"; public static string PPSolusSphereH = "RoR2/DLC3/nest/PPSolusSphereH.prefab"; public static string PPSolusSphereHopt = "RoR2/DLC3/nest/PPSolusSphereH_opt.prefab"; public static string PPSolusSphereI = "RoR2/DLC3/nest/PPSolusSphereI.prefab"; public static string PPSolusSphereIopt = "RoR2/DLC3/nest/PPSolusSphereI_opt.prefab"; public static string PPSolusSphereJ = "RoR2/DLC3/nest/PPSolusSphereJ.prefab"; public static string PPSolusSphereJopt = "RoR2/DLC3/nest/PPSolusSphereJ_opt.prefab"; public static string PPSpikeA = "RoR2/DLC3/nest/PPSpikeA.prefab"; public static string PPSpikeAopt = "RoR2/DLC3/nest/PPSpikeA_opt.prefab"; public static string PPSpikeADistant = "RoR2/DLC3/nest/PPSpikeADistant.prefab"; public static string PPSpikeADistantopt = "RoR2/DLC3/nest/PPSpikeADistant_opt.prefab"; public static string PPSpikeB = "RoR2/DLC3/nest/PPSpikeB.prefab"; public static string PPSpikeBopt = "RoR2/DLC3/nest/PPSpikeB_opt.prefab"; public static string PPSpikeBrokenTip = "RoR2/DLC3/nest/PPSpikeBrokenTip.prefab"; public static string PPSpikePeak = "RoR2/DLC3/nest/PPSpikePeak.prefab"; public static string PPTerrainA = "RoR2/DLC3/nest/PPTerrainA.prefab"; public static string PPTerrainAWater = "RoR2/DLC3/nest/PPTerrainAWater.prefab"; public static string PPTerrainAWateropt = "RoR2/DLC3/nest/PPTerrainAWater_opt.prefab"; public static string PPTerrainHiddenCave = "RoR2/DLC3/nest/PPTerrainHiddenCave.prefab"; public static string PPTerrainSouthBrokenSpike = "RoR2/DLC3/nest/PPTerrainSouthBrokenSpike.prefab"; public static string PPTerrainSouthPlatformToggleB = "RoR2/DLC3/nest/PPTerrainSouthPlatformToggleB.prefab"; public static string PPTerrainTGSouth = "RoR2/DLC3/nest/PPTerrainTGSouth.prefab"; public static string PPTerrainWallA = "RoR2/DLC3/nest/PPTerrainWallA.prefab"; public static string PPTerrainWater = "RoR2/DLC3/nest/PPTerrainWater.prefab"; public static string PPTreeA = "RoR2/DLC3/nest/PPTreeA.prefab"; public static string PPTreeB = "RoR2/DLC3/nest/PPTreeB.prefab"; public static string PPTreeBranchA = "RoR2/DLC3/nest/PPTreeBranchA.prefab"; public static string PPTreeBranchB = "RoR2/DLC3/nest/PPTreeBranchB.prefab"; public static string PPTreeBranchC = "RoR2/DLC3/nest/PPTreeBranchC.prefab"; public static string PPWaterfallA = "RoR2/DLC3/nest/PPWaterfallA.prefab"; public static string PPWaterfallB = "RoR2/DLC3/nest/PPWaterfallB.prefab"; public static string PPWaterfallC = "RoR2/DLC3/nest/PPWaterfallC.prefab"; public static string PPWaterfallD = "RoR2/DLC3/nest/PPWaterfallD.prefab"; public static string PPWaterfallE = "RoR2/DLC3/nest/PPWaterfallE.prefab"; public static string PPWaterfallSpikeB = "RoR2/DLC3/nest/PPWaterfallSpikeB.prefab"; public static string PPWaterfallSpikeC = "RoR2/DLC3/nest/PPWaterfallSpikeC.prefab"; public static string mdlNestDioTerrain = "RoR2/DLC3/nest/mdlNestDioTerrain.fbx"; public static string mdlPPDioramaIce = "RoR2/DLC3/nest/mdlPPDioramaIce.fbx"; public static string nestPOIManager = "RoR2/DLC3/nest/nest_POIManager.prefab"; public static string NestDioramaDisplay = "RoR2/DLC3/nest/NestDioramaDisplay.prefab"; public static string WeatherNest = "RoR2/DLC3/nest/Weather, Nest.prefab"; public static string mdlRCAloe01 = "RoR2/DLC3/repurposedcrater/mdlRCAloe01.fbx"; public static string mdlRCAloe01Collision = "RoR2/DLC3/repurposedcrater/mdlRCAloe01Collision.fbx"; public static string mdlRCAntenna = "RoR2/DLC3/repurposedcrater/mdlRCAntenna.fbx"; public static string mdlRCArrayDish = "RoR2/DLC3/repurposedcrater/mdlRCArrayDish.fbx"; public static string mdlRCBuilding01 = "RoR2/DLC3/repurposedcrater/mdlRCBuilding01.fbx"; public static string mdlRCCableConnector = "RoR2/DLC3/repurposedcrater/mdlRCCableConnector.fbx"; public static string mdlRCCables = "RoR2/DLC3/repurposedcrater/mdlRCCables.fbx"; public static string mdlRCCenterPlatform = "RoR2/DLC3/repurposedcrater/mdlRCCenterPlatform.fbx"; public static string mdlRCConcreteBarrier = "RoR2/DLC3/repurposedcrater/mdlRCConcreteBarrier.fbx"; public static string mdlRCConcreteBlocks = "RoR2/DLC3/repurposedcrater/mdlRCConcreteBlocks.fbx"; public static string mdlRCConcreteBridge = "RoR2/DLC3/repurposedcrater/mdlRCConcreteBridge.fbx"; public static string mdlRCConcreteDecor = "RoR2/DLC3/repurposedcrater/mdlRCConcreteDecor.fbx"; public static string mdlRCConcretePillars = "RoR2/DLC3/repurposedcrater/mdlRCConcretePillars.fbx"; public static string mdlRCConcretePlatforms = "RoR2/DLC3/repurposedcrater/mdlRCConcretePlatforms.fbx"; public static string mdlRCConcreteSlopeBlock = "RoR2/DLC3/repurposedcrater/mdlRCConcreteSlopeBlock.fbx"; public static string mdlRCConcreteTowers = "RoR2/DLC3/repurposedcrater/mdlRCConcreteTowers.fbx"; public static string mdlRCConcreteWalkway = "RoR2/DLC3/repurposedcrater/mdlRCConcreteWalkway.fbx"; public static string mdlRCConcreteWall = "RoR2/DLC3/repurposedcrater/mdlRCConcreteWall.fbx"; public static string mdlRCEmissiveBlock = "RoR2/DLC3/repurposedcrater/mdlRCEmissiveBlock.fbx"; public static string mdlRCFloatingPlatform = "RoR2/DLC3/repurposedcrater/mdlRCFloatingPlatform.fbx"; public static string mdlRCFloatingPlatformCollisionFix = "RoR2/DLC3/repurposedcrater/mdlRCFloatingPlatform_CollisionFix.fbx"; public static string mdlRCGrass01 = "RoR2/DLC3/repurposedcrater/mdlRCGrass01.fbx"; public static string mdlRCGrass02 = "RoR2/DLC3/repurposedcrater/mdlRCGrass02.fbx"; public static string mdlRCGrass03 = "RoR2/DLC3/repurposedcrater/mdlRCGrass03.fbx"; public static string mdlRCGrates = "RoR2/DLC3/repurposedcrater/mdlRCGrates.fbx"; public static string mdlRCLandscape01 = "RoR2/DLC3/repurposedcrater/mdlRCLandscape01.fbx"; public static string mdlRCLargeCables = "RoR2/DLC3/repurposedcrater/mdlRCLargeCables.fbx"; public static string mdlRCLargeCableSand = "RoR2/DLC3/repurposedcrater/mdlRCLargeCableSand.fbx"; public static string mdlRCLargeDoor = "RoR2/DLC3/repurposedcrater/mdlRCLargeDoor.fbx"; public static string mdlRCLillyPad01 = "RoR2/DLC3/repurposedcrater/mdlRCLillyPad01.fbx"; public static string mdlRCLillyPad02 = "RoR2/DLC3/repurposedcrater/mdlRCLillyPad02.fbx"; public static string mdlRCLillyPad03 = "RoR2/DLC3/repurposedcrater/mdlRCLillyPad03.fbx"; public static string mdlRCLillyPad04 = "RoR2/DLC3/repurposedcrater/mdlRCLillyPad04.fbx"; public static string mdlRCLillyPad05 = "RoR2/DLC3/repurposedcrater/mdlRCLillyPad05.fbx"; public static string mdlRCLillyPad06 = "RoR2/DLC3/repurposedcrater/mdlRCLillyPad06.fbx"; public static string mdlRCMetalDecor = "RoR2/DLC3/repurposedcrater/mdlRCMetalDecor.fbx"; public static string mdlRCPalmTree01 = "RoR2/DLC3/repurposedcrater/mdlRCPalmTree01.fbx"; public static string mdlRCPalmTree01Collision = "RoR2/DLC3/repurposedcrater/mdlRCPalmTree01Collision.fbx"; public static string mdlRCPalmTree02 = "RoR2/DLC3/repurposedcrater/mdlRCPalmTree02.fbx"; public static string mdlRCPalmTree02Collision = "RoR2/DLC3/repurposedcrater/mdlRCPalmTree02Collision.fbx"; public static string mdlRCPalmTree03 = "RoR2/DLC3/repurposedcrater/mdlRCPalmTree03.fbx"; public static string mdlRCPipe = "RoR2/DLC3/repurposedcrater/mdlRCPipe.fbx"; public static string mdlRCPlant01 = "RoR2/DLC3/repurposedcrater/mdlRCPlant01.fbx"; public static string mdlRCPlant02 = "RoR2/DLC3/repurposedcrater/mdlRCPlant02.fbx"; public static string mdlRCPlanter01 = "RoR2/DLC3/repurposedcrater/mdlRCPlanter01.fbx"; public static string mdlRCPlanter01Collision = "RoR2/DLC3/repurposedcrater/mdlRCPlanter01Collision.fbx"; public static string mdlRCPlanter02 = "RoR2/DLC3/repurposedcrater/mdlRCPlanter02.fbx"; public static string mdlRCPlanterPlatform = "RoR2/DLC3/repurposedcrater/mdlRCPlanterPlatform.fbx"; public static string mdlRCSandPilePlatform = "RoR2/DLC3/repurposedcrater/mdlRCSandPilePlatform.fbx"; public static string mdlRCSandPiles = "RoR2/DLC3/repurposedcrater/mdlRCSandPiles.fbx"; public static string mdlRCSnakePlant01 = "RoR2/DLC3/repurposedcrater/mdlRCSnakePlant01.fbx"; public static string mdlRCSnakePlant02 = "RoR2/DLC3/repurposedcrater/mdlRCSnakePlant02.fbx"; public static string mdlRCSnakePlant03 = "RoR2/DLC3/repurposedcrater/mdlRCSnakePlant03.fbx"; public static string mdlRCSolarArray = "RoR2/DLC3/repurposedcrater/mdlRCSolarArray.fbx"; public static string mdlRCSupportPillars = "RoR2/DLC3/repurposedcrater/mdlRCSupportPillars.fbx"; public static string mdlRCTechCube = "RoR2/DLC3/repurposedcrater/mdlRCTechCube.fbx"; public static string mdlRCTerrace01 = "RoR2/DLC3/repurposedcrater/mdlRCTerrace01.fbx"; public static string mdlRCTerrace02 = "RoR2/DLC3/repurposedcrater/mdlRCTerrace02.fbx"; public static string mdlRCTerrace03 = "RoR2/DLC3/repurposedcrater/mdlRCTerrace03.fbx"; public static string mdlRCTerraceWater01 = "RoR2/DLC3/repurposedcrater/mdlRCTerraceWater01.fbx"; public static string mdlRCTerraceWater02 = "RoR2/DLC3/repurposedcrater/mdlRCTerraceWater02.fbx"; public static string mdlRCTerraceWater03 = "RoR2/DLC3/repurposedcrater/mdlRCTerraceWater03.fbx"; public static string mdlRCTerrarium01 = "RoR2/DLC3/repurposedcrater/mdlRCTerrarium01.fbx"; public static string mdlRCTerrarium01LOD1 = "RoR2/DLC3/repurposedcrater/mdlRCTerrarium01_LOD1.fbx"; public static string mdlRCVFXRings = "RoR2/DLC3/repurposedcrater/mdlRCVFXRings.fbx"; public static string mdlRCWater = "RoR2/DLC3/repurposedcrater/mdlRCWater.fbx"; public static string mdlRCWaterfalls = "RoR2/DLC3/repurposedcrater/mdlRCWaterfalls.fbx"; public static string mdlRCWaterPipesLarge = "RoR2/DLC3/repurposedcrater/mdlRCWaterPipesLarge.fbx"; public static string mdlRCWaterPipesSmall = "RoR2/DLC3/repurposedcrater/mdlRCWaterPipesSmall.fbx"; public static string RCArrayDishMerged = "RoR2/DLC3/repurposedcrater/RCArrayDish_Merged.fbx"; public static string GROUPGoldChest = "RoR2/DLC3/repurposedcrater/GROUP_ GoldChest.prefab"; public static string RCAirPlant01 = "RoR2/DLC3/repurposedcrater/RCAirPlant01.prefab"; public static string RCAirPlant01opt = "RoR2/DLC3/repurposedcrater/RCAirPlant01_opt.prefab"; public static string RCAirPlant02 = "RoR2/DLC3/repurposedcrater/RCAirPlant02.prefab"; public static string RCAirPlant02opt = "RoR2/DLC3/repurposedcrater/RCAirPlant02_opt.prefab"; public static string RCAloe01 = "RoR2/DLC3/repurposedcrater/RCAloe01.prefab"; public static string RCAntenna = "RoR2/DLC3/repurposedcrater/RCAntenna.prefab"; public static string RCArrayDish = "RoR2/DLC3/repurposedcrater/RCArrayDish.prefab"; public static string RCArrayDishMerged28 = "RoR2/DLC3/repurposedcrater/RCArrayDish_Merged.prefab"; public static string RCArrayDishopt = "RoR2/DLC3/repurposedcrater/RCArrayDish_opt.prefab"; public static string RCArrayDishWater = "RoR2/DLC3/repurposedcrater/RCArrayDishWater.prefab"; public static string RCBuilding01 = "RoR2/DLC3/repurposedcrater/RCBuilding01.prefab"; public static string RCBuilding01opt = "RoR2/DLC3/repurposedcrater/RCBuilding01_opt.prefab"; public static string RCBuildingSet1 = "RoR2/DLC3/repurposedcrater/RCBuildingSet1.prefab"; public static string RCBuildingSet2 = "RoR2/DLC3/repurposedcrater/RCBuildingSet2.prefab"; public static string RCCableConnector = "RoR2/DLC3/repurposedcrater/RCCableConnector.prefab"; public static string RCCableConnectoropt = "RoR2/DLC3/repurposedcrater/RCCableConnector_opt.prefab"; public static string RCCenterPlatform = "RoR2/DLC3/repurposedcrater/RCCenterPlatform.prefab"; public static string RCCenterPlatformopt = "RoR2/DLC3/repurposedcrater/RCCenterPlatform_opt.prefab"; public static string RCConcreteBarrier = "RoR2/DLC3/repurposedcrater/RCConcreteBarrier.prefab"; public static string RCConcreteBarrieropt = "RoR2/DLC3/repurposedcrater/RCConcreteBarrier_opt.prefab"; public static string RCConcreteBlock01 = "RoR2/DLC3/repurposedcrater/RCConcreteBlock01.prefab"; public static string RCConcreteBlock01opt = "RoR2/DLC3/repurposedcrater/RCConcreteBlock01_opt.prefab"; public static string RCConcreteBlock02 = "RoR2/DLC3/repurposedcrater/RCConcreteBlock02.prefab"; public static string RCConcreteBlock02opt = "RoR2/DLC3/repurposedcrater/RCConcreteBlock02_opt.prefab"; public static string RCConcreteBlock03 = "RoR2/DLC3/repurposedcrater/RCConcreteBlock03.prefab"; public static string RCConcreteBlock03opt = "RoR2/DLC3/repurposedcrater/RCConcreteBlock03_opt.prefab"; public static string RCConcreteBlock04 = "RoR2/DLC3/repurposedcrater/RCConcreteBlock04.prefab"; public static string RCConcreteBlock04opt = "RoR2/DLC3/repurposedcrater/RCConcreteBlock04_opt.prefab"; public static string RCConcreteBlock05 = "RoR2/DLC3/repurposedcrater/RCConcreteBlock05.prefab"; public static string RCConcreteBlock05opt = "RoR2/DLC3/repurposedcrater/RCConcreteBlock05_opt.prefab"; public static string RCConcreteBlock06 = "RoR2/DLC3/repurposedcrater/RCConcreteBlock06.prefab"; public static string RCConcreteBlock06opt = "RoR2/DLC3/repurposedcrater/RCConcreteBlock06_opt.prefab"; public static string RCConcreteBlock07 = "RoR2/DLC3/repurposedcrater/RCConcreteBlock07.prefab"; public static string RCConcreteBlock07opt = "RoR2/DLC3/repurposedcrater/RCConcreteBlock07_opt.prefab"; public static string RCConcreteBlock08 = "RoR2/DLC3/repurposedcrater/RCConcreteBlock08.prefab"; public static string RCConcreteBlock08opt = "RoR2/DLC3/repurposedcrater/RCConcreteBlock08_opt.prefab"; public static string RCConcreteBridge = "RoR2/DLC3/repurposedcrater/RCConcreteBridge.prefab"; public static string RCConcreteDecor02 = "RoR2/DLC3/repurposedcrater/RCConcreteDecor02.prefab"; public static string RCConcreteDecor02opt = "RoR2/DLC3/repurposedcrater/RCConcreteDecor02_opt.prefab"; public static string RCConcreteDecor03 = "RoR2/DLC3/repurposedcrater/RCConcreteDecor03.prefab"; public static string RCConcreteDecor03opt = "RoR2/DLC3/repurposedcrater/RCConcreteDecor03_opt.prefab"; public static string RCConcreteDecor05 = "RoR2/DLC3/repurposedcrater/RCConcreteDecor05.prefab"; public static string RCConcreteDecor05opt = "RoR2/DLC3/repurposedcrater/RCConcreteDecor05_opt.prefab"; public static string RCConcretePillar01 = "RoR2/DLC3/repurposedcrater/RCConcretePillar01.prefab"; public static string RCConcretePillar01opt = "RoR2/DLC3/repurposedcrater/RCConcretePillar01_opt.prefab"; public static string RCConcretePillar02 = "RoR2/DLC3/repurposedcrater/RCConcretePillar02.prefab"; public static string RCConcretePillar02opt = "RoR2/DLC3/repurposedcrater/RCConcretePillar02_opt.prefab"; public static string RCConcretePlatform02 = "RoR2/DLC3/repurposedcrater/RCConcretePlatform02.prefab"; public static string RCConcretePlatform02opt = "RoR2/DLC3/repurposedcrater/RCConcretePlatform02_opt.prefab"; public static string RCConcreteSlopedBlock = "RoR2/DLC3/repurposedcrater/RCConcreteSlopedBlock.prefab"; public static string RCConcreteSlopedBlockopt = "RoR2/DLC3/repurposedcrater/RCConcreteSlopedBlock_opt.prefab"; public static string RCConcreteTower01a = "RoR2/DLC3/repurposedcrater/RCConcreteTower01a.prefab"; public static string RCConcreteTower01aopt = "RoR2/DLC3/repurposedcrater/RCConcreteTower01a_opt.prefab"; public static string RCConcreteTower01b = "RoR2/DLC3/repurposedcrater/RCConcreteTower01b.prefab"; public static string RCConcreteWalkway = "RoR2/DLC3/repurposedcrater/RCConcreteWalkway.prefab"; public static string RCConcreteWalkwayopt = "RoR2/DLC3/repurposedcrater/RCConcreteWalkway_opt.prefab"; public static string RCConcreteWalkwayRamp = "RoR2/DLC3/repurposedcrater/RCConcreteWalkwayRamp.prefab"; public static string RCConcreteWalkwayRampopt = "RoR2/DLC3/repurposedcrater/RCConcreteWalkwayRamp_opt.prefab"; public static string RCConcreteWalkwaySupport = "RoR2/DLC3/repurposedcrater/RCConcreteWalkwaySupport.prefab"; public static string RCConcreteWalkwaySupportopt = "RoR2/DLC3/repurposedcrater/RCConcreteWalkwaySupport_opt.prefab"; public static string RCConcreteWall = "RoR2/DLC3/repurposedcrater/RCConcreteWall.prefab"; public static string RCDish = "RoR2/DLC3/repurposedcrater/RCDish.prefab"; public static string RCEmissiveBlock = "RoR2/DLC3/repurposedcrater/RCEmissiveBlock.prefab"; public static string RCFloatingPlatform = "RoR2/DLC3/repurposedcrater/RCFloatingPlatform.prefab"; public static string RCFloatingPlatformopt = "RoR2/DLC3/repurposedcrater/RCFloatingPlatform_opt.prefab"; public static string RCGrass01 = "RoR2/DLC3/repurposedcrater/RCGrass01.prefab"; public static string RCGrass02 = "RoR2/DLC3/repurposedcrater/RCGrass02.prefab"; public static string RCGrass03 = "RoR2/DLC3/repurposedcrater/RCGrass03.prefab"; public static string RCGrate = "RoR2/DLC3/repurposedcrater/RCGrate.prefab"; public static string RCGrate03 = "RoR2/DLC3/repurposedcrater/RCGrate03.prefab"; public static string RCGrate04 = "RoR2/DLC3/repurposedcrater/RCGrate04.prefab"; public static string RCGrate06 = "RoR2/DLC3/repurposedcrater/RCGrate06.prefab"; public static string RCGrateCap = "RoR2/DLC3/repurposedcrater/RCGrateCap.prefab"; public static string RCLargeCablesPipes = "RoR2/DLC3/repurposedcrater/RCLargeCablesPipes.prefab"; public static string RCLargeCablesPipesopt = "RoR2/DLC3/repurposedcrater/RCLargeCablesPipes_opt.prefab"; public static string RCLargeDoor = "RoR2/DLC3/repurposedcrater/RCLargeDoor.prefab"; public static string RCLargeDooropt = "RoR2/DLC3/repurposedcrater/RCLargeDoor_opt.prefab"; public static string RCLillyPad01 = "RoR2/DLC3/repurposedcrater/RCLillyPad01.prefab"; public static string RCLillyPad01opt = "RoR2/DLC3/repurposedcrater/RCLillyPad01_opt.prefab"; public static string RCLillyPad02 = "RoR2/DLC3/repurposedcrater/RCLillyPad02.prefab"; public static string RCLillyPad03 = "RoR2/DLC3/repurposedcrater/RCLillyPad03.prefab"; public static string RCLillyPad03opt = "RoR2/DLC3/repurposedcrater/RCLillyPad03_opt.prefab"; public static string RCLillyPad03GoldVariant = "RoR2/DLC3/repurposedcrater/RCLillyPad03Gold Variant.prefab"; public static string RCLillyPad04 = "RoR2/DLC3/repurposedcrater/RCLillyPad04.prefab"; public static string RCLillyPad04Gold = "RoR2/DLC3/repurposedcrater/RCLillyPad04Gold.prefab"; public static string RCLillyPad05 = "RoR2/DLC3/repurposedcrater/RCLillyPad05.prefab"; public static string RCLillyPad05opt = "RoR2/DLC3/repurposedcrater/RCLillyPad05_opt.prefab"; public static string RCLillyPad05Gold = "RoR2/DLC3/repurposedcrater/RCLillyPad05Gold.prefab"; public static string RCMetalDetail02 = "RoR2/DLC3/repurposedcrater/RCMetalDetail02.prefab"; public static string RCMetalDetail02opt = "RoR2/DLC3/repurposedcrater/RCMetalDetail02_opt.prefab"; public static string RCMetalDetail03 = "RoR2/DLC3/repurposedcrater/RCMetalDetail03.prefab"; public static string RCMetalDetail03opt = "RoR2/DLC3/repurposedcrater/RCMetalDetail03_opt.prefab"; public static string RCPalmTree01 = "RoR2/DLC3/repurposedcrater/RCPalmTree01.prefab"; public static string RCPalmTree01opt = "RoR2/DLC3/repurposedcrater/RCPalmTree01_opt.prefab"; public static string RCPalmTree02 = "RoR2/DLC3/repurposedcrater/RCPalmTree02.prefab"; public static string RCPalmTree02opt = "RoR2/DLC3/repurposedcrater/RCPalmTree02_opt.prefab"; public static string RCPalmTreeGold01Variant = "RoR2/DLC3/repurposedcrater/RCPalmTreeGold01 Variant.prefab"; public static string RCPebble = "RoR2/DLC3/repurposedcrater/RCPebble.prefab"; public static string RCPlanter01 = "RoR2/DLC3/repurposedcrater/RCPlanter01.prefab"; public static string RCPlanter01opt = "RoR2/DLC3/repurposedcrater/RCPlanter01_opt.prefab"; public static string RCPlanter02 = "RoR2/DLC3/repurposedcrater/RCPlanter02.prefab"; public static string RCPlanter02opt = "RoR2/DLC3/repurposedcrater/RCPlanter02_opt.prefab"; public static string RCPlanter03 = "RoR2/DLC3/repurposedcrater/RCPlanter03.prefab"; public static string RCPlanter03opt = "RoR2/DLC3/repurposedcrater/RCPlanter03_opt.prefab"; public static string RCPlanter04 = "RoR2/DLC3/repurposedcrater/RCPlanter04.prefab"; public static string RCPlanter04opt = "RoR2/DLC3/repurposedcrater/RCPlanter04_opt.prefab"; public static string RCPlanterBase = "RoR2/DLC3/repurposedcrater/RCPlanterBase.prefab"; public static string RCPlanterFloating01a = "RoR2/DLC3/repurposedcrater/RCPlanterFloating01a.prefab"; public static string RCPlanterFloating01aopt = "RoR2/DLC3/repurposedcrater/RCPlanterFloating01a_opt.prefab"; public static string RCPlanterFloating01b = "RoR2/DLC3/repurposedcrater/RCPlanterFloating01b.prefab"; public static string RCPlanterFloating01bopt = "RoR2/DLC3/repurposedcrater/RCPlanterFloating01b_opt.prefab"; public static string RCPlanterFloating02 = "RoR2/DLC3/repurposedcrater/RCPlanterFloating02.prefab"; public static string RCPlanterFloating02opt = "RoR2/DLC3/repurposedcrater/RCPlanterFloating02_opt.prefab"; public static string RCPlanterFloating03 = "RoR2/DLC3/repurposedcrater/RCPlanterFloating03.prefab"; public static string RCPlanterFloating03opt = "RoR2/DLC3/repurposedcrater/RCPlanterFloating03_opt.prefab"; public static string RCPlanterPlatform = "RoR2/DLC3/repurposedcrater/RCPlanterPlatform.prefab"; public static string RCPlanterPlatformopt = "RoR2/DLC3/repurposedcrater/RCPlanterPlatform_opt.prefab"; public static string RCPlatform01 = "RoR2/DLC3/repurposedcrater/RCPlatform01.prefab"; public static string RCPlatform01opt = "RoR2/DLC3/repurposedcrater/RCPlatform01_opt.prefab"; public static string RCPlatform02 = "RoR2/DLC3/repurposedcrater/RCPlatform02.prefab"; public static string RCPlatform02opt = "RoR2/DLC3/repurposedcrater/RCPlatform02_opt.prefab"; public static string RCRampWalkway = "RoR2/DLC3/repurposedcrater/RCRampWalkway.prefab"; public static string RCRock = "RoR2/DLC3/repurposedcrater/RCRock.prefab"; public static string RCRockopt = "RoR2/DLC3/repurposedcrater/RCRock_opt.prefab"; public static string RCSandPile = "RoR2/DLC3/repurposedcrater/RCSandPile.prefab"; public static string RCSandPilePlatform = "RoR2/DLC3/repurposedcrater/RCSandPilePlatform.prefab"; public static string RCSnakePlant01 = "RoR2/DLC3/repurposedcrater/RCSnakePlant01.prefab"; public static string RCSnakePlant02 = "RoR2/DLC3/repurposedcrater/RCSnakePlant02.prefab"; public static string RCSnakePlant03 = "RoR2/DLC3/repurposedcrater/RCSnakePlant03.prefab"; public static string RCSupportPillar01 = "RoR2/DLC3/repurposedcrater/RCSupportPillar01.prefab"; public static string RCSupportPillar01opt = "RoR2/DLC3/repurposedcrater/RCSupportPillar01_opt.prefab"; public static string RCSupportPillar04 = "RoR2/DLC3/repurposedcrater/RCSupportPillar04.prefab"; public static string RCSupportPillar04opt = "RoR2/DLC3/repurposedcrater/RCSupportPillar04_opt.prefab"; public static string RCTechCube = "RoR2/DLC3/repurposedcrater/RCTechCube.prefab"; public static string RCTechCubeopt = "RoR2/DLC3/repurposedcrater/RCTechCube_opt.prefab"; public static string RCTerraceWaterFall = "RoR2/DLC3/repurposedcrater/RCTerraceWaterFall.prefab"; public static string RCTerrarium01 = "RoR2/DLC3/repurposedcrater/RCTerrarium01.prefab"; public static string RCTerrarium01opt = "RoR2/DLC3/repurposedcrater/RCTerrarium01_opt.prefab"; public static string RCVerticalLift = "RoR2/DLC3/repurposedcrater/RCVerticalLift.prefab"; public static string RCWaterPipeLarge01 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLarge01.prefab"; public static string RCWaterPipeLarge02 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLarge02.prefab"; public static string RCWaterPipeLarge03 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLarge03.prefab"; public static string RCWaterPipeLargeBroken01 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeBroken01.prefab"; public static string RCWaterPipeLargeBroken02 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeBroken02.prefab"; public static string RCWaterPipeLargeCap01 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeCap01.prefab"; public static string RCWaterPipeLargeCap02 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeCap02.prefab"; public static string RCWaterPipeLargeGlass01 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeGlass01.prefab"; public static string RCWaterPipeLargeGlass02 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeGlass02.prefab"; public static string RCWaterPipeLargeGlass03 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeGlass03.prefab"; public static string RCWaterPipeLargeGlass04 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeGlass04.prefab"; public static string RCWaterPipeLargeGlass05 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeGlass05.prefab"; public static string RCWaterPipeLargeGlass06 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeGlass06.prefab"; public static string RCWaterPipeLargeGlass07 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeGlass07.prefab"; public static string RCWaterPipeLargeStraight01 = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeStraight01.prefab"; public static string RCWaterPipeLargeWater = "RoR2/DLC3/repurposedcrater/RCWaterPipeLargeWater.prefab"; public static string RCWaterPipeSmallCap = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallCap.prefab"; public static string RCWaterPipeSmallCapopt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallCap_opt.prefab"; public static string RCWaterPipeSmallCross = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallCross.prefab"; public static string RCWaterPipeSmallCrossopt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallCross_opt.prefab"; public static string RCWaterPipeSmallElbow = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallElbow.prefab"; public static string RCWaterPipeSmallElbowopt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallElbow_opt.prefab"; public static string RCWaterPipeSmallFlange = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallFlange.prefab"; public static string RCWaterPipeSmallFlangeopt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallFlange_opt.prefab"; public static string RCWaterPipeSmallLongT = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallLongT.prefab"; public static string RCWaterPipeSmallLongTopt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallLongT_opt.prefab"; public static string RCWaterPipeSmallPressureGage = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallPressureGage.prefab"; public static string RCWaterPipeSmallPressureGageopt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallPressureGage_opt.prefab"; public static string RCWaterPipeSmallShortT = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallShortT.prefab"; public static string RCWaterPipeSmallShortTopt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallShortT_opt.prefab"; public static string RCWaterPipeSmallStraight01 = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallStraight01.prefab"; public static string RCWaterPipeSmallStraight01opt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallStraight01_opt.prefab"; public static string RCWaterPipeSmallStraight02 = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallStraight02.prefab"; public static string RCWaterPipeSmallStraight02opt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallStraight02_opt.prefab"; public static string RCWaterPipeSmallStraight03 = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallStraight03.prefab"; public static string RCWaterPipeSmallStraight03opt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallStraight03_opt.prefab"; public static string RCWaterPipeSmallWheel01 = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallWheel01.prefab"; public static string RCWaterPipeSmallWheel01opt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallWheel01_opt.prefab"; public static string RCWaterPipeSmallWheel02 = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallWheel02.prefab"; public static string RCWaterPipeSmallWheel02opt = "RoR2/DLC3/repurposedcrater/RCWaterPipeSmallWheel02_opt.prefab"; public static string RCWaterPipesSmall01 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmall01.prefab"; public static string RCWaterPipesSmall02 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmall02.prefab"; public static string RCWaterPipesSmall03 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmall03.prefab"; public static string RCWaterPipesSmall04 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmall04.prefab"; public static string RCWaterPipesSmall05 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmall05.prefab"; public static string RCWaterPipesSmall06 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmall06.prefab"; public static string RCWaterPipesSmallSet01 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmallSet01.prefab"; public static string RCWaterPipesSmallSet02 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmallSet02.prefab"; public static string RCWaterPipesSmallSet03 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmallSet03.prefab"; public static string RCWaterPipesSmallSet04 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmallSet04.prefab"; public static string RCWaterPipesSmallSet05 = "RoR2/DLC3/repurposedcrater/RCWaterPipesSmallSet05.prefab"; public static string mdlRCDiorama = "RoR2/DLC3/repurposedcrater/mdlRCDiorama.fbx"; public static string repurposedcraterPOIManager = "RoR2/DLC3/repurposedcrater/repurposedcrater_POIManager.prefab"; public static string RepurposedCraterDioramaDisplay = "RoR2/DLC3/repurposedcrater/RepurposedCraterDioramaDisplay.prefab"; public static string PowerOrbEventManager = "RoR2/DLC3/repurposedcrater/PowerOrbEventManager.prefab"; public static string CECubeASolusWebVariant = "RoR2/DLC3/solusweb/CECubeA_SolusWebVariant.prefab"; public static string CECubeASolusWebVariantDim = "RoR2/DLC3/solusweb/CECubeA_SolusWebVariantDim.prefab"; public static string CECubeASolusWebVariantSecret = "RoR2/DLC3/solusweb/CECubeA_SolusWebVariantSecret.prefab"; public static string CECubeAFloaterSolusWebVariant = "RoR2/DLC3/solusweb/CECubeAFloater_SolusWebVariant.prefab"; public static string CECubeAGlowSolusWebVariant = "RoR2/DLC3/solusweb/CECubeAGlow_SolusWebVariant.prefab"; public static string CEDistantPlatformASolusWebVariant = "RoR2/DLC3/solusweb/CEDistantPlatformA_SolusWebVariant.prefab"; public static string HOLDERPrefightVFX = "RoR2/DLC3/solusweb/HOLDER_ Prefight VFX.prefab"; public static string MovingCell = "RoR2/DLC3/solusweb/MovingCell.prefab"; public static string MovingCubes = "RoR2/DLC3/solusweb/MovingCubes.prefab"; public static string SpawnAreaNodes = "RoR2/DLC3/solusweb/SpawnAreaNodes.prefab"; public static string PrimitiveHalfArcInner = "RoR2/DLC3/solusweb/Primitive_HalfArc_Inner.fbx"; public static string PrimitiveLavaArena = "RoR2/DLC3/solusweb/PrimitiveLavaArena.fbx"; public static string HOLDERSPAWNAREA = "RoR2/DLC3/solusweb/HOLDER_ SPAWN AREA.prefab"; public static string SolusWebDiorama = "RoR2/DLC3/solusweb/SolusWebDiorama.prefab"; public static string SolusWebPortalPP = "RoR2/DLC3/solusweb/SolusWebPortal_PP.prefab"; public static string mdlSolusDecorLampMaster = "RoR2/DLC3/solutionalhaunt/mdlSolusDecorLamp@Master.fbx"; public static string mdlPylonRing = "RoR2/DLC3/solutionalhaunt/mdlPylonRing.fbx"; public static string mdlPylonRingSeperated = "RoR2/DLC3/solutionalhaunt/mdlPylonRingSeperated.fbx"; public static string mdlPylonRingSeperatedCap = "RoR2/DLC3/solutionalhaunt/mdlPylonRingSeperatedCap.fbx"; public static string mdlSHBossRoom = "RoR2/DLC3/solutionalhaunt/mdlSHBossRoom.fbx"; public static string mdlSHBossRoomBridge01 = "RoR2/DLC3/solutionalhaunt/mdlSHBossRoomBridge01.fbx"; public static string mdlSHBossRoomBridge02 = "RoR2/DLC3/solutionalhaunt/mdlSHBossRoomBridge02.fbx"; public static string mdlSHBossRoomBridge3and4 = "RoR2/DLC3/solutionalhaunt/mdlSHBossRoomBridge3and4.fbx"; public static string mdlSHBossRoomFloor = "RoR2/DLC3/solutionalhaunt/mdlSHBossRoomFloor.fbx"; public static string mdlSHBossRoomGooPlanters = "RoR2/DLC3/solutionalhaunt/mdlSHBossRoomGooPlanters.fbx"; public static string mdlSHBossRoomWater = "RoR2/DLC3/solutionalhaunt/mdlSHBossRoomWater.fbx"; public static string mdlSHCatwalk = "RoR2/DLC3/solutionalhaunt/mdlSHCatwalk.fbx"; public static string mdlSHCatwalkBeam = "RoR2/DLC3/solutionalhaunt/mdlSHCatwalkBeam.fbx"; public static string mdlSHConnectionTube = "RoR2/DLC3/solutionalhaunt/mdlSHConnectionTube.fbx"; public static string mdlSHConstructionArm = "RoR2/DLC3/solutionalhaunt/mdlSHConstructionArm.fbx"; public static string mdlSHCulverts = "RoR2/DLC3/solutionalhaunt/mdlSHCulverts.fbx"; public static string mdlSHGlowFlowers = "RoR2/DLC3/solutionalhaunt/mdlSHGlowFlowers.fbx"; public static string mdlSHLiftTopper = "RoR2/DLC3/solutionalhaunt/mdlSHLiftTopper.fbx"; public static string mdlSHOutcropA = "RoR2/DLC3/solutionalhaunt/mdlSHOutcropA.fbx"; public static string mdlSHOutcropB = "RoR2/DLC3/solutionalhaunt/mdlSHOutcropB.fbx"; public static string mdlSHOutcropSmall = "RoR2/DLC3/solutionalhaunt/mdlSHOutcropSmall.fbx"; public static string mdlSHPipes = "RoR2/DLC3/solutionalhaunt/mdlSHPipes.fbx"; public static string mdlSHRing = "RoR2/DLC3/solutionalhaunt/mdlSHRing.fbx"; public static string mdlSHRocketBody = "RoR2/DLC3/solutionalhaunt/mdlSHRocketBody.fbx"; public static string mdlSHRoom1 = "RoR2/DLC3/solutionalhaunt/mdlSHRoom1.fbx"; public static string mdlSHRoom2 = "RoR2/DLC3/solutionalhaunt/mdlSHRoom2.fbx"; public static string mdlSHRoom2Bridges = "RoR2/DLC3/solutionalhaunt/mdlSHRoom2Bridges.fbx"; public static string mdlSHRoom2ConstructionArms = "RoR2/DLC3/solutionalhaunt/mdlSHRoom2ConstructionArms.fbx"; public static string mdlSHRoom2ConstructionLarge = "RoR2/DLC3/solutionalhaunt/mdlSHRoom2ConstructionLarge.fbx"; public static string mdlSHRoom2ConstructionPlatforms = "RoR2/DLC3/solutionalhaunt/mdlSHRoom2ConstructionPlatforms.fbx"; public static string mdlSHSpawnRoomPipe = "RoR2/DLC3/solutionalhaunt/mdlSHSpawnRoomPipe.fbx"; public static string mdlSHSpawnRoomWall = "RoR2/DLC3/solutionalhaunt/mdlSHSpawnRoomWall.fbx"; public static string mdlSHStalag = "RoR2/DLC3/solutionalhaunt/mdlSHStalag.fbx"; public static string mdlSHWalkway = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway.fbx"; public static string mdlSHWalkway2x3 = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway2x3.fbx"; public static string mdlSHWalkway8x3 = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway8x3.fbx"; public static string mdlSHCableMerged = "RoR2/DLC3/solutionalhaunt/mdlSHCable_Merged.fbx"; public static string mdlSHConstructionArmMerged = "RoR2/DLC3/solutionalhaunt/mdlSHConstructionArm_Merged.fbx"; public static string mdlSHDrifter = "RoR2/DLC3/solutionalhaunt/mdlSHDrifter.fbx"; public static string mdlSHHanD = "RoR2/DLC3/solutionalhaunt/mdlSHHanD.fbx"; public static string mdlSHLiftMerged = "RoR2/DLC3/solutionalhaunt/mdlSHLift_Merged.fbx"; public static string mdlSHPylon = "RoR2/DLC3/solutionalhaunt/mdlSHPylon.fbx"; public static string mdlSHVaultSolusSphereMerged = "RoR2/DLC3/solutionalhaunt/mdlSHVaultSolusSphere_Merged.fbx"; public static string mdlSHVaultUsedChestMerged = "RoR2/DLC3/solutionalhaunt/mdlSHVaultUsedChest_Merged.fbx"; public static string mdlSHWalkwayMerged = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway_Merged.fbx"; public static string SHBall = "RoR2/DLC3/solutionalhaunt/SHBall.prefab"; public static string SHBallopt = "RoR2/DLC3/solutionalhaunt/SHBall_opt.prefab"; public static string SHBeam = "RoR2/DLC3/solutionalhaunt/SHBeam.prefab"; public static string SHBeamopt = "RoR2/DLC3/solutionalhaunt/SHBeam_opt.prefab"; public static string SHBossRoom = "RoR2/DLC3/solutionalhaunt/SHBossRoom.prefab"; public static string SHBossRoomBridge1 = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge1.prefab"; public static string SHBossRoomBridge1opt = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge1_opt.prefab"; public static string SHBossRoomBridge2 = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge2.prefab"; public static string SHBossRoomBridge2opt = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge2_opt.prefab"; public static string SHBossRoomBridge3 = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge3.prefab"; public static string SHBossRoomBridge3opt = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge3_opt.prefab"; public static string SHBossRoomBridge4 = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge4.prefab"; public static string SHBossRoomBridge4opt = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge4_opt.prefab"; public static string SHBossRoomCeilingRing = "RoR2/DLC3/solutionalhaunt/SHBossRoomCeilingRing.prefab"; public static string SHBossRoomCeilingRingopt = "RoR2/DLC3/solutionalhaunt/SHBossRoomCeilingRing_opt.prefab"; public static string SHBossRoomFloor = "RoR2/DLC3/solutionalhaunt/SHBossRoomFloor.prefab"; public static string SHBossRoomFlooropt = "RoR2/DLC3/solutionalhaunt/SHBossRoomFloor_opt.prefab"; public static string SHBossRoomGooPlanter = "RoR2/DLC3/solutionalhaunt/SHBossRoomGooPlanter.prefab"; public static string SHBossRoomTop = "RoR2/DLC3/solutionalhaunt/SHBossRoomTop.prefab"; public static string SHBossRoomTopopt = "RoR2/DLC3/solutionalhaunt/SHBossRoomTop_opt.prefab"; public static string SHBossRoomWater = "RoR2/DLC3/solutionalhaunt/SHBossRoomWater.prefab"; public static string SHBossRoomWateropt = "RoR2/DLC3/solutionalhaunt/SHBossRoomWater_opt.prefab"; public static string SHCart = "RoR2/DLC3/solutionalhaunt/SHCart.prefab"; public static string SHCartopt = "RoR2/DLC3/solutionalhaunt/SHCart_opt.prefab"; public static string SHContainer01 = "RoR2/DLC3/solutionalhaunt/SHContainer01.prefab"; public static string SHContainer01opt = "RoR2/DLC3/solutionalhaunt/SHContainer01_opt.prefab"; public static string SHContainer02 = "RoR2/DLC3/solutionalhaunt/SHContainer02.prefab"; public static string SHContainer02opt = "RoR2/DLC3/solutionalhaunt/SHContainer02_opt.prefab"; public static string SHDecorBatteryPile = "RoR2/DLC3/solutionalhaunt/SHDecorBatteryPile.prefab"; public static string SHDecorBatteryPileopt = "RoR2/DLC3/solutionalhaunt/SHDecorBatteryPile_opt.prefab"; public static string SHGlowFlower = "RoR2/DLC3/solutionalhaunt/SHGlowFlower.prefab"; public static string SHGrassGreen = "RoR2/DLC3/solutionalhaunt/SHGrassGreen.prefab"; public static string SHGrassPink = "RoR2/DLC3/solutionalhaunt/SHGrassPink.prefab"; public static string SHJunkSmall02 = "RoR2/DLC3/solutionalhaunt/SHJunkSmall02.prefab"; public static string SHJunkSmall02opt = "RoR2/DLC3/solutionalhaunt/SHJunkSmall02_opt.prefab"; public static string SHLiftTopper = "RoR2/DLC3/solutionalhaunt/SHLiftTopper.prefab"; public static string SHLiftTopperopt = "RoR2/DLC3/solutionalhaunt/SHLiftTopper_opt.prefab"; public static string SHRock = "RoR2/DLC3/solutionalhaunt/SHRock.prefab"; public static string SHRockopt = "RoR2/DLC3/solutionalhaunt/SHRock_opt.prefab"; public static string SHRoom1 = "RoR2/DLC3/solutionalhaunt/SHRoom1.prefab"; public static string SHRoom2 = "RoR2/DLC3/solutionalhaunt/SHRoom2.prefab"; public static string SHRoom2Bridge001 = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge001.prefab"; public static string SHRoom2Bridge001opt = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge001_opt.prefab"; public static string SHRoom2Bridge002 = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge002.prefab"; public static string SHRoom2Bridge002opt = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge002_opt.prefab"; public static string SHRoom2Bridge003 = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge003.prefab"; public static string SHRoom2Bridge003opt = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge003_opt.prefab"; public static string SHRoom2Bridge004 = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge004.prefab"; public static string SHRoom2Bridge004opt = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge004_opt.prefab"; public static string SHRoom2Bridge005 = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge005.prefab"; public static string SHRoom2Bridge005opt = "RoR2/DLC3/solutionalhaunt/SHRoom2Bridge005_opt.prefab"; public static string SHRoom2ConstructionArms = "RoR2/DLC3/solutionalhaunt/SHRoom2ConstructionArms.prefab"; public static string SHRoom2ConstructionArmsopt = "RoR2/DLC3/solutionalhaunt/SHRoom2ConstructionArms_opt.prefab"; public static string SHRoom2ConstructionLarge = "RoR2/DLC3/solutionalhaunt/SHRoom2ConstructionLarge.prefab"; public static string SHRoom2ConstructionLargeopt = "RoR2/DLC3/solutionalhaunt/SHRoom2ConstructionLarge_opt.prefab"; public static string SHRoom2ConstructionPlatforms = "RoR2/DLC3/solutionalhaunt/SHRoom2ConstructionPlatforms.prefab"; public static string SHRoom2ConstructionPlatformsopt = "RoR2/DLC3/solutionalhaunt/SHRoom2ConstructionPlatforms_opt.prefab"; public static string SHSpawnRoomPipe = "RoR2/DLC3/solutionalhaunt/SHSpawnRoomPipe.prefab"; public static string SHSpawnRoomPipeopt = "RoR2/DLC3/solutionalhaunt/SHSpawnRoomPipe_opt.prefab"; public static string SHSpawnRoomPipeBase = "RoR2/DLC3/solutionalhaunt/SHSpawnRoomPipeBase.prefab"; public static string SHSpawnRoomPipeBaseopt = "RoR2/DLC3/solutionalhaunt/SHSpawnRoomPipeBase_opt.prefab"; public static string SHSpawnRoomWall = "RoR2/DLC3/solutionalhaunt/SHSpawnRoomWall.prefab"; public static string SHSpawnRoomWallopt = "RoR2/DLC3/solutionalhaunt/SHSpawnRoomWall_opt.prefab"; public static string SHStalagmiteCluster = "RoR2/DLC3/solutionalhaunt/SHStalagmiteCluster.prefab"; public static string SHStalagmiteClusteropt = "RoR2/DLC3/solutionalhaunt/SHStalagmiteCluster_opt.prefab"; public static string SHWalkway = "RoR2/DLC3/solutionalhaunt/SHWalkway.prefab"; public static string SHWalkwayopt = "RoR2/DLC3/solutionalhaunt/SHWalkway_opt.prefab"; public static string spmDanglingMossCluster11 = "RoR2/DLC3/solutionalhaunt/spmDanglingMossCluster.spm"; public static string spmDanglingMossSpread34 = "RoR2/DLC3/solutionalhaunt/spmDanglingMossSpread.spm"; public static string mdlSHDiorama = "RoR2/DLC3/solutionalhaunt/mdlSHDiorama.fbx"; public static string mdlDoorSymbol = "RoR2/DLC3/solutionalhaunt/mdlDoorSymbol.fbx"; public static string mdlSHBossRoomWalkway14x2 = "RoR2/DLC3/solutionalhaunt/mdlSHBossRoomWalkway14x2.fbx"; public static string mdlSHCablesRoom01 = "RoR2/DLC3/solutionalhaunt/mdlSHCablesRoom01.fbx"; public static string mdlSHCablesRoom03 = "RoR2/DLC3/solutionalhaunt/mdlSHCablesRoom03.fbx"; public static string mdlSHcatwalklarge1 = "RoR2/DLC3/solutionalhaunt/mdlSHcatwalklarge 1.fbx"; public static string mdlSHcatwalklarge = "RoR2/DLC3/solutionalhaunt/mdlSHcatwalklarge.fbx"; public static string mdlSHcatwalksmall1 = "RoR2/DLC3/solutionalhaunt/mdlSHcatwalksmall 1.fbx"; public static string mdlSHcatwalksmall = "RoR2/DLC3/solutionalhaunt/mdlSHcatwalksmall.fbx"; public static string mdlSHCharacterTube = "RoR2/DLC3/solutionalhaunt/mdlSHCharacterTube.fbx"; public static string mdlSHCharacterTubeBroken = "RoR2/DLC3/solutionalhaunt/mdlSHCharacterTubeBroken.fbx"; public static string mdlSHDioramaA = "RoR2/DLC3/solutionalhaunt/mdlSHDioramaA.fbx"; public static string mdlSHDoublePlatform = "RoR2/DLC3/solutionalhaunt/mdlSHDoublePlatform.fbx"; public static string mdlSHFinalRoomDecoRings = "RoR2/DLC3/solutionalhaunt/mdlSHFinalRoomDecoRings.fbx"; public static string mdlSHglowflower01 = "RoR2/DLC3/solutionalhaunt/mdlSHglowflower01.fbx"; public static string mdlSHHatchChute01 = "RoR2/DLC3/solutionalhaunt/mdlSHHatchChute01.fbx"; public static string mdlSHHatchChute02 = "RoR2/DLC3/solutionalhaunt/mdlSHHatchChute02.fbx"; public static string mdlSHJunkOutcrop01 = "RoR2/DLC3/solutionalhaunt/mdlSHJunkOutcrop01.fbx"; public static string mdlSHJunkOutcrop02 = "RoR2/DLC3/solutionalhaunt/mdlSHJunkOutcrop02.fbx"; public static string mdlSHJunkOutcrop03 = "RoR2/DLC3/solutionalhaunt/mdlSHJunkOutcrop03.fbx"; public static string mdlSHJunkOutcropSmall = "RoR2/DLC3/solutionalhaunt/mdlSHJunkOutcropSmall.fbx"; public static string mdlSHModularStructures = "RoR2/DLC3/solutionalhaunt/mdlSHModularStructures.fbx"; public static string mdlSHPlanter01 = "RoR2/DLC3/solutionalhaunt/mdlSHPlanter01.fbx"; public static string mdlSHPlanter02 = "RoR2/DLC3/solutionalhaunt/mdlSHPlanter02.fbx"; public static string mdlSHPylonLight = "RoR2/DLC3/solutionalhaunt/mdlSHPylonLight.fbx"; public static string mdlSHrm2Bridge001 = "RoR2/DLC3/solutionalhaunt/mdlSHrm2Bridge001.fbx"; public static string mdlSHrm2Bridge002 = "RoR2/DLC3/solutionalhaunt/mdlSHrm2Bridge002.fbx"; public static string mdlSHrm2Bridge003 = "RoR2/DLC3/solutionalhaunt/mdlSHrm2Bridge003.fbx"; public static string mdlSHrm2Bridge004 = "RoR2/DLC3/solutionalhaunt/mdlSHrm2Bridge004.fbx"; public static string mdlSHrm2Bridge005 = "RoR2/DLC3/solutionalhaunt/mdlSHrm2Bridge005.fbx"; public static string mdlSHRock = "RoR2/DLC3/solutionalhaunt/mdlSHRock.fbx"; public static string mdlSHSolusBall = "RoR2/DLC3/solutionalhaunt/mdlSHSolusBall.fbx"; public static string mdlSHSupportBeams = "RoR2/DLC3/solutionalhaunt/mdlSHSupportBeams.fbx"; public static string mdlSHTubes = "RoR2/DLC3/solutionalhaunt/mdlSHTubes.fbx"; public static string mdlSHVines01 = "RoR2/DLC3/solutionalhaunt/mdlSHVines01.fbx"; public static string mdlSHVines01a = "RoR2/DLC3/solutionalhaunt/mdlSHVines01a.fbx"; public static string mdlSHVines02 = "RoR2/DLC3/solutionalhaunt/mdlSHVines02.fbx"; public static string mdlSHVines03 = "RoR2/DLC3/solutionalhaunt/mdlSHVines03.fbx"; public static string mdlSHWalkway14x2 = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway14x2.fbx"; public static string mdlSHWalkway1x2 = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway1x2.fbx"; public static string mdlSHWalkway1x3 = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway1x3.fbx"; public static string mdlSHWalkway1x4 = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway1x4.fbx"; public static string mdlSHWalkway2x3Ramp = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway2x3Ramp.fbx"; public static string mdlSHWalkway7x4 = "RoR2/DLC3/solutionalhaunt/mdlSHWalkway7x4.fbx"; public static string mdlSHWalkwayFinalRoom = "RoR2/DLC3/solutionalhaunt/mdlSHWalkwayFinalRoom.fbx"; public static string mdlSHWireBridge = "RoR2/DLC3/solutionalhaunt/mdlSHWireBridge.fbx"; public static string mdlSHWireBridgeCollision = "RoR2/DLC3/solutionalhaunt/mdlSHWireBridgeCollision.fbx"; public static string mdlSHWireBridgeSupport = "RoR2/DLC3/solutionalhaunt/mdlSHWireBridgeSupport.fbx"; public static string mdlSolusDecor = "RoR2/DLC3/solutionalhaunt/mdlSolusDecor.fbx"; public static string mdlSolusDecorBattery = "RoR2/DLC3/solutionalhaunt/mdlSolusDecorBattery.fbx"; public static string mdlSolusDecorCart = "RoR2/DLC3/solutionalhaunt/mdlSolusDecorCart.fbx"; public static string mdlSolusDecorContainer01 = "RoR2/DLC3/solutionalhaunt/mdlSolusDecorContainer01.fbx"; public static string mdlSolusDecorContainer02 = "RoR2/DLC3/solutionalhaunt/mdlSolusDecorContainer02.fbx"; public static string mdlSolusDecorJumpPad = "RoR2/DLC3/solutionalhaunt/mdlSolusDecorJumpPad.fbx"; public static string mdlSolusDecorLamp = "RoR2/DLC3/solutionalhaunt/mdlSolusDecorLamp.fbx"; public static string mdlSolusDecorLampstatic = "RoR2/DLC3/solutionalhaunt/mdlSolusDecorLamp_static.fbx"; public static string mdlSolusDecorVent = "RoR2/DLC3/solutionalhaunt/mdlSolusDecorVent.fbx"; public static string mdlTerrainWaterR1 = "RoR2/DLC3/solutionalhaunt/mdlTerrainWaterR1.fbx"; public static string mdlTerrainWaterR2 = "RoR2/DLC3/solutionalhaunt/mdlTerrainWaterR2.fbx"; public static string mdlWaterCollisionPlane = "RoR2/DLC3/solutionalhaunt/mdlWaterCollisionPlane.fbx"; public static string mdlSHSpawnRoomWater = "RoR2/DLC3/solutionalhaunt/mdl_SHSpawnRoomWater.fbx"; public static string mdlBossRoom = "RoR2/DLC3/solutionalhaunt/mdlBossRoom.fbx"; public static string mdlBossRoom12 = "RoR2/DLC3/solutionalhaunt/mdlBossRoom.prefab"; public static string mdlSHBossRoomPillars = "RoR2/DLC3/solutionalhaunt/mdlSHBossRoomPillars.fbx"; public static string mdlSHConstructionNest = "RoR2/DLC3/solutionalhaunt/mdlSHConstructionNest.fbx"; public static string mdlSHDropPipe = "RoR2/DLC3/solutionalhaunt/mdlSHDropPipe.fbx"; public static string mdlSHRockPile = "RoR2/DLC3/solutionalhaunt/mdlSHRockPile.fbx"; public static string mdlSHRoom1Water = "RoR2/DLC3/solutionalhaunt/mdlSHRoom1Water.fbx"; public static string mdlSHRoom2Water = "RoR2/DLC3/solutionalhaunt/mdlSHRoom2Water.fbx"; public static string mdlSHRoomCOnnectionTube = "RoR2/DLC3/solutionalhaunt/mdlSHRoomCOnnectionTube.fbx"; public static string mdlSHSpawnRoom = "RoR2/DLC3/solutionalhaunt/mdlSHSpawnRoom.fbx"; public static string mdlSHSpawnRoomPlatforms = "RoR2/DLC3/solutionalhaunt/mdlSHSpawnRoomPlatforms.fbx"; public static string mdlSHSpawnRoomStalactites = "RoR2/DLC3/solutionalhaunt/mdlSHSpawnRoomStalactites.fbx"; public static string mdlSHSpawnRoomWalls = "RoR2/DLC3/solutionalhaunt/mdlSHSpawnRoomWalls.fbx"; public static string meshSpawnRoomWaterFoam0Half = "RoR2/DLC3/solutionalhaunt/meshSpawnRoomWaterFoam0Half.fbx"; public static string SHRoboBallBossBroken = "RoR2/DLC3/solutionalhaunt/SHRoboBallBossBroken.prefab"; public static string SHRoboBallMiniBroken = "RoR2/DLC3/solutionalhaunt/SHRoboBallMiniBroken.prefab"; public static string SHRockLarge = "RoR2/DLC3/solutionalhaunt/SHRockLarge.prefab"; public static string SHRockSlab = "RoR2/DLC3/solutionalhaunt/SHRockSlab.prefab"; public static string mdlSHTerrainBaseR1 = "RoR2/DLC3/solutionalhaunt/mdlSHTerrainBaseR1.fbx"; public static string mdlSHTerrainCeiling = "RoR2/DLC3/solutionalhaunt/mdlSHTerrainCeiling.fbx"; public static string mdlSHTerrainR3 = "RoR2/DLC3/solutionalhaunt/mdlSHTerrainR3.fbx"; public static string mdlSHTerrainR4 = "RoR2/DLC3/solutionalhaunt/mdlSHTerrainR4.fbx"; public static string mdlSHWallR1 = "RoR2/DLC3/solutionalhaunt/mdlSHWallR1.fbx"; public static string mdlSHWallR2 = "RoR2/DLC3/solutionalhaunt/mdlSHWallR2.fbx"; public static string mdlSHWallR3 = "RoR2/DLC3/solutionalhaunt/mdlSHWallR3.fbx"; public static string SolutionalHauntConceptGreyboxBossRoom05 = "RoR2/DLC3/solutionalhaunt/Solutional_Haunt_Concept_Greybox_BossRoom_05.fbx"; public static string SolutionalHauntConceptGreyboxRoom0101 = "RoR2/DLC3/solutionalhaunt/Solutional_Haunt_Concept_Greybox_Room01_01.fbx"; public static string SolutionalHauntConceptGreyboxRoom0102 = "RoR2/DLC3/solutionalhaunt/Solutional_Haunt_Concept_Greybox_Room01_02.fbx"; public static string SolutionalHauntConceptGreyboxRoom0201 = "RoR2/DLC3/solutionalhaunt/Solutional_Haunt_Concept_Greybox_Room02_01.fbx"; public static string SolutionalHauntConstructionArm01 = "RoR2/DLC3/solutionalhaunt/Solutional_Haunt_Construction_Arm_01.fbx"; public static string solutionalhauntwhitebox = "RoR2/DLC3/solutionalhaunt/solutionalhaunt_whitebox.fbx"; public static string DrifterUnlockChallenge = "RoR2/DLC3/solutionalhaunt/Drifter Unlock Challenge.prefab"; public static string HOLDERHallwayFog = "RoR2/DLC3/solutionalhaunt/HOLDER_ Hallway Fog.prefab"; public static string TitleFogPlane8 = "RoR2/DLC3/solutionalhaunt/TitleFog_Plane.prefab"; public static string TitleFogPlaneDirectionalTeal = "RoR2/DLC3/solutionalhaunt/TitleFog_PlaneDirectionalTeal.prefab"; public static string HOLDERZiprails30 = "RoR2/DLC3/solutionalhaunt/HOLDER_ Ziprails.prefab"; public static string HOLDERZiprailsPostFight = "RoR2/DLC3/solutionalhaunt/HOLDER_ Ziprails_PostFight.prefab"; public static string SHDrifterVault = "RoR2/DLC3/solutionalhaunt/SH_DrifterVault.prefab"; public static string SHLift = "RoR2/DLC3/solutionalhaunt/SH_Lift.prefab"; public static string SHLiftopt = "RoR2/DLC3/solutionalhaunt/SH_Lift_opt.prefab"; public static string SHLiftShort = "RoR2/DLC3/solutionalhaunt/SH_Lift_Short.prefab"; public static string SHLiftShortopt = "RoR2/DLC3/solutionalhaunt/SH_Lift_Short_opt.prefab"; public static string SHAlloyVultureNest = "RoR2/DLC3/solutionalhaunt/SHAlloyVultureNest.prefab"; public static string SHBossRoomBridge01 = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge01.prefab"; public static string SHBossRoomBridge02 = "RoR2/DLC3/solutionalhaunt/SHBossRoomBridge02.prefab"; public static string SHBossRoomPillars = "RoR2/DLC3/solutionalhaunt/SHBossRoomPillars.prefab"; public static string SHCableMerged = "RoR2/DLC3/solutionalhaunt/SHCable_Merged.prefab"; public static string SHCableMergedopt = "RoR2/DLC3/solutionalhaunt/SHCable_Merged_opt.prefab"; public static string SHCablesRoom01 = "RoR2/DLC3/solutionalhaunt/SHCablesRoom01.prefab"; public static string SHCablesRoom01opt = "RoR2/DLC3/solutionalhaunt/SHCablesRoom01_opt.prefab"; public static string SHCablesRoom03a = "RoR2/DLC3/solutionalhaunt/SHCablesRoom03a.prefab"; public static string SHCablesRoom03aopt = "RoR2/DLC3/solutionalhaunt/SHCablesRoom03a_opt.prefab"; public static string SHCablesRoom03b = "RoR2/DLC3/solutionalhaunt/SHCablesRoom03b.prefab"; public static string SHCablesRoom03bopt = "RoR2/DLC3/solutionalhaunt/SHCablesRoom03b_opt.prefab"; public static string SHCablesRoom03c = "RoR2/DLC3/solutionalhaunt/SHCablesRoom03c.prefab"; public static string SHCablesRoom03d = "RoR2/DLC3/solutionalhaunt/SHCablesRoom03d.prefab"; public static string SHCablesRoom03dopt = "RoR2/DLC3/solutionalhaunt/SHCablesRoom03d_opt.prefab"; public static string SHCablesRoom03e = "RoR2/DLC3/solutionalhaunt/SHCablesRoom03e.prefab"; public static string SHCablesRoom03f = "RoR2/DLC3/solutionalhaunt/SHCablesRoom03f.prefab"; public static string SHCatwalkBeam = "RoR2/DLC3/solutionalhaunt/SHCatwalkBeam.prefab"; public static string SHCatwalkBeamopt = "RoR2/DLC3/solutionalhaunt/SHCatwalkBeam_opt.prefab"; public static string SHcatwalklarge1 = "RoR2/DLC3/solutionalhaunt/SHcatwalklarge 1.prefab"; public static string SHcatwalksmall1 = "RoR2/DLC3/solutionalhaunt/SHcatwalksmall 1.prefab"; public static string SHCharacterTube = "RoR2/DLC3/solutionalhaunt/SHCharacterTube.prefab"; public static string SHCompressedAirVFX = "RoR2/DLC3/solutionalhaunt/SHCompressedAirVFX.prefab"; public static string SHConstructionArm = "RoR2/DLC3/solutionalhaunt/SHConstructionArm.prefab"; public static string SHConstructionArmMerged = "RoR2/DLC3/solutionalhaunt/SHConstructionArm_Merged.prefab"; public static string SHConstructionArmMergedopt = "RoR2/DLC3/solutionalhaunt/SHConstructionArm_Merged_opt.prefab"; public static string SHConstructionArmopt = "RoR2/DLC3/solutionalhaunt/SHConstructionArm_opt.prefab"; public static string SHConstructionArmBody = "RoR2/DLC3/solutionalhaunt/SHConstructionArmBody.prefab"; public static string SHConstructionArmRod = "RoR2/DLC3/solutionalhaunt/SHConstructionArmRod.prefab"; public static string SHConstructionArmRodopt = "RoR2/DLC3/solutionalhaunt/SHConstructionArmRod_opt.prefab"; public static string SHConstructionNest = "RoR2/DLC3/solutionalhaunt/SHConstructionNest.prefab"; public static string SHCulvert01 = "RoR2/DLC3/solutionalhaunt/SHCulvert01.prefab"; public static string SHCulvert01opt = "RoR2/DLC3/solutionalhaunt/SHCulvert01_opt.prefab"; public static string SHCulvert02 = "RoR2/DLC3/solutionalhaunt/SHCulvert02.prefab"; public static string SHCulvert02opt = "RoR2/DLC3/solutionalhaunt/SHCulvert02_opt.prefab"; public static string SHCulvert03opt = "RoR2/DLC3/solutionalhaunt/SHCulvert03_opt.prefab"; public static string SHDoublePlatform = "RoR2/DLC3/solutionalhaunt/SHDoublePlatform.prefab"; public static string SHDrip = "RoR2/DLC3/solutionalhaunt/SHDrip.prefab"; public static string SHFinalRoomDecoRings = "RoR2/DLC3/solutionalhaunt/SHFinalRoomDecoRings.prefab"; public static string SHglowflower01 = "RoR2/DLC3/solutionalhaunt/SHglowflower01.prefab"; public static string SHGrassSparseSingle = "RoR2/DLC3/solutionalhaunt/SHGrassSparseSingle.spm"; public static string SHGrassSparseSinglegreen = "RoR2/DLC3/solutionalhaunt/SHGrassSparseSinglegreen.spm"; public static string SHHatchChute01 = "RoR2/DLC3/solutionalhaunt/SHHatchChute01.prefab"; public static string SHHatchChute02 = "RoR2/DLC3/solutionalhaunt/SHHatchChute02.prefab"; public static string SHJunkOutcrop01 = "RoR2/DLC3/solutionalhaunt/SHJunkOutcrop01.prefab"; public static string SHJunkOutcrop01opt = "RoR2/DLC3/solutionalhaunt/SHJunkOutcrop01_opt.prefab"; public static string SHJunkOutcrop03 = "RoR2/DLC3/solutionalhaunt/SHJunkOutcrop03.prefab"; public static string SHPebble = "RoR2/DLC3/solutionalhaunt/SHPebble.prefab"; public static string SHPipe01 = "RoR2/DLC3/solutionalhaunt/SHPipe01.prefab"; public static string SHPipe01opt = "RoR2/DLC3/solutionalhaunt/SHPipe01_opt.prefab"; public static string SHPipe02 = "RoR2/DLC3/solutionalhaunt/SHPipe02.prefab"; public static string SHPipe02opt = "RoR2/DLC3/solutionalhaunt/SHPipe02_opt.prefab"; public static string SHPipe03 = "RoR2/DLC3/solutionalhaunt/SHPipe03.prefab"; public static string SHPipe03opt = "RoR2/DLC3/solutionalhaunt/SHPipe03_opt.prefab"; public static string SHPipeCap = "RoR2/DLC3/solutionalhaunt/SHPipeCap.prefab"; public static string SHPipeEnd = "RoR2/DLC3/solutionalhaunt/SHPipeEnd.prefab"; public static string SHPlanter01 = "RoR2/DLC3/solutionalhaunt/SHPlanter01.prefab"; public static string SHPlanter02 = "RoR2/DLC3/solutionalhaunt/SHPlanter02.prefab"; public static string SHPylonBase = "RoR2/DLC3/solutionalhaunt/SHPylonBase.prefab"; public static string SHPylonLight = "RoR2/DLC3/solutionalhaunt/SHPylonLight.prefab"; public static string SHrm2Bridge001 = "RoR2/DLC3/solutionalhaunt/SHrm2Bridge001.prefab"; public static string SHrm2Bridge002 = "RoR2/DLC3/solutionalhaunt/SHrm2Bridge002.prefab"; public static string SHrm2Bridge003 = "RoR2/DLC3/solutionalhaunt/SHrm2Bridge003.prefab"; public static string SHrm2Bridge004 = "RoR2/DLC3/solutionalhaunt/SHrm2Bridge004.prefab"; public static string SHrm2Bridge005 = "RoR2/DLC3/solutionalhaunt/SHrm2Bridge005.prefab"; public static string SHRocketBody = "RoR2/DLC3/solutionalhaunt/SHRocketBody.prefab"; public static string SHRocketBodyopt = "RoR2/DLC3/solutionalhaunt/SHRocketBody_opt.prefab"; public static string SHRoomAWater = "RoR2/DLC3/solutionalhaunt/SHRoomAWater.prefab"; public static string SHRoomAWateropt = "RoR2/DLC3/solutionalhaunt/SHRoomAWater_opt.prefab"; public static string SHRoomAWaterPool = "RoR2/DLC3/solutionalhaunt/SHRoomAWaterPool.prefab"; public static string SHRoomAWaterPoolopt = "RoR2/DLC3/solutionalhaunt/SHRoomAWaterPool_opt.prefab"; public static string SHSolusBall = "RoR2/DLC3/solutionalhaunt/SHSolusBall.prefab"; public static string SHSolusDecorBatteryClosed = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryClosed.prefab"; public static string SHSolusDecorBatteryClosedopt = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryClosed_opt.prefab"; public static string SHSolusDecorBatteryOpen = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryOpen.prefab"; public static string SHSolusDecorBatteryOpenOpt = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryOpenOpt.prefab"; public static string SHSolusDecorBatteryPile01 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryPile01.prefab"; public static string SHSolusDecorBatteryPile01opt = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryPile01_opt.prefab"; public static string SHSolusDecorBatteryPile02 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryPile02.prefab"; public static string SHSolusDecorBatteryPile02opt = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryPile02_opt.prefab"; public static string SHSolusDecorBatteryPile03 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryPile03.prefab"; public static string SHSolusDecorBatteryPile03opt = "RoR2/DLC3/solutionalhaunt/SHSolusDecorBatteryPile03_opt.prefab"; public static string SHSolusDecorCart01 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorCart01.prefab"; public static string SHSolusDecorCart02 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorCart02.prefab"; public static string SHSolusDecorCart03 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorCart03.prefab"; public static string SHSolusDecorCart04 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorCart04.prefab"; public static string SHSolusDecorCart05 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorCart05.prefab"; public static string SHSolusDecorContainer01 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorContainer01.prefab"; public static string SHSolusDecorContainer01opt = "RoR2/DLC3/solutionalhaunt/SHSolusDecorContainer01_opt.prefab"; public static string SHSolusDecorContainer02 = "RoR2/DLC3/solutionalhaunt/SHSolusDecorContainer02.prefab"; public static string SHSolusDecorJumpPad = "RoR2/DLC3/solutionalhaunt/SHSolusDecorJumpPad.prefab"; public static string SHSolusDecorLamp = "RoR2/DLC3/solutionalhaunt/SHSolusDecorLamp.prefab"; public static string SHSolusDecorLampopt = "RoR2/DLC3/solutionalhaunt/SHSolusDecorLamp_opt.prefab"; public static string SHSolusDecorVent = "RoR2/DLC3/solutionalhaunt/SHSolusDecorVent.prefab"; public static string SHSolusDecorVentopt = "RoR2/DLC3/solutionalhaunt/SHSolusDecorVent_opt.prefab"; public static string SHStalactiteDripCluster = "RoR2/DLC3/solutionalhaunt/SHStalactiteDripCluster.prefab"; public static string SHSupportBeams = "RoR2/DLC3/solutionalhaunt/SHSupportBeams.prefab"; public static string SHTallGrass = "RoR2/DLC3/solutionalhaunt/SHTallGrass.spm"; public static string SHTube01 = "RoR2/DLC3/solutionalhaunt/SHTube01.prefab"; public static string SHTube02 = "RoR2/DLC3/solutionalhaunt/SHTube02.prefab"; public static string SHTube03 = "RoR2/DLC3/solutionalhaunt/SHTube03.prefab"; public static string SHTubeCap = "RoR2/DLC3/solutionalhaunt/SHTubeCap.prefab"; public static string SHVaultSolusSphereMerged = "RoR2/DLC3/solutionalhaunt/SHVaultSolusSphere_Merged.prefab"; public static string SHVaultSolusSphereMergedopt = "RoR2/DLC3/solutionalhaunt/SHVaultSolusSphere_Merged_opt.prefab"; public static string SHVines01 = "RoR2/DLC3/solutionalhaunt/SHVines01.prefab"; public static string SHVines01a = "RoR2/DLC3/solutionalhaunt/SHVines01a.prefab"; public static string SHVines02 = "RoR2/DLC3/solutionalhaunt/SHVines02.prefab"; public static string SHVines03 = "RoR2/DLC3/solutionalhaunt/SHVines03.prefab"; public static string SHWalkwayMerged = "RoR2/DLC3/solutionalhaunt/SHWalkway_Merged.prefab"; public static string SHWalkwayMergedopt = "RoR2/DLC3/solutionalhaunt/SHWalkway_Merged_opt.prefab"; public static string SHWalkway14x2 = "RoR2/DLC3/solutionalhaunt/SHWalkway14x2.prefab"; public static string SHWalkway2x3Ramp = "RoR2/DLC3/solutionalhaunt/SHWalkway2x3Ramp.prefab"; public static string SHWalkway2x3Rampopt = "RoR2/DLC3/solutionalhaunt/SHWalkway2x3Ramp_opt.prefab"; public static string SHWalkway8x3 = "RoR2/DLC3/solutionalhaunt/SHWalkway8x3.prefab"; public static string SHWalkway8x3opt = "RoR2/DLC3/solutionalhaunt/SHWalkway8x3_opt.prefab"; public static string SHWalkwayFinalRoom = "RoR2/DLC3/solutionalhaunt/SHWalkwayFinalRoom.prefab"; public static string SHWalkwayFinalRoomopt = "RoR2/DLC3/solutionalhaunt/SHWalkwayFinalRoom_opt.prefab"; public static string SHWaterfall = "RoR2/DLC3/solutionalhaunt/SHWaterfall.prefab"; public static string SHWaterfallSplashBottom = "RoR2/DLC3/solutionalhaunt/SHWaterfallSplashBottom.prefab"; public static string SolusWingHoleCover = "RoR2/DLC3/solutionalhaunt/SolusWingHoleCover.prefab"; public static string SolusWingHoleCoveropt = "RoR2/DLC3/solutionalhaunt/SolusWingHoleCover_opt.prefab"; public static string spmSHGrass = "RoR2/DLC3/solutionalhaunt/spmSHGrass.prefab"; public static string ChargeLaserGrid = "RoR2/DLC3/solutionalhaunt/ChargeLaserGrid.prefab"; public static string DebugLaserPrefab = "RoR2/DLC3/solutionalhaunt/Debug Laser Prefab.prefab"; public static string LaserGrid = "RoR2/DLC3/solutionalhaunt/LaserGrid.prefab"; public static string HorizontalConfigurationGrid = "RoR2/DLC3/solutionalhaunt/HorizontalConfiguration_Grid.prefab"; public static string HorizontalConfigurationWindows = "RoR2/DLC3/solutionalhaunt/HorizontalConfiguration_Windows.prefab"; public static string Phase2Configuration = "RoR2/DLC3/solutionalhaunt/Phase2Configuration.prefab"; public static string Phase3Configuration = "RoR2/DLC3/solutionalhaunt/Phase3Configuration.prefab"; public static string Phase3ConfigurationVertical = "RoR2/DLC3/solutionalhaunt/Phase3ConfigurationVertical.prefab"; public static string WallConfiguration1 = "RoR2/DLC3/solutionalhaunt/WallConfiguration 1.prefab"; public static string WallConfiguration = "RoR2/DLC3/solutionalhaunt/WallConfiguration.prefab"; public static string LaserGridLaser = "RoR2/DLC3/solutionalhaunt/LaserGridLaser.prefab"; public static string MuzzleflashLaserGrid = "RoR2/DLC3/solutionalhaunt/MuzzleflashLaserGrid.prefab"; public static string OldLaserGrid = "RoR2/DLC3/solutionalhaunt/OldLaserGrid.prefab"; public static string LandEffect = "RoR2/DLC3/solutionalhaunt/LandEffect.prefab"; public static string SolusWingPostFight = "RoR2/DLC3/solutionalhaunt/SolusWingPostFight.prefab"; public static string ToolbotMonsterMasterVariant = "RoR2/DLC3/solutionalhaunt/ToolbotMonsterMasterVariant.prefab"; public static string BossGroupCombatSquad = "RoR2/DLC3/solutionalhaunt/Boss Group CombatSquad.prefab"; public static string CablesExtinguisher = "RoR2/DLC3/solutionalhaunt/Cables_Extinguisher.prefab"; public static string CablesHeat = "RoR2/DLC3/solutionalhaunt/Cables_Heat.prefab"; public static string LightingManager = "RoR2/DLC3/solutionalhaunt/LightingManager.prefab"; public static string PodSpawnPoints = "RoR2/DLC3/solutionalhaunt/Pod SpawnPoints.prefab"; public static string SHCablePlaceholder = "RoR2/DLC3/solutionalhaunt/SH_Cable_Placeholder.prefab"; public static string SoluswingBossRail = "RoR2/DLC3/solutionalhaunt/Soluswing Boss Rail.prefab"; public static string SolusWingAdditionalMobSpawner = "RoR2/DLC3/solutionalhaunt/SolusWing_AdditionalMobSpawner.prefab"; public static string SolusWingDesperationManager = "RoR2/DLC3/solutionalhaunt/SolusWingDesperationManager.prefab"; public static string SolutionalHauntDioramaDisplay = "RoR2/DLC3/solutionalhaunt/SolutionalHauntDioramaDisplay.prefab"; public static string WeatherSolutionalHaunt = "RoR2/DLC3/solutionalhaunt/Weather, Solutional Haunt.prefab"; public static string RecipeDisplay = "RoR2/DLC3/UI/RecipeDisplay.prefab"; public static string RecipeDisplayUpdated = "RoR2/DLC3/UI/RecipeDisplayUpdated.prefab"; public static string DroneRepairNotificationPanel = "RoR2/DLC3/UI/DroneRepairNotificationPanel.prefab"; public static string RemoteOperationDroneSelection = "RoR2/DLC3/UI/RemoteOperationDroneSelection.prefab"; public static string TieredContainer = "RoR2/DLC3/UI/TieredContainer.prefab"; public static string TierHolder = "RoR2/DLC3/UI/TierHolder.prefab"; public static string FPSCounter = "RoR2/FPSCounter.prefab"; public static string GapFillerForMissingLevelGeometry = "RoR2/GlobalContent/GapFillerForMissingLevelGeometry.prefab"; public static string HGMoonProps = "RoR2/GlobalContent/HG_Moon_Props.fbx"; public static string lunarinfection = "RoR2/GlobalContent/lunar infection.fbx"; public static string mdlPebble1 = "RoR2/GlobalContent/mdlPebble1.fbx"; public static string mdlPebble1opt = "RoR2/GlobalContent/mdlPebble1_opt.fbx"; public static string mdlPebble1Allopt = "RoR2/GlobalContent/mdlPebble1All_opt.fbx"; public static string EchoHunterGhost = "RoR2/InDev/EchoHunterGhost.prefab"; public static string EchoHunterProjectile = "RoR2/InDev/EchoHunterProjectile.prefab"; public static string Funball = "RoR2/Junk/Bomb/Funball.prefab"; public static string FunballExplosion = "RoR2/Junk/Bomb/FunballExplosion.prefab"; public static string FunballGhost = "RoR2/Junk/Bomb/FunballGhost.prefab"; public static string SpiteBombDelayEffect = "RoR2/Junk/Bomb/SpiteBombDelayEffect.prefab"; public static string AncientWispBody = "RoR2/Junk/AncientWisp/AncientWispBody.prefab"; public static string AncientWispMaster = "RoR2/Junk/AncientWisp/AncientWispMaster.prefab"; public static string mdlAncientWisp = "RoR2/Junk/AncientWisp/mdlAncientWisp.fbx"; public static string AncientWispBombDelay = "RoR2/Junk/AncientWisp/AncientWispBombDelay.prefab"; public static string AncientWispCannon = "RoR2/Junk/AncientWisp/AncientWispCannon.prefab"; public static string AncientWispCannonGhost = "RoR2/Junk/AncientWisp/AncientWispCannonGhost.prefab"; public static string AncientWispEnrage = "RoR2/Junk/AncientWisp/AncientWispEnrage.prefab"; public static string AncientWispExplosion = "RoR2/Junk/AncientWisp/AncientWispExplosion.prefab"; public static string AncientWispPillar = "RoR2/Junk/AncientWisp/AncientWispPillar.prefab"; public static string AncientWispSwingTrail = "RoR2/Junk/AncientWisp/AncientWispSwingTrail.prefab"; public static string ChargeAncientWispBomb = "RoR2/Junk/AncientWisp/ChargeAncientWispBomb.prefab"; public static string ArchWispBody = "RoR2/Junk/ArchWisp/ArchWispBody.prefab"; public static string ArchWispDeath = "RoR2/Junk/ArchWisp/ArchWispDeath.prefab"; public static string ArchWispMaster = "RoR2/Junk/ArchWisp/ArchWispMaster.prefab"; public static string ArchWispPreDeathEffect = "RoR2/Junk/ArchWisp/ArchWispPreDeathEffect.prefab"; public static string mdlArchWisp = "RoR2/Junk/ArchWisp/mdlArchWisp.fbx"; public static string ArchWispCannon = "RoR2/Junk/ArchWisp/ArchWispCannon.prefab"; public static string ArchWispCannonGhost = "RoR2/Junk/ArchWisp/ArchWispCannonGhost.prefab"; public static string ArchWispFireTrail = "RoR2/Junk/ArchWisp/ArchWispFireTrail.prefab"; public static string ArchWispFireTrailSegment = "RoR2/Junk/ArchWisp/ArchWispFireTrailSegment.prefab"; public static string ArchWispGroundCannon = "RoR2/Junk/ArchWisp/ArchWispGroundCannon.prefab"; public static string ArchWispGroundCannonGhost = "RoR2/Junk/ArchWisp/ArchWispGroundCannonGhost.prefab"; public static string ChargeArchWisp = "RoR2/Junk/ArchWisp/ChargeArchWisp.prefab"; public static string OmniExplosionVFXArchWispCannonImpact = "RoR2/Junk/ArchWisp/OmniExplosionVFXArchWispCannonImpact.prefab"; public static string AssassinBody = "RoR2/Junk/Assassin/AssassinBody.prefab"; public static string mdlRoboAssassin = "RoR2/Junk/Assassin/mdlRoboAssassin.fbx"; public static string AssassinDaggerSwing = "RoR2/Junk/Assassin/AssassinDaggerSwing.prefab"; public static string BackupDroneOldBody = "RoR2/Junk/BackupDroneOld/BackupDroneOldBody.prefab"; public static string BackstabSpark = "RoR2/Junk/Bandit/BackstabSpark.prefab"; public static string BanditBody = "RoR2/Junk/Bandit/BanditBody.prefab"; public static string BanditCrosshair = "RoR2/Junk/Bandit/BanditCrosshair.prefab"; public static string ChargeBanditPistol = "RoR2/Junk/Bandit/ChargeBanditPistol.prefab"; public static string HitsparkBanditPistol = "RoR2/Junk/Bandit/HitsparkBanditPistol.prefab"; public static string mdlBandit = "RoR2/Junk/Bandit/mdlBandit.fbx"; public static string OmniImpactExecuteBandit = "RoR2/Junk/Bandit/OmniImpactExecuteBandit.prefab"; public static string BanditBomblets = "RoR2/Junk/Bandit/BanditBomblets.prefab"; public static string BanditClusterBombSeed = "RoR2/Junk/Bandit/BanditClusterBombSeed.prefab"; public static string BanditClusterGrenadeProjectile = "RoR2/Junk/Bandit/BanditClusterGrenadeProjectile.prefab"; public static string BanditGrenadeGhost = "RoR2/Junk/Bandit/BanditGrenadeGhost.prefab"; public static string BanditGrenadeProjectile = "RoR2/Junk/Bandit/BanditGrenadeProjectile.prefab"; public static string MuzzleflashBanditPistol = "RoR2/Junk/Bandit/MuzzleflashBanditPistol.prefab"; public static string MuzzleflashBanditShotgun = "RoR2/Junk/Bandit/MuzzleflashBanditShotgun.prefab"; public static string SmokescreenEffect = "RoR2/Junk/Bandit/SmokescreenEffect.prefab"; public static string Thermite = "RoR2/Junk/Bandit/Thermite.prefab"; public static string ThermiteGhost = "RoR2/Junk/Bandit/ThermiteGhost.prefab"; public static string TracerBanditShotgun = "RoR2/Junk/Bandit/TracerBanditShotgun.prefab"; public static string ImpactBeetle = "RoR2/Junk/Beetle/ImpactBeetle.prefab"; public static string BeetleCrystalBody = "RoR2/Junk/BeetleCrystal/BeetleCrystalBody.prefab"; public static string BeetleCrystalMaster = "RoR2/Junk/BeetleCrystal/BeetleCrystalMaster.prefab"; public static string mdlBeetleCrystal = "RoR2/Junk/BeetleCrystal/mdlBeetleCrystal.fbx"; public static string BeetleGuardCrystalBody = "RoR2/Junk/BeetleGuardCrystal/BeetleGuardCrystalBody.prefab"; public static string BeetleGuardMasterCrystal = "RoR2/Junk/BeetleGuardCrystal/BeetleGuardMasterCrystal.prefab"; public static string mdlBeetleGuardCrystal = "RoR2/Junk/BeetleGuardCrystal/mdlBeetleGuardCrystal.fbx"; public static string BeetleGrubGhost = "RoR2/Junk/BeetleQueen/BeetleGrubGhost.prefab"; public static string BeetleGrubMine = "RoR2/Junk/BeetleQueen/BeetleGrubMine.prefab"; public static string mdlBeetleGrub = "RoR2/Junk/BeetleQueen/mdlBeetleGrub.fbx"; public static string BellDeath = "RoR2/Junk/Bell/BellDeath.prefab"; public static string BellDevice = "RoR2/Junk/Bell/BellDevice.prefab"; public static string BellPreDeath = "RoR2/Junk/Bell/BellPreDeath.prefab"; public static string BomberBody = "RoR2/Junk/Bomber/BomberBody.prefab"; public static string Rocket = "RoR2/Junk/Bomber/Rocket.prefab"; public static string BrotherSunderWaveEnergizedExplosion = "RoR2/Junk/Brother/BrotherSunderWaveEnergizedExplosion.prefab"; public static string BrotherGlassBody = "RoR2/Junk/BrotherGlass/BrotherGlassBody.prefab"; public static string BrotherGlassMaster = "RoR2/Junk/BrotherGlass/BrotherGlassMaster.prefab"; public static string CaptainAirstrikeProjectile2 = "RoR2/Junk/Captain/CaptainAirstrikeProjectile2.prefab"; public static string CaptainAirstrikeProjectile3 = "RoR2/Junk/Captain/CaptainAirstrikeProjectile3.prefab"; public static string CaptainBodyArmorBlockEffect = "RoR2/Junk/Captain/CaptainBodyArmorBlockEffect.prefab"; public static string TarBall = "RoR2/Junk/ClayBoss/TarBall.prefab"; public static string ClayBody = "RoR2/Junk/ClayMan/ClayBody.prefab"; public static string ClaymanMaster = "RoR2/Junk/ClayMan/ClaymanMaster.prefab"; public static string ClaySpawnEffect = "RoR2/Junk/ClayMan/ClaySpawnEffect.prefab"; public static string mdlClay = "RoR2/Junk/ClayMan/mdlClay.fbx"; public static string ClaymanSwordSwing = "RoR2/Junk/ClayMan/ClaymanSwordSwing.prefab"; public static string FMJImpact = "RoR2/Junk/Commando/FMJImpact.prefab"; public static string FMJParticle = "RoR2/Junk/Commando/FMJParticle.prefab"; public static string HitsparkBarrage = "RoR2/Junk/Commando/HitsparkBarrage.prefab"; public static string HitsparkCommandoBarrage = "RoR2/Junk/Commando/HitsparkCommandoBarrage.prefab"; public static string HitsparkCommandoFMJ = "RoR2/Junk/Commando/HitsparkCommandoFMJ.prefab"; public static string HitsparkFMJ = "RoR2/Junk/Commando/HitsparkFMJ.prefab"; public static string CommandoStickyGrenadeGhost = "RoR2/Junk/Commando/CommandoStickyGrenadeGhost.prefab"; public static string CommandoStickyGrenadeProjectile = "RoR2/Junk/Commando/CommandoStickyGrenadeProjectile.prefab"; public static string FMJGhost = "RoR2/Junk/Commando/FMJGhost.prefab"; public static string TracerBarrage = "RoR2/Junk/Commando/TracerBarrage.prefab"; public static string TracerBarrage2 = "RoR2/Junk/Commando/TracerBarrage2.prefab"; public static string CommandoPerformanceTestBody = "RoR2/Junk/CommandoPerformanceTest/CommandoPerformanceTestBody.prefab"; public static string DroneRocket = "RoR2/Junk/Drones/DroneRocket.prefab"; public static string ExplosionDroneInitial = "RoR2/Junk/Drones/ExplosionDroneInitial.prefab"; public static string RocketGhost = "RoR2/Junk/Drones/RocketGhost.prefab"; public static string ElectricWormImpactExplosion = "RoR2/Junk/ElectricWorm/ElectricWormImpactExplosion.prefab"; public static string EnforcerBody = "RoR2/Junk/Enforcer/EnforcerBody.prefab"; public static string EngiBeamTurretBody = "RoR2/Junk/Engi/EngiBeamTurretBody.prefab"; public static string EngiBeamTurretMaster = "RoR2/Junk/Engi/EngiBeamTurretMaster.prefab"; public static string EngiShield = "RoR2/Junk/Engi/EngiShield.prefab"; public static string EngiShieldRetractIndicator = "RoR2/Junk/Engi/EngiShieldRetractIndicator.prefab"; public static string ExplosionEngiTurretDeath = "RoR2/Junk/Engi/ExplosionEngiTurretDeath.prefab"; public static string EngiWallShield = "RoR2/Junk/Engi/EngiWallShield.prefab"; public static string EngiMineDeployer = "RoR2/Junk/Engi/EngiMineDeployer.prefab"; public static string ShieldTransferIndicator = "RoR2/Junk/Engi/ShieldTransferIndicator.prefab"; public static string EngiConcussionExplosion = "RoR2/Junk/Engi/EngiConcussionExplosion.prefab"; public static string EngiHarpoonOrbEffect = "RoR2/Junk/Engi/EngiHarpoonOrbEffect.prefab"; public static string EngiSeekerGrenadeProjectile = "RoR2/Junk/Engi/EngiSeekerGrenadeProjectile.prefab"; public static string WallShieldEndEffect = "RoR2/Junk/Engi/WallShieldEndEffect.prefab"; public static string GolemBodyInvincible = "RoR2/Junk/GolemBodyInvincible/GolemBodyInvincible.prefab"; public static string GrandparentPortalFistInEffect = "RoR2/Junk/GrandParent/GrandparentPortalFistInEffect.prefab"; public static string GrandparentPortalFistOutEffect = "RoR2/Junk/GrandParent/GrandparentPortalFistOutEffect.prefab"; public static string SpawnGravekeeperEffect = "RoR2/Junk/Gravekeeper/SpawnGravekeeperEffect.prefab"; public static string ExplosionGreaterWisp = "RoR2/Junk/GreaterWisp/ExplosionGreaterWisp.prefab"; public static string HANDBody = "RoR2/Junk/HAND/HANDBody.prefab"; public static string mdlHANDWinch = "RoR2/Junk/HAND/mdlHANDWinch.fbx"; public static string GravekeeperHookProjectile = "RoR2/Junk/HAND/GravekeeperHookProjectile.prefab"; public static string HANDHeal = "RoR2/Junk/HAND/HANDHeal.prefab"; public static string HANDSlamTrail = "RoR2/Junk/HAND/HANDSlamTrail.prefab"; public static string HaulerBody = "RoR2/Junk/Hauler/HaulerBody.prefab"; public static string mdlHauler = "RoR2/Junk/Hauler/mdlHauler.fbx"; public static string Arrow = "RoR2/Junk/Huntress/Arrow.prefab"; public static string ArrowGhost = "RoR2/Junk/Huntress/ArrowGhost.prefab"; public static string GlaiveGhost = "RoR2/Junk/Huntress/GlaiveGhost.prefab"; public static string ImpactHuntress = "RoR2/Junk/Huntress/ImpactHuntress.prefab"; public static string ImpactHuntressArrowRain = "RoR2/Junk/Huntress/ImpactHuntressArrowRain.prefab"; public static string Spine = "RoR2/Junk/Imp/Spine.prefab"; public static string SpineGhost = "RoR2/Junk/Imp/SpineGhost.prefab"; public static string ImpCrawler = "RoR2/Junk/ImpBoss/ImpCrawler.prefab"; public static string ImpCrawlerGhost = "RoR2/Junk/ImpBoss/ImpCrawlerGhost.prefab"; public static string LemurianSlash = "RoR2/Junk/Lemurian/LemurianSlash.prefab"; public static string LemurianBouncyFireball = "RoR2/Junk/LemurianBruiser/LemurianBouncyFireball.prefab"; public static string LemurianBruiserMasterHaunted = "RoR2/Junk/LemurianBruiserHaunted/LemurianBruiserMasterHaunted.prefab"; public static string LemurianBruiserMasterPoison = "RoR2/Junk/LemurianBruiserPoison/LemurianBruiserMasterPoison.prefab"; public static string LoaderLungeVisualizer = "RoR2/Junk/Loader/LoaderLungeVisualizer.prefab"; public static string LunarWispMinigunBulletEffect = "RoR2/Junk/LunarWisp/LunarWispMinigunBulletEffect.prefab"; public static string LunarWispMinigunChargeUp = "RoR2/Junk/LunarWisp/LunarWispMinigunChargeUp.prefab"; public static string LunarWispMinigunImpactHit = "RoR2/Junk/LunarWisp/LunarWispMinigunImpactHit.prefab"; public static string LunarWispTrackingBombExpPrf = "RoR2/Junk/LunarWisp/LunarWispTrackingBombExp_Prf.prefab"; public static string LunarWispTrackingBombExplosion22 = "RoR2/Junk/LunarWisp/LunarWispTrackingBombExplosion.prefab"; public static string MuzzleflashLunarWispBomb = "RoR2/Junk/LunarWisp/MuzzleflashLunarWispBomb.prefab"; public static string ChargeMageFireBomb = "RoR2/Junk/Mage/ChargeMageFireBomb.prefab"; public static string FirePillarEffect = "RoR2/Junk/Mage/FirePillarEffect.prefab"; public static string MageFireTrail = "RoR2/Junk/Mage/MageFireTrail.prefab"; public static string MageLightningBombExplosion = "RoR2/Junk/Mage/MageLightningBombExplosion.prefab"; public static string MuzzleflashMageFireLarge = "RoR2/Junk/Mage/MuzzleflashMageFireLarge.prefab"; public static string FrozenImpactEffect = "RoR2/Junk/Mage/FrozenImpactEffect.prefab"; public static string MageFirebolt = "RoR2/Junk/Mage/MageFirebolt.prefab"; public static string MageFireboltExpanded = "RoR2/Junk/Mage/MageFireboltExpanded.prefab"; public static string MageFireboltExpandedGhost = "RoR2/Junk/Mage/MageFireboltExpandedGhost.prefab"; public static string MageFireBombProjectile = "RoR2/Junk/Mage/MageFireBombProjectile.prefab"; public static string MageFirePillarGhost = "RoR2/Junk/Mage/MageFirePillarGhost.prefab"; public static string MageFirewallPillarProjectile = "RoR2/Junk/Mage/MageFirewallPillarProjectile.prefab"; public static string MageFirewallSeedGhost = "RoR2/Junk/Mage/MageFirewallSeedGhost.prefab"; public static string MageFirewallSeedProjectile = "RoR2/Junk/Mage/MageFirewallSeedProjectile.prefab"; public static string MageFirewallWalkerProjectile = "RoR2/Junk/Mage/MageFirewallWalkerProjectile.prefab"; public static string MageIceBolt = "RoR2/Junk/Mage/MageIceBolt.prefab"; public static string MageIceboltExpanded = "RoR2/Junk/Mage/MageIceboltExpanded.prefab"; public static string MageIceboltExpandedGhost = "RoR2/Junk/Mage/MageIceboltExpandedGhost.prefab"; public static string MageIceBoltGhost = "RoR2/Junk/Mage/MageIceBoltGhost.prefab"; public static string MageIcewallSeedGhost = "RoR2/Junk/Mage/MageIcewallSeedGhost.prefab"; public static string MageIcewallSeedProjectile = "RoR2/Junk/Mage/MageIcewallSeedProjectile.prefab"; public static string MageLightningboltExpanded = "RoR2/Junk/Mage/MageLightningboltExpanded.prefab"; public static string MageLightningboltExpandedGhost = "RoR2/Junk/Mage/MageLightningboltExpandedGhost.prefab"; public static string MageLightningwallSeedGhost = "RoR2/Junk/Mage/MageLightningwallSeedGhost.prefab"; public static string MageLightningWallSeedProjectile = "RoR2/Junk/Mage/MageLightningWallSeedProjectile.prefab"; public static string MuzzleflashMageIce = "RoR2/Junk/Mage/MuzzleflashMageIce.prefab"; public static string TracerMageFireLaser = "RoR2/Junk/Mage/TracerMageFireLaser.prefab"; public static string TracerMageIceLaser = "RoR2/Junk/Mage/TracerMageIceLaser.prefab"; public static string TracerMageLightningLaser = "RoR2/Junk/Mage/TracerMageLightningLaser.prefab"; public static string MagmaWormRupture = "RoR2/Junk/MagmaWorm/MagmaWormRupture.prefab"; public static string MagmaWormWarning = "RoR2/Junk/MagmaWorm/MagmaWormWarning.prefab"; public static string MegaDroneDeathExplosion = "RoR2/Junk/MegaDrone/MegaDroneDeathExplosion.prefab"; public static string ImpactMercSwing = "RoR2/Junk/Merc/ImpactMercSwing.prefab"; public static string SporeGrenadeMuzzleEffect = "RoR2/Junk/MiniMushroom/SporeGrenadeMuzzleEffect.prefab"; public static string SporesEffect = "RoR2/Junk/MiniMushroom/SporesEffect.prefab"; public static string PaladinBody = "RoR2/Junk/Paladin/PaladinBody.prefab"; public static string PaladinBigRocket = "RoR2/Junk/Paladin/PaladinBigRocket.prefab"; public static string ParentSlamTrail = "RoR2/Junk/Parent/ParentSlamTrail.prefab"; public static string ParentSpawnInEffect = "RoR2/Junk/Parent/ParentSpawnInEffect.prefab"; public static string ParentTeleportEffect = "RoR2/Junk/Parent/ParentTeleportEffect.prefab"; public static string ParentTeleportIndicator = "RoR2/Junk/Parent/ParentTeleportIndicator.prefab"; public static string ParentTeleportMovementIndicator = "RoR2/Junk/Parent/ParentTeleportMovementIndicator.prefab"; public static string mdlPot2 = "RoR2/Junk/Pot2/mdlPot2.fbx"; public static string mdlPot2Debris = "RoR2/Junk/Pot2/mdlPot2Debris.fbx"; public static string Pot2Body = "RoR2/Junk/Pot2/Pot2Body.prefab"; public static string Pot2Debris = "RoR2/Junk/Pot2/Pot2Debris.prefab"; public static string mdlPotMobile = "RoR2/Junk/PotMobile/mdlPotMobile.fbx"; public static string PotMobileBody = "RoR2/Junk/PotMobile/PotMobileBody.prefab"; public static string ImpactPotMobileCannon = "RoR2/Junk/PotMobile/ImpactPotMobileCannon.prefab"; public static string MuzzleflashPotMobileCannon = "RoR2/Junk/PotMobile/MuzzleflashPotMobileCannon.prefab"; public static string PotMobile2Body = "RoR2/Junk/PotMobile2/PotMobile2Body.prefab"; public static string ExplosionDroneDeath = "RoR2/Junk/Scout/ExplosionDroneDeath.prefab"; public static string ScoutGrenade = "RoR2/Junk/Scout/ScoutGrenade.prefab"; public static string LaserPointerBeamEnd = "RoR2/Junk/Sniper/LaserPointerBeamEnd.prefab"; public static string SniperCrosshair = "RoR2/Junk/Sniper/SniperCrosshair.prefab"; public static string TracerSmokeChase = "RoR2/Junk/Sniper/TracerSmokeChase.prefab"; public static string SniperBody = "RoR2/Junk/Sniper/SniperBody.prefab"; public static string mdlSquidTurret18 = "RoR2/Junk/Squid/mdlSquidTurret.fbx"; public static string mdlTank = "RoR2/Junk/Tank/mdlTank.fbx"; public static string Tank = "RoR2/Junk/Tank/Tank.prefab"; public static string ToolbotDroneHeal = "RoR2/Junk/Toolbot/ToolbotDroneHeal.prefab"; public static string ToolbotDroneStun = "RoR2/Junk/Toolbot/ToolbotDroneStun.prefab"; public static string SpearChargeUpVFX = "RoR2/Junk/Toolbot/SpearChargeUpVFX.prefab"; public static string TreebotPounderExplosion = "RoR2/Junk/Treebot/TreebotPounderExplosion.prefab"; public static string OmniExplosionVFXTreebotSeedPodMortar = "RoR2/Junk/Treebot/OmniExplosionVFXTreebotSeedPodMortar.prefab"; public static string SeedpodMortarProjectile = "RoR2/Junk/Treebot/SeedpodMortarProjectile.prefab"; public static string SeedpodPlantedGhost = "RoR2/Junk/Treebot/SeedpodPlantedGhost.prefab"; public static string SeedpodPlantedProjectile = "RoR2/Junk/Treebot/SeedpodPlantedProjectile.prefab"; public static string SonicBoomEffect = "RoR2/Junk/Treebot/SonicBoomEffect.prefab"; public static string TreebotMortarRainMuzzleflash = "RoR2/Junk/Treebot/TreebotMortarRainMuzzleflash.prefab"; public static string TreebotPounderProjectile = "RoR2/Junk/Treebot/TreebotPounderProjectile.prefab"; public static string TreebotShockwavePullEffect = "RoR2/Junk/Treebot/TreebotShockwavePullEffect.prefab"; public static string TreebotBurrowIn = "RoR2/Junk/Treebot/TreebotBurrowIn.prefab"; public static string TreePoisonDartOrbEffect = "RoR2/Junk/Treebot/TreePoisonDartOrbEffect.prefab"; public static string VagrantMuzzleFlashWhite = "RoR2/Junk/Vagrant/VagrantMuzzleFlashWhite.prefab"; public static string ImpactWispEmber = "RoR2/Junk/Wisp/ImpactWispEmber.prefab"; public static string TracerWisp = "RoR2/Junk/Wisp/TracerWisp.prefab"; public static string WispImpact = "RoR2/Junk/Wisp/WispImpact.prefab"; public static string WispSpawn26 = "RoR2/Junk/Wisp/WispSpawn.prefab"; public static string Dropship = "RoR2/Junk/Common/Dropship.prefab"; public static string InteractDebugPrefab = "RoR2/Junk/Common/InteractDebugPrefab.prefab"; public static string LevelUp = "RoR2/Junk/Common/LevelUp.prefab"; public static string spmFlower1 = "RoR2/Junk/Common/Props/spmFlower1.spm"; public static string spmFlower2 = "RoR2/Junk/Common/Props/spmFlower2.spm"; public static string spmFlower2Baby = "RoR2/Junk/Common/Props/spmFlower2Baby.spm"; public static string spmFlower3 = "RoR2/Junk/Common/Props/spmFlower3.spm"; public static string spmGrassFrond1 = "RoR2/Junk/Common/Props/spmGrassFrond1.spm"; public static string spmGrassFrond1Placed = "RoR2/Junk/Common/Props/spmGrassFrond1Placed.prefab"; public static string spmVine1 = "RoR2/Junk/Common/Props/spmVine1.spm"; public static string spmVine1Pillar = "RoR2/Junk/Common/Props/spmVine1Pillar.spm"; public static string BlobBall = "RoR2/Junk/Common/VFX/BlobBall.prefab"; public static string FireBillboardSingle = "RoR2/Junk/Common/VFX/FireBillboardSingle.prefab"; public static string Healthglobe = "RoR2/Junk/Common/VFX/Healthglobe.prefab"; public static string ImpactLightning = "RoR2/Junk/Common/VFX/ImpactLightning.prefab"; public static string PointPing = "RoR2/Junk/Common/VFX/PointPing.prefab"; public static string SnowWisps = "RoR2/Junk/Common/VFX/SnowWisps.prefab"; public static string SprintBoostEffect = "RoR2/Junk/Common/VFX/SprintBoostEffect.prefab"; public static string TrackerPing = "RoR2/Junk/Common/VFX/TrackerPing.prefab"; public static string WeakPointProcEffect = "RoR2/Junk/Common/VFX/WeakPointProcEffect.prefab"; public static string SpawnPoint35 = "RoR2/Junk/Core/SpawnPoint.prefab"; public static string RedAffixMissileGhost = "RoR2/Junk/EliteFire/RedAffixMissileGhost.prefab"; public static string RedAffixMissileProjectile = "RoR2/Junk/EliteFire/RedAffixMissileProjectile.prefab"; public static string GoldAffixEffect = "RoR2/Junk/EliteGold/GoldAffixEffect.prefab"; public static string PickupAffixGreen = "RoR2/Junk/EliteGreen/PickupAffixGreen.prefab"; public static string HauntOrbEffect = "RoR2/Junk/EliteHaunted/HauntOrbEffect.prefab"; public static string PoisonStakeGhost = "RoR2/Junk/ElitePoison/PoisonStakeGhost.prefab"; public static string GatewayProjectile = "RoR2/Junk/Gateway/GatewayProjectile.prefab"; public static string GatewayProjectileGhost = "RoR2/Junk/Gateway/GatewayProjectileGhost.prefab"; public static string GhostGun5 = "RoR2/Junk/GhostGun/GhostGun.prefab"; public static string PickupGhostRevolver = "RoR2/Junk/GhostGun/PickupGhostRevolver.prefab"; public static string ChargeOrbitalLaser = "RoR2/Junk/OrbitalLaser/ChargeOrbitalLaser.prefab"; public static string OrbitalLaser11 = "RoR2/Junk/OrbitalLaser/OrbitalLaser.prefab"; public static string TracerAncientWisp = "RoR2/Junk/OrbitalLaser/TracerAncientWisp.prefab"; public static string SawmerangCrosshair = "RoR2/Junk/Sawmerang/SawmerangCrosshair.prefab"; public static string SawmerangGlint = "RoR2/Junk/Sawmerang/SawmerangGlint.prefab"; public static string BaseDefenseRun = "RoR2/Junk/BaseDefenseRun/BaseDefenseRun.prefab"; public static string InputStickVisualizer = "RoR2/Junk/InputStickVisualizer.prefab"; public static string ArtifactTrial1Controller = "RoR2/Junk/ArtifactTrial1Controller/ArtifactTrial1Controller.prefab"; public static string ArtifactTrial2Controller = "RoR2/Junk/ArtifactTrial2Controller/ArtifactTrial2Controller.prefab"; public static string BaseArtifactTrialController = "RoR2/Junk/BaseArtifactTrialController/BaseArtifactTrialController.prefab"; public static string BlueprintStation = "RoR2/Junk/BlueprintStation.prefab"; public static string mdlDropship30 = "RoR2/Junk/Dropship/mdlDropship.fbx"; public static string EscapePod = "RoR2/Junk/EscapePod/EscapePod.prefab"; public static string MainEndingInteractable = "RoR2/Junk/MainEndingInteractable.prefab"; public static string mdlOldChest1 = "RoR2/Junk/Old Chest 1/mdlOldChest1.fbx"; public static string mdlShrine1 = "RoR2/Junk/Shrine 1/mdlShrine1.fbx"; public static string mdlShrineWisp = "RoR2/Junk/Shrine, Wisp/mdlShrineWisp.fbx"; public static string mdlShrineWispTotem = "RoR2/Junk/Shrine, Wisp/mdlShrineWispTotem.fbx"; public static string ShrineCleanseAll = "RoR2/Junk/ShrineCleanseAll/ShrineCleanseAll.prefab"; public static string SingleLunarShop = "RoR2/Junk/SingleLunarShop.prefab"; public static string ChargeBeam = "RoR2/Junk/Teleporter/ChargeBeam.prefab"; public static string TeleporterBeaconEffect = "RoR2/Junk/Teleporter/TeleporterBeaconEffect.prefab"; public static string mdlTeleporter = "RoR2/Junk/Teleporter/mdlTeleporter.fbx"; public static string mdlYoungTeleporter = "RoR2/Junk/Teleporter/mdlYoungTeleporter.fbx"; public static string TimerHologramContent = "RoR2/Junk/Teleporter/TimerHologramContent.prefab"; public static string YoungTeleporter = "RoR2/Junk/YoungTeleporter.prefab"; public static string AACannon5 = "RoR2/Junk/AACannon/AACannon.prefab"; public static string AACannonGhost = "RoR2/Junk/AACannon/AACannonGhost.prefab"; public static string ImpactAACannon = "RoR2/Junk/AACannon/ImpactAACannon.prefab"; public static string mdlItemBase = "RoR2/Junk/Base/mdlItemBase.fbx"; public static string ChainLightningGhost = "RoR2/Junk/ChainLightning/ChainLightningGhost.prefab"; public static string DisplaySkull = "RoR2/Junk/CooldownOnCrit/DisplaySkull.prefab"; public static string mdlSkull = "RoR2/Junk/CooldownOnCrit/mdlSkull.fbx"; public static string PickupSkull = "RoR2/Junk/CooldownOnCrit/PickupSkull.prefab"; public static string mdlCrabClaw = "RoR2/Junk/Crab Claw/mdlCrabClaw.fbx"; public static string TestCrabClaw = "RoR2/Junk/Crab Claw/TestCrabClaw.prefab"; public static string DeathMarkAfflictionEffect = "RoR2/Junk/DeathMark/DeathMarkAfflictionEffect.prefab"; public static string FireworkExplosion = "RoR2/Junk/Fireworks/FireworkExplosion.prefab"; public static string FireworkExplosion3 = "RoR2/Junk/Fireworks/FireworkExplosion3.prefab"; public static string DisplayAncestralIncubator = "RoR2/Junk/Incubator/DisplayAncestralIncubator.prefab"; public static string mdlAncestralIncubator = "RoR2/Junk/Incubator/mdlAncestralIncubator.fbx"; public static string mdlAncestralIncubatordeath = "RoR2/Junk/Incubator/mdlAncestralIncubator@death.FBX"; public static string mdlAncestralIncubatordefault = "RoR2/Junk/Incubator/mdlAncestralIncubator@default.fbx"; public static string mdlAncestralIncubatorhatch = "RoR2/Junk/Incubator/mdlAncestralIncubator@hatch.FBX"; public static string mdlAncestralIncubatorIdle = "RoR2/Junk/Incubator/mdlAncestralIncubator@Idle.FBX"; public static string mdlAncestralIncubatorspawn = "RoR2/Junk/Incubator/mdlAncestralIncubator@spawn.FBX"; public static string ParentPodBody = "RoR2/Junk/Incubator/ParentPodBody.prefab"; public static string ParentPodDeathEffect = "RoR2/Junk/Incubator/ParentPodDeathEffect.prefab"; public static string ParentPodHatchEffect = "RoR2/Junk/Incubator/ParentPodHatchEffect.prefab"; public static string ParentPodMaster = "RoR2/Junk/Incubator/ParentPodMaster.prefab"; public static string ParentPodSpawnEffect = "RoR2/Junk/Incubator/ParentPodSpawnEffect.prefab"; public static string PickupAncestralIncubator = "RoR2/Junk/Incubator/PickupAncestralIncubator.prefab"; public static string WoundSlashImpact = "RoR2/Junk/LunarSkillReplacements/WoundSlashImpact.prefab"; public static string WoundSlashMuzzleflash = "RoR2/Junk/LunarSkillReplacements/WoundSlashMuzzleflash.prefab"; public static string WoundDelayEffect = "RoR2/Junk/LunarSkillReplacements/WoundDelayEffect.prefab"; public static string MedkitCharge = "RoR2/Junk/Medkit/MedkitCharge.prefab"; public static string MissileCluster = "RoR2/Junk/Missile/MissileCluster.prefab"; public static string RocketGhost35 = "RoR2/Junk/Missile/RocketGhost.prefab"; public static string MonstersOnShrineUse1 = "RoR2/Junk/MonstersOnShrineUse/MonstersOnShrineUse.prefab"; public static string MonstersOnShrineUseGold = "RoR2/Junk/MonstersOnShrineUse/MonstersOnShrineUseGold.prefab"; public static string MushroomProp = "RoR2/Junk/Mushroom/MushroomProp.prefab"; public static string ChainPlasmaGhost = "RoR2/Junk/PlasmaCore/ChainPlasmaGhost.prefab"; public static string PlasmaCore30 = "RoR2/Junk/PlasmaCore/PlasmaCore.prefab"; public static string PlasmaCoreGhost = "RoR2/Junk/PlasmaCore/PlasmaCoreGhost.prefab"; public static string RegenBoostEffect = "RoR2/Junk/RegenOnKill/RegenBoostEffect.prefab"; public static string SiphonOnLowHealthBodyAttatchment = "RoR2/Junk/SiphonOnLowHealth/SiphonOnLowHealthBodyAttatchment.prefab"; public static string SiphonTether = "RoR2/Junk/SiphonOnLowHealth/SiphonTether.prefab"; public static string SiphonTetherBurst = "RoR2/Junk/SiphonOnLowHealth/SiphonTetherBurst.prefab"; public static string mdlBanditCoin = "RoR2/Junk/SkullCounter/mdlBanditCoin.fbx"; public static string TracerSquid = "RoR2/Junk/SquidTurret/TracerSquid.prefab"; public static string TempestWard = "RoR2/Junk/TempestOnKill/TempestWard.prefab"; public static string TPHealNovaEffect = "RoR2/Junk/TPHealNova/TPHealNovaEffect.prefab"; public static string WarCryAura = "RoR2/Junk/WarCryOnCombat/WarCryAura.prefab"; public static string BlueprintPickup = "RoR2/Junk/Misc/BlueprintPickup.prefab"; public static string EngiMineWard = "RoR2/Junk/Misc/EngiMineWard.prefab"; public static string FireAura = "RoR2/Junk/Misc/FireAura.prefab"; public static string ForceSpectate = "RoR2/Junk/Misc/ForceSpectate.prefab"; public static string GrubPack = "RoR2/Junk/Misc/GrubPack.prefab"; public static string ItemStealer = "RoR2/Junk/Misc/ItemStealer.prefab"; public static string LogPickup2 = "RoR2/Junk/Misc/LogPickup2.prefab"; public static string LunarFireballVehicle = "RoR2/Junk/Misc/LunarFireballVehicle.prefab"; public static string mdlBlueprint = "RoR2/Junk/Misc/mdlBlueprint.fbx"; public static string PickupBirdSpecial = "RoR2/Junk/Misc/PickupBirdSpecial.prefab"; public static string PoisonAura = "RoR2/Junk/Misc/PoisonAura.prefab"; public static string TitanForCoverArt = "RoR2/Junk/Misc/TitanForCoverArt.prefab"; public static string ToolbotPod = "RoR2/Junk/Misc/ToolbotPod.prefab"; public static string MonsterCounter = "RoR2/Junk/MonsterCounter.prefab"; public static string DCCrystalSmallVariant = "RoR2/Junk/dampcave/DCCrystalSmall Variant.prefab"; public static string DeadCommandoProp = "RoR2/Junk/golemplains_trailer/DeadCommandoProp.prefab"; public static string ReleaseDropshipObjectiveTrigger = "RoR2/Junk/moon2/ReleaseDropshipObjectiveTrigger.prefab"; public static string mdlGolemBridge1 = "RoR2/Junk/Old Stage1/mdlGolemBridge1.fbx"; public static string GolemDead1 = "RoR2/Junk/Old Stage1/GolemDead1.prefab"; public static string GolemDead2 = "RoR2/Junk/Old Stage1/GolemDead2.prefab"; public static string GolemDead3 = "RoR2/Junk/Old Stage1/GolemDead3.prefab"; public static string GolemDoll = "RoR2/Junk/Old Stage1/GolemDoll.prefab"; public static string GolemDollNoCollision = "RoR2/Junk/Old Stage1/GolemDollNoCollision.prefab"; public static string Gravestone = "RoR2/Junk/Old Stage1/Gravestone.prefab"; public static string mdlGravestone1 = "RoR2/Junk/Old Stage1/mdlGravestone1.fbx"; public static string mdlBush1 = "RoR2/Junk/Old Stage1/mdlBush1.fbx"; public static string mdlEggplant1 = "RoR2/Junk/Old Stage1/mdlEggplant1.fbx"; public static string mdlPolyp1 = "RoR2/Junk/Old Stage1/mdlPolyp1.fbx"; public static string mdlTree1 = "RoR2/Junk/Old Stage1/mdlTree1.fbx"; public static string mdlTree2 = "RoR2/Junk/Old Stage1/mdlTree2.fbx"; public static string detailRock = "RoR2/Junk/Old Stage1/detailRock.prefab"; public static string mdlRock2 = "RoR2/Junk/Old Stage1/mdlRock2.fbx"; public static string Rock1 = "RoR2/Junk/Old Stage1/Rock1.prefab"; public static string Rock2 = "RoR2/Junk/Old Stage1/Rock2.prefab"; public static string Rock3 = "RoR2/Junk/Old Stage1/Rock3.prefab"; public static string Column1 = "RoR2/Junk/Old Stage1/Column1.prefab"; public static string Column1Bridge = "RoR2/Junk/Old Stage1/Column1Bridge.prefab"; public static string mdlColumn1 = "RoR2/Junk/Old Stage1/mdlColumn1.fbx"; public static string mdlTempleBridge1 = "RoR2/Junk/Old Stage1/mdlTempleBridge1.fbx"; public static string mdlTempleBridgeSlanted1 = "RoR2/Junk/Old Stage1/mdlTempleBridgeSlanted1.fbx"; public static string mdlTempleCeiling1 = "RoR2/Junk/Old Stage1/mdlTempleCeiling1.fbx"; public static string mdlTemplePillar1 = "RoR2/Junk/Old Stage1/mdlTemplePillar1.fbx"; public static string mdlTempleWall1 = "RoR2/Junk/Old Stage1/mdlTempleWall1.fbx"; public static string mdlTempleWallHuge1 = "RoR2/Junk/Old Stage1/mdlTempleWallHuge1.fbx"; public static string mdlWall1 = "RoR2/Junk/Old Stage1/mdlWall1.fbx"; public static string TempleBridge1 = "RoR2/Junk/Old Stage1/TempleBridge1.prefab"; public static string TempleBridgeSlanted1 = "RoR2/Junk/Old Stage1/TempleBridgeSlanted1.prefab"; public static string TempleCeiling = "RoR2/Junk/Old Stage1/TempleCeiling.prefab"; public static string TemplePillar1 = "RoR2/Junk/Old Stage1/TemplePillar1.prefab"; public static string TempleWall1 = "RoR2/Junk/Old Stage1/TempleWall1.prefab"; public static string TempleWallHuge1 = "RoR2/Junk/Old Stage1/TempleWallHuge1.prefab"; public static string Globe1 = "RoR2/Junk/Old Stage1/Globe1.prefab"; public static string GravpadTemple2 = "RoR2/Junk/Old Stage1/GravpadTemple2.prefab"; public static string mdlGlobe1 = "RoR2/Junk/Old Stage1/mdlGlobe1.fbx"; public static string mdlTemple2Arch = "RoR2/Junk/Old Stage1/mdlTemple2Arch.fbx"; public static string mdlTemple2ArchSimple = "RoR2/Junk/Old Stage1/mdlTemple2ArchSimple.fbx"; public static string mdlTemple2ArchSmall = "RoR2/Junk/Old Stage1/mdlTemple2ArchSmall.fbx"; public static string mdlTemple2Column = "RoR2/Junk/Old Stage1/mdlTemple2Column.fbx"; public static string mdlTemple2Crate = "RoR2/Junk/Old Stage1/mdlTemple2Crate.fbx"; public static string mdlTemple2Gravpad = "RoR2/Junk/Old Stage1/mdlTemple2Gravpad.fbx"; public static string mdlTemple2Lip = "RoR2/Junk/Old Stage1/mdlTemple2Lip.fbx"; public static string mdlTemple2Minaret = "RoR2/Junk/Old Stage1/mdlTemple2Minaret.fbx"; public static string mdlTemple2Observatory = "RoR2/Junk/Old Stage1/mdlTemple2Observatory.fbx"; public static string mdlTemple2Pendentive = "RoR2/Junk/Old Stage1/mdlTemple2Pendentive.fbx"; public static string mdlTemple2ShortWall = "RoR2/Junk/Old Stage1/mdlTemple2ShortWall.fbx"; public static string mdlTemple2ShortWallSimple = "RoR2/Junk/Old Stage1/mdlTemple2ShortWallSimple.fbx"; public static string mdlTemple2WallSimple = "RoR2/Junk/Old Stage1/mdlTemple2WallSimple.fbx"; public static string Temple2Arch = "RoR2/Junk/Old Stage1/Temple2Arch.prefab"; public static string Temple2ArchSimple = "RoR2/Junk/Old Stage1/Temple2ArchSimple.prefab"; public static string Temple2ArchSmall = "RoR2/Junk/Old Stage1/Temple2ArchSmall.prefab"; public static string Temple2Column = "RoR2/Junk/Old Stage1/Temple2Column.prefab"; public static string Temple2Crate = "RoR2/Junk/Old Stage1/Temple2Crate.prefab"; public static string Temple2Lip = "RoR2/Junk/Old Stage1/Temple2Lip.prefab"; public static string Temple2Minaret = "RoR2/Junk/Old Stage1/Temple2Minaret.prefab"; public static string Temple2Pendentive = "RoR2/Junk/Old Stage1/Temple2Pendentive.prefab"; public static string Temple2ShortWallSimple = "RoR2/Junk/Old Stage1/Temple2ShortWallSimple.prefab"; public static string Temple2Wall = "RoR2/Junk/Old Stage1/Temple2Wall.prefab"; public static string Temple2WallSimple = "RoR2/Junk/Old Stage1/Temple2WallSimple.prefab"; public static string tesTemple1 = "RoR2/Junk/Old Stage1/tesTemple1.fbx"; public static string Cliff1 = "RoR2/Junk/Old Stage1/Cliff1.prefab"; public static string CliffModular1 = "RoR2/Junk/Old Stage1/CliffModular1.prefab"; public static string DistanceRockSpikeModular1 = "RoR2/Junk/Old Stage1/DistanceRockSpikeModular1.prefab"; public static string DistanceRockSpikeModular2 = "RoR2/Junk/Old Stage1/DistanceRockSpikeModular2.prefab"; public static string IceCaveNoodle1 = "RoR2/Junk/Old Stage1/IceCaveNoodle1.prefab"; public static string mdlCave1 = "RoR2/Junk/Old Stage1/mdlCave1.fbx"; public static string mdlCliff1 = "RoR2/Junk/Old Stage1/mdlCliff1.fbx"; public static string mdlCliffModular1 = "RoR2/Junk/Old Stage1/mdlCliffModular1.fbx"; public static string mdlIceCave = "RoR2/Junk/Old Stage1/mdlIceCave.fbx"; public static string mdlIceCaveNoodle1 = "RoR2/Junk/Old Stage1/mdlIceCaveNoodle1.fbx"; public static string mdlOverhangModular1 = "RoR2/Junk/Old Stage1/mdlOverhangModular1.fbx"; public static string mdlRockRampModular1 = "RoR2/Junk/Old Stage1/mdlRockRampModular1.fbx"; public static string mdlRockSpikeModular1 = "RoR2/Junk/Old Stage1/mdlRockSpikeModular1.fbx"; public static string mdlRockSpikeModular2 = "RoR2/Junk/Old Stage1/mdlRockSpikeModular2.fbx"; public static string RockModular1 = "RoR2/Junk/Old Stage1/RockModular1.prefab"; public static string RockModular3 = "RoR2/Junk/Old Stage1/RockModular3.prefab"; public static string RockRampModular1 = "RoR2/Junk/Old Stage1/RockRampModular1.prefab"; public static string Satellite = "RoR2/Junk/satellitescene/Satellite.prefab"; public static string AirNodesSlice = "RoR2/Junk/slice1/AirNodesSlice.prefab"; public static string DetailRockM = "RoR2/Junk/slice1/DetailRockM.prefab"; public static string DetailRockS = "RoR2/Junk/slice1/DetailRockS.prefab"; public static string GroundNodesSlice = "RoR2/Junk/slice1/GroundNodesSlice.prefab"; public static string mdlArch1 = "RoR2/Junk/slice1/mdlArch1.fbx"; public static string mdlCatwalkColumn11 = "RoR2/Junk/slice1/mdlCatwalkColumn1_1.fbx"; public static string mdlCatwalkColumn12 = "RoR2/Junk/slice1/mdlCatwalkColumn1_2.fbx"; public static string mdlCatwalkColumn14 = "RoR2/Junk/slice1/mdlCatwalkColumn1_4.fbx"; public static string mdlCatwalkColumnBase11 = "RoR2/Junk/slice1/mdlCatwalkColumnBase1_1.fbx"; public static string mdlCatwalkColumnBase13 = "RoR2/Junk/slice1/mdlCatwalkColumnBase1_3.fbx"; public static string mdlCatwalkTop11 = "RoR2/Junk/slice1/mdlCatwalkTop1_1.fbx"; public static string mdlGoalpost1 = "RoR2/Junk/slice1/mdlGoalpost1.fbx"; public static string mdlGoalpost1Ribbon = "RoR2/Junk/slice1/mdlGoalpost1Ribbon.fbx"; public static string mdlPot1 = "RoR2/Junk/slice1/mdlPot1.fbx"; public static string mdlSculptCave1 = "RoR2/Junk/slice1/mdlSculptCave1.fbx"; public static string mdlSculptCave2 = "RoR2/Junk/slice1/mdlSculptCave2.fbx"; public static string mdlSculptCliff1 = "RoR2/Junk/slice1/mdlSculptCliff1.fbx"; public static string mdlSculptCliff2 = "RoR2/Junk/slice1/mdlSculptCliff2.fbx"; public static string mdlSculptCliff3 = "RoR2/Junk/slice1/mdlSculptCliff3.fbx"; public static string AirNodesSlice210 = "RoR2/Junk/slice2/AirNodesSlice2.prefab"; public static string GroundNodesSlice234 = "RoR2/Junk/slice2/GroundNodesSlice2.prefab"; public static string mdlBeachDockColumn1 = "RoR2/Junk/slice2/mdlBeachDockColumn1.fbx"; public static string mdlBeachDockSplitColumn1 = "RoR2/Junk/slice2/mdlBeachDockSplitColumn1.fbx"; public static string mdlSandstoneCliff1 = "RoR2/Junk/slice2/mdlSandstoneCliff1.fbx"; public static string mdlSandstoneCliff2 = "RoR2/Junk/slice2/mdlSandstoneCliff2.fbx"; public static string mdlSandstoneCliff2Hard = "RoR2/Junk/slice2/mdlSandstoneCliff2Hard.fbx"; public static string mdlSandstoneDetailRock1 = "RoR2/Junk/slice2/mdlSandstoneDetailRock1.fbx"; public static string mdlSandstoneFloorSlab1 = "RoR2/Junk/slice2/mdlSandstoneFloorSlab1.fbx"; public static string mdlSandstoneFloorSlab1Hard = "RoR2/Junk/slice2/mdlSandstoneFloorSlab1Hard.fbx"; public static string mdlSandstoneFloorSlab2Hard = "RoR2/Junk/slice2/mdlSandstoneFloorSlab2Hard.fbx"; public static string mdlWhorlShellBig = "RoR2/Junk/slice2/mdlWhorlShellBig.fbx"; public static string mdlWhorlShellBigShattered = "RoR2/Junk/slice2/mdlWhorlShellBigShattered.fbx"; public static string SandstoneDetailRock1 = "RoR2/Junk/slice2/SandstoneDetailRock1.prefab"; public static string AirNodes = "RoR2/Junk/stage1/AirNodes.prefab"; public static string GroundNodes = "RoR2/Junk/stage1/GroundNodes.prefab"; public static string Polyp1 = "RoR2/Junk/stage1/Polyp1.prefab"; public static string terrainStage1 = "RoR2/Junk/stage1/terrainStage1.prefab"; public static string SkillStrip = "RoR2/Junk/SkillStrip.prefab"; public static string AchievementCard = "RoR2/Junk/UI/AchievementCard.prefab"; public static string AchievementCard2 = "RoR2/Junk/UI/AchievementCard2.prefab"; public static string AchievementCard3 = "RoR2/Junk/UI/AchievementCard3.prefab"; public static string HighlightEnemy = "RoR2/Junk/UI/HighlightEnemy.prefab"; public static string HighlightInteractable = "RoR2/Junk/UI/HighlightInteractable.prefab"; public static string HighlightMisc = "RoR2/Junk/UI/HighlightMisc.prefab"; public static string GainEquipmentCharge = "RoR2/Junk/UI/GainEquipmentCharge.prefab"; public static string mdlHPBar = "RoR2/Junk/UI/mdlHPBar.fbx"; public static string mdlItemBar = "RoR2/Junk/UI/mdlItemBar.fbx"; public static string mdlMoneyBar = "RoR2/Junk/UI/mdlMoneyBar.fbx"; public static string mdlSkillBar = "RoR2/Junk/UI/mdlSkillBar.fbx"; public static string LocalUserCard = "RoR2/Junk/UI/LocalUserCard.prefab"; public static string MultiplayerMenu = "RoR2/Junk/UI/MultiplayerMenu.prefab"; public static string Logo = "RoR2/Junk/UI/Logo.prefab"; public static string mdlLogo = "RoR2/Junk/UI/mdlLogo.fbx"; public static string RuleBookViewer = "RoR2/Junk/UI/RuleBookViewer.prefab"; public static string StatsAndAchievementsPanel = "RoR2/Junk/UI/StatsAndAchievementsPanel.prefab"; public static string UserProfileList = "RoR2/Junk/UI/UserProfileList.prefab"; public static string UserProfileListElement = "RoR2/Junk/UI/UserProfileListElement.prefab"; public static string mdlMinorConstructOld = "RoR2/Junk_DLC1/MinorConstruct/mdlMinorConstructOld.fbx"; public static string MolotovFireballGhost = "RoR2/Junk_DLC1/Molotov/MolotovFireballGhost.prefab"; public static string mdlOrbBuffPickup = "RoR2/Junk_DLC1/EmpowerItems/EmpowerBuff/mdlOrbBuffPickup.fbx"; public static string PickupOrbBuff = "RoR2/Junk_DLC1/EmpowerItems/EmpowerBuff/PickupOrbBuff.prefab"; public static string mdlOrbMagazinePickup = "RoR2/Junk_DLC1/EmpowerItems/EmpowerMagazine/mdlOrbMagazinePickup.fbx"; public static string PickupOrbMagazine = "RoR2/Junk_DLC1/EmpowerItems/EmpowerMagazine/PickupOrbMagazine.prefab"; public static string mdlOrbOnKillPickup = "RoR2/Junk_DLC1/EmpowerItems/EmpowerOnKill/mdlOrbOnKillPickup.fbx"; public static string PickupOrbOnKill = "RoR2/Junk_DLC1/EmpowerItems/EmpowerOnKill/PickupOrbOnKill.prefab"; public static string mdlOrbRefreshPickup = "RoR2/Junk_DLC1/EmpowerItems/EmpowerRefresh/mdlOrbRefreshPickup.fbx"; public static string PickupOrbRefresh = "RoR2/Junk_DLC1/EmpowerItems/EmpowerRefresh/PickupOrbRefresh.prefab"; public static string mdlOrbRobot = "RoR2/Junk_DLC1/EmpowerItems/mdlOrbRobot.fbx"; public static string AurelioniteHeart = "RoR2/AurelioniteHeart.prefab"; public static string CommandChest = "RoR2/CommandChest/CommandChest.prefab"; public static string DisplayAchievementRewardTest = "RoR2/AchievementRewardTest/DisplayAchievementRewardTest.prefab"; public static string mdlAchievementRewardTest = "RoR2/AchievementRewardTest/mdlAchievementRewardTest.fbx"; public static string PickupAchievementRewardTest = "RoR2/AchievementRewardTest/PickupAchievementRewardTest.prefab"; public static string DisplayColossusItem = "RoR2/DisplayColossusItem.prefab"; public static string mdlColossusItem = "RoR2/mdlColossusItem.fbx"; } public static class Material { public static string matArtifactCompoundCircle = "RoR2/Base/ArtifactCompounds/matArtifactCompoundCircle.mat"; public static string matArtifactCompoundDiamond = "RoR2/Base/ArtifactCompounds/matArtifactCompoundDiamond.mat"; public static string matArtifactCompoundFrame = "RoR2/Base/ArtifactCompounds/matArtifactCompoundFrame.mat"; public static string matArtifactCompoundSquare = "RoR2/Base/ArtifactCompounds/matArtifactCompoundSquare.mat"; public static string matArtifactCompoundTriangle = "RoR2/Base/ArtifactCompounds/matArtifactCompoundTriangle.mat"; public static string matArtifactScavScar = "RoR2/Base/ArtifactCompounds/matArtifactScavScar.mat"; public static string matArtifactEnigmaGlow = "RoR2/Base/Enigma/matArtifactEnigmaGlow.mat"; public static string matWispSoul = "RoR2/Base/WispOnDeath/matWispSoul.mat"; public static string matWispSoulFire = "RoR2/Base/WispOnDeath/matWispSoulFire.mat"; public static string matAltarSkeleton = "RoR2/Base/AltarSkeleton/matAltarSkeleton.mat"; public static string matAltarSkeletonGlow = "RoR2/Base/AltarSkeleton/matAltarSkeletonGlow.mat"; public static string matBandit2Knife = "RoR2/Base/Bandit2/matBandit2Knife.mat"; public static string matBandit2Revolver = "RoR2/Base/Bandit2/matBandit2Revolver.mat"; public static string matBandit2Shotgun = "RoR2/Base/Bandit2/matBandit2Shotgun.mat"; public static string matBandit2ShotgunAlt = "RoR2/Base/Bandit2/matBandit2ShotgunAlt.mat"; public static string matBandit = "RoR2/Base/Bandit2/matBandit.mat"; public static string matBandit2 = "RoR2/Base/Bandit2/matBandit2.mat"; public static string matBandit2Coat = "RoR2/Base/Bandit2/matBandit2Coat.mat"; public static string matBandit2AltColossus = "RoR2/Base/Bandit2/matBandit2AltColossus.mat"; public static string matBandit2AltColossusWeapons = "RoR2/Base/Bandit2/matBandit2AltColossusWeapons.mat"; public static string matBanditAltSolusBody = "RoR2/Base/Bandit2/matBanditAltSolusBody.mat"; public static string matBanditAltSolusBodyopaque = "RoR2/Base/Bandit2/matBanditAltSolusBody_opaque.mat"; public static string matBanditAltSolusGear = "RoR2/Base/Bandit2/matBanditAltSolusGear.mat"; public static string matBanditAltSolusGearopaque = "RoR2/Base/Bandit2/matBanditAltSolusGear_opaque.mat"; public static string matWireTrailBandit = "RoR2/Base/Bandit2/matWireTrailBandit.mat"; public static string matBandit2Alt = "RoR2/Base/Bandit2/matBandit2Alt.mat"; public static string matBandit2CoatAlt = "RoR2/Base/Bandit2/matBandit2CoatAlt.mat"; public static string matBackstabIndicatorParticle = "RoR2/Base/Bandit2/matBackstabIndicatorParticle.mat"; public static string matBandit2Explosion = "RoR2/Base/Bandit2/matBandit2Explosion.mat"; public static string matBandit2Hitspark = "RoR2/Base/Bandit2/matBandit2Hitspark.mat"; public static string matBandit2HitsparkBackstab = "RoR2/Base/Bandit2/matBandit2HitsparkBackstab.mat"; public static string matBandit2PistolSpin = "RoR2/Base/Bandit2/matBandit2PistolSpin.mat"; public static string matBandit2Ring = "RoR2/Base/Bandit2/matBandit2Ring.mat"; public static string matBandit2Shell = "RoR2/Base/Bandit2/matBandit2Shell.mat"; public static string matBandit2Skull = "RoR2/Base/Bandit2/matBandit2Skull.mat"; public static string matBandit2SlashBlade = "RoR2/Base/Bandit2/matBandit2SlashBlade.mat"; public static string matBandit2SmokebombDonut = "RoR2/Base/Bandit2/matBandit2SmokebombDonut.mat"; public static string matBandit2SmokebombSphere = "RoR2/Base/Bandit2/matBandit2SmokebombSphere.mat"; public static string matBandit2Splatter1 = "RoR2/Base/Bandit2/matBandit2Splatter1.mat"; public static string matBandit2SplatterBillboard = "RoR2/Base/Bandit2/matBandit2SplatterBillboard.mat"; public static string matBandit2SplatterBillboardAlt = "RoR2/Base/Bandit2/matBandit2SplatterBillboardAlt.mat"; public static string matBandit2SplatterDirectional = "RoR2/Base/Bandit2/matBandit2SplatterDirectional.mat"; public static string matBandit2SplatterDirectionalAlt = "RoR2/Base/Bandit2/matBandit2SplatterDirectionalAlt.mat"; public static string matBandit2SplatterOpaqueTrail = "RoR2/Base/Bandit2/matBandit2SplatterOpaqueTrail.mat"; public static string matBandit2SplatterOpaqueTrailAlt = "RoR2/Base/Bandit2/matBandit2SplatterOpaqueTrailAlt.mat"; public static string matBandit2TracerTrail = "RoR2/Base/Bandit2/matBandit2TracerTrail.mat"; public static string matDestealth = "RoR2/Base/Bandit2/matDestealth.mat"; public static string matOmniExplosion1Bandit = "RoR2/Base/Bandit2/matOmniExplosion1Bandit.mat"; public static string matOmniHitspark2Bandit = "RoR2/Base/Bandit2/matOmniHitspark2Bandit.mat"; public static string matOmniHitspark2BanditAlt = "RoR2/Base/Bandit2/matOmniHitspark2BanditAlt.mat"; public static string matBeetle = "RoR2/Base/Beetle/matBeetle.mat"; public static string matBeetleopt = "RoR2/Base/Beetle/matBeetle_opt.mat"; public static string matSulfurBeetle = "RoR2/Base/Beetle/matSulfurBeetle.mat"; public static string matBeetleGuard = "RoR2/Base/BeetleGuard/matBeetleGuard.mat"; public static string matBeetleGuardTrail = "RoR2/Base/BeetleGuard/matBeetleGuardTrail.mat"; public static string matAuraPulse = "RoR2/Base/BeetleGuard/matAuraPulse.mat"; public static string matAuraPulseBeetleGuardopt = "RoR2/Base/BeetleGuard/matAuraPulse_BeetleGuard_opt.mat"; public static string matBeetleGuardCharge = "RoR2/Base/BeetleGuard/matBeetleGuardCharge.mat"; public static string matDefenseUpShield = "RoR2/Base/BeetleGuard/matDefenseUpShield.mat"; public static string matDefenseUpShieldopt = "RoR2/Base/BeetleGuard/matDefenseUpShield_opt.mat"; public static string matSulfurBeetleGuard = "RoR2/Base/BeetleGuard/matSulfurBeetleGuard.mat"; public static string matBeetleBreath = "RoR2/Base/BeetleQueen/matBeetleBreath.mat"; public static string matBeetleQueen = "RoR2/Base/BeetleQueen/matBeetleQueen.mat"; public static string matBeetleBugs1 = "RoR2/Base/BeetleQueen/matBeetleBugs1.mat"; public static string matBeetleBugs2 = "RoR2/Base/BeetleQueen/matBeetleBugs2.mat"; public static string matBeetleQueen1 = "RoR2/Base/BeetleQueen/matBeetleQueen 1.mat"; public static string matBeetleQueenAcidDecal = "RoR2/Base/BeetleQueen/matBeetleQueenAcidDecal.mat"; public static string matBeetleQueenAcidFizz = "RoR2/Base/BeetleQueen/matBeetleQueenAcidFizz.mat"; public static string matBeetleSpit = "RoR2/Base/BeetleQueen/matBeetleSpit.mat"; public static string matBeetleSpitLarge = "RoR2/Base/BeetleQueen/matBeetleSpitLarge.mat"; public static string matBeetleSpitShockwave = "RoR2/Base/BeetleQueen/matBeetleSpitShockwave.mat"; public static string matBeetleSpitTrail1 = "RoR2/Base/BeetleQueen/matBeetleSpitTrail1.mat"; public static string matBeetleSpitTrail2 = "RoR2/Base/BeetleQueen/matBeetleSpitTrail2.mat"; public static string matSulfurBeetleQueen = "RoR2/Base/BeetleQueen/matSulfurBeetleQueen.mat"; public static string matBeetleJuice = "RoR2/Base/BeetleGroup/BeetleWard/matBeetleJuice.mat"; public static string matBeetleQueenSphere = "RoR2/Base/BeetleGroup/BeetleWard/matBeetleQueenSphere.mat"; public static string matBeetleGuardSlamDecal = "RoR2/Base/BeetleGroup/matBeetleGuardSlamDecal.mat"; public static string matBeetleImpact = "RoR2/Base/BeetleGroup/matBeetleImpact.mat"; public static string matGroundSlamIndicator = "RoR2/Base/BeetleGroup/matGroundSlamIndicator.mat"; public static string matBell = "RoR2/Base/Bell/matBell.mat"; public static string matBellBall = "RoR2/Base/Bell/matBellBall.mat"; public static string matBellBuffBeam = "RoR2/Base/Bell/matBellBuffBeam.mat"; public static string matBellDevice = "RoR2/Base/Bell/matBellDevice.mat"; public static string matBellFlashBright = "RoR2/Base/Bell/matBellFlashBright.mat"; public static string matOmniExplosion1Bell = "RoR2/Base/Bell/matOmniExplosion1Bell.mat"; public static string matOmniHitspark1Bell = "RoR2/Base/Bell/matOmniHitspark1Bell.mat"; public static string matBirdshark = "RoR2/Base/Birdshark/matBirdshark.mat"; public static string matBirdsharkFeather = "RoR2/Base/Birdshark/matBirdsharkFeather.mat"; public static string matBison = "RoR2/Base/Bison/matBison.mat"; public static string matBisonopt = "RoR2/Base/Bison/matBison_opt.mat"; public static string matBisonHair = "RoR2/Base/Bison/matBisonHair.mat"; public static string matBisonHairopt = "RoR2/Base/Bison/matBisonHair_opt.mat"; public static string matBisonMetalBall = "RoR2/Base/Bison/matBisonMetalBall.mat"; public static string matBisonMetalBallopt = "RoR2/Base/Bison/matBisonMetalBall_opt.mat"; public static string matBisonSnowSphere = "RoR2/Base/Bison/matBisonSnowSphere.mat"; public static string matBisonSnowSphereopt = "RoR2/Base/Bison/matBisonSnowSphere_opt.mat"; public static string matGenericChargeIndicator = "RoR2/Base/Bison/matGenericChargeIndicator.mat"; public static string matGenericChargeIndicatorbisonopt = "RoR2/Base/Bison/matGenericChargeIndicator_bison_opt.mat"; public static string matSnowyOverlay = "RoR2/Base/Bison/matSnowyOverlay.mat"; public static string maBrotherDustSpeckledLarge = "RoR2/Base/Brother/maBrotherDustSpeckledLarge.mat"; public static string maBrotherGlassOverlay = "RoR2/Base/Brother/maBrotherGlassOverlay.mat"; public static string matBrotherDissolveParticle = "RoR2/Base/Brother/matBrotherDissolveParticle.mat"; public static string matBrotherEnergizedWaveTell = "RoR2/Base/Brother/matBrotherEnergizedWaveTell.mat"; public static string matBrotherEyeTrail = "RoR2/Base/Brother/matBrotherEyeTrail.mat"; public static string matBrotherFirePillarIndicator = "RoR2/Base/Brother/matBrotherFirePillarIndicator.mat"; public static string matBrotherGlassDistortion = "RoR2/Base/Brother/matBrotherGlassDistortion.mat"; public static string matBrotherPostBossSphere = "RoR2/Base/Brother/matBrotherPostBossSphere.mat"; public static string matBrotherPreBossSphere = "RoR2/Base/Brother/matBrotherPreBossSphere.mat"; public static string matBrotherSlamDecal = "RoR2/Base/Brother/matBrotherSlamDecal.mat"; public static string matBrotherSlamDecalCracks = "RoR2/Base/Brother/matBrotherSlamDecalCracks.mat"; public static string matBrotherStealAura = "RoR2/Base/Brother/matBrotherStealAura.mat"; public static string matBrotherSwing = "RoR2/Base/Brother/matBrotherSwing.mat"; public static string matBrotherSwingDistortion = "RoR2/Base/Brother/matBrotherSwingDistortion.mat"; public static string matBrotherUltIndicator = "RoR2/Base/Brother/matBrotherUltIndicator.mat"; public static string matBrotherUltIndicatorTall = "RoR2/Base/Brother/matBrotherUltIndicatorTall.mat"; public static string matLunarShardImpactEffect = "RoR2/Base/Brother/matLunarShardImpactEffect.mat"; public static string matLunarShardTrail = "RoR2/Base/Brother/matLunarShardTrail.mat"; public static string matBrotherInfectionBlue = "RoR2/Base/Brother/matBrotherInfectionBlue.mat"; public static string matBrotherInfectionBoss = "RoR2/Base/Brother/matBrotherInfectionBoss.mat"; public static string matBrotherInfectionFood = "RoR2/Base/Brother/matBrotherInfectionFood.mat"; public static string matBrotherInfectionGreen = "RoR2/Base/Brother/matBrotherInfectionGreen.mat"; public static string matBrotherInfectionRed = "RoR2/Base/Brother/matBrotherInfectionRed.mat"; public static string matBrotherInfectionVoid = "RoR2/Base/Brother/matBrotherInfectionVoid.mat"; public static string matBrotherInfectionWhite = "RoR2/Base/Brother/matBrotherInfectionWhite.mat"; public static string matBrother = "RoR2/Base/Brother/matBrother.mat"; public static string matBrotherArmor = "RoR2/Base/Brother/matBrotherArmor.mat"; public static string matBrotherCloth = "RoR2/Base/Brother/matBrotherCloth.mat"; public static string matBrotherEye = "RoR2/Base/Brother/matBrotherEye.mat"; public static string matBrotherEyeHurt = "RoR2/Base/Brother/matBrotherEyeHurt.mat"; public static string matBrotherGem = "RoR2/Base/Brother/matBrotherGem.mat"; public static string matBrotherHammer = "RoR2/Base/Brother/matBrotherHammer.mat"; public static string matBrotherStib = "RoR2/Base/Brother/matBrotherStib.mat"; public static string matCaptainColossusAltArmor = "RoR2/Base/Captain/matCaptainColossusAltArmor.mat"; public static string matCaptainColossusAltClothes = "RoR2/Base/Captain/matCaptainColossusAltClothes.mat"; public static string matCaptainAltSolus = "RoR2/Base/Captain/matCaptainAltSolus.mat"; public static string matCaptainAltSolusopaque = "RoR2/Base/Captain/matCaptainAltSolus_opaque.mat"; public static string matCaptainAltSolus2 = "RoR2/Base/Captain/matCaptainAltSolus2.mat"; public static string matCaptainAltSolus2opaque = "RoR2/Base/Captain/matCaptainAltSolus2_opaque.mat"; public static string matWireTrailCaptain = "RoR2/Base/Captain/matWireTrailCaptain.mat"; public static string matCaptainAirstrikeAltAreaIndicatorInner = "RoR2/Base/Captain/matCaptainAirstrikeAltAreaIndicatorInner.mat"; public static string matCaptainAirstrikeAltAreaIndicatorOuter = "RoR2/Base/Captain/matCaptainAirstrikeAltAreaIndicatorOuter.mat"; public static string matCaptainAirstrikeAltLaser = "RoR2/Base/Captain/matCaptainAirstrikeAltLaser.mat"; public static string matCaptainAirstrikeAltRadiusWarning = "RoR2/Base/Captain/matCaptainAirstrikeAltRadiusWarning.mat"; public static string matCaptainAirstrikeAreaIndicator = "RoR2/Base/Captain/matCaptainAirstrikeAreaIndicator.mat"; public static string matCaptainAirstrikeCore = "RoR2/Base/Captain/matCaptainAirstrikeCore.mat"; public static string matCaptainAirstrikeFlechetteBurning = "RoR2/Base/Captain/matCaptainAirstrikeFlechetteBurning.mat"; public static string matCaptainAirstrikeTrail = "RoR2/Base/Captain/matCaptainAirstrikeTrail.mat"; public static string matCaptainBlueprintsInvalid = "RoR2/Base/Captain/matCaptainBlueprintsInvalid.mat"; public static string matCaptainBlueprintsOK = "RoR2/Base/Captain/matCaptainBlueprintsOK.mat"; public static string matCaptainBlueprintsWarningInvalid = "RoR2/Base/Captain/matCaptainBlueprintsWarningInvalid.mat"; public static string matCaptainBlueprintsWarningOK = "RoR2/Base/Captain/matCaptainBlueprintsWarningOK.mat"; public static string matCaptainBodyArmorRing = "RoR2/Base/Captain/matCaptainBodyArmorRing.mat"; public static string matCaptainBodyArmorShield = "RoR2/Base/Captain/matCaptainBodyArmorShield.mat"; public static string matCaptainBodyArmorSphere = "RoR2/Base/Captain/matCaptainBodyArmorSphere.mat"; public static string matCaptainDefenseMatrixLaser = "RoR2/Base/Captain/matCaptainDefenseMatrixLaser.mat"; public static string matCaptainFlareRing = "RoR2/Base/Captain/matCaptainFlareRing.mat"; public static string matCaptainFlareTiling = "RoR2/Base/Captain/matCaptainFlareTiling.mat"; public static string matCaptainSignal = "RoR2/Base/Captain/matCaptainSignal.mat"; public static string matCaptainSupplyDropAreaIndicator2 = "RoR2/Base/Captain/matCaptainSupplyDropAreaIndicator2.mat"; public static string matCaptainSupplyDropAreaIndicatorInner = "RoR2/Base/Captain/matCaptainSupplyDropAreaIndicatorInner.mat"; public static string matCaptainSupplyDropAreaIndicatorOuter = "RoR2/Base/Captain/matCaptainSupplyDropAreaIndicatorOuter.mat"; public static string matCaptainSupplyHackingLine = "RoR2/Base/Captain/matCaptainSupplyHackingLine.mat"; public static string matCaptainSupplyRadiusHacking = "RoR2/Base/Captain/matCaptainSupplyRadiusHacking.mat"; public static string matCaptainSupplyRadiusHealing = "RoR2/Base/Captain/matCaptainSupplyRadiusHealing.mat"; public static string matCaptainSwing = "RoR2/Base/Captain/matCaptainSwing.mat"; public static string matCaptainTazerCore = "RoR2/Base/Captain/matCaptainTazerCore.mat"; public static string matCaptainTazerTrail = "RoR2/Base/Captain/matCaptainTazerTrail.mat"; public static string matCaptainTracerHead = "RoR2/Base/Captain/matCaptainTracerHead.mat"; public static string matCaptainTracerTrail = "RoR2/Base/Captain/matCaptainTracerTrail.mat"; public static string matHackingDiscHologram = "RoR2/Base/Captain/matHackingDiscHologram.mat"; public static string matCaptain = "RoR2/Base/Captain/matCaptain.mat"; public static string matCaptainAirstrikeFletchette = "RoR2/Base/Captain/matCaptainAirstrikeFletchette.mat"; public static string matCaptainAlt = "RoR2/Base/Captain/matCaptainAlt.mat"; public static string matCaptainArmor = "RoR2/Base/Captain/matCaptainArmor.mat"; public static string matCaptainArmorAlt = "RoR2/Base/Captain/matCaptainArmorAlt.mat"; public static string matCaptainJacket = "RoR2/Base/Captain/matCaptainJacket.mat"; public static string matCaptainJacketAlt = "RoR2/Base/Captain/matCaptainJacketAlt.mat"; public static string matCaptainRobotBits = "RoR2/Base/Captain/matCaptainRobotBits.mat"; public static string matCaptainRobotBitsAlt = "RoR2/Base/Captain/matCaptainRobotBitsAlt.mat"; public static string matCaptainSupplyDropEquipmentRestock = "RoR2/Base/Captain/matCaptainSupplyDropEquipmentRestock.mat"; public static string matCaptainSupplyDropHacking = "RoR2/Base/Captain/matCaptainSupplyDropHacking.mat"; public static string matCaptainSupplyDropHealing = "RoR2/Base/Captain/matCaptainSupplyDropHealing.mat"; public static string matCaptainSupplyDropPlating = "RoR2/Base/Captain/matCaptainSupplyDropPlating.mat"; public static string matCaptainSupplyDropShocking = "RoR2/Base/Captain/matCaptainSupplyDropShocking.mat"; public static string matUIRemapCrosshairCaptain = "RoR2/Base/Captain/matUIRemapCrosshairCaptain.mat"; public static string matClayBossGooDecal = "RoR2/Base/Clay/matClayBossGooDecal.mat"; public static string matClayBubble = "RoR2/Base/Clay/matClayBubble.mat"; public static string matClayBubbleBillboard = "RoR2/Base/Clay/matClayBubbleBillboard.mat"; public static string matClayGooFizzle = "RoR2/Base/Clay/matClayGooFizzle.mat"; public static string matClayBoss = "RoR2/Base/ClayBoss/matClayBoss.mat"; public static string matClayBossLightshaft = "RoR2/Base/ClayBoss/matClayBossLightshaft.mat"; public static string matClayPotProjectile = "RoR2/Base/ClayBoss/matClayPotProjectile.mat"; public static string matDrainSiphon = "RoR2/Base/ClayBoss/matDrainSiphon.mat"; public static string matTarball = "RoR2/Base/ClayBoss/matTarball.mat"; public static string matTrailSiphonHealth = "RoR2/Base/ClayBoss/matTrailSiphonHealth.mat"; public static string matGooMulcher = "RoR2/Base/ClayBoss/matGooMulcher.mat"; public static string matGooTrail = "RoR2/Base/ClayBoss/matGooTrail.mat"; public static string matGooTrailLegs = "RoR2/Base/ClayBoss/matGooTrailLegs.mat"; public static string matClayGooDecalLong = "RoR2/Base/ClayBruiser/matClayGooDecalLong.mat"; public static string matClayGooDecalSplat = "RoR2/Base/ClayBruiser/matClayGooDecalSplat.mat"; public static string matClayBruiser = "RoR2/Base/ClayBruiser/matClayBruiser.mat"; public static string matClayMinigunTracer = "RoR2/Base/ClayBruiser/matClayMinigunTracer.mat"; public static string matCommandoAltColossus = "RoR2/Base/Commando/matCommandoAltColossus.mat"; public static string matCommandoAltVulture = "RoR2/Base/Commando/matCommandoAltVulture.mat"; public static string matCommandoBaseBullet = "RoR2/Base/Commando/matCommandoBaseBullet.mat"; public static string matCommandoDualies = "RoR2/Base/Commando/matCommandoDualies.mat"; public static string matCommandoDualiesAlt = "RoR2/Base/Commando/matCommandoDualiesAlt.mat"; public static string matCommandoDualiesColorShift01 = "RoR2/Base/Commando/matCommandoDualiesColorShift01.mat"; public static string matCommandoDualiesColorShift02 = "RoR2/Base/Commando/matCommandoDualiesColorShift02.mat"; public static string matCommandoDualiesColorShift03 = "RoR2/Base/Commando/matCommandoDualiesColorShift03.mat"; public static string matCommandoDualiesEnforcer = "RoR2/Base/Commando/matCommandoDualiesEnforcer.mat"; public static string matCommandoDualiesScout = "RoR2/Base/Commando/matCommandoDualiesScout.mat"; public static string matCommandoFMJBullet = "RoR2/Base/Commando/matCommandoFMJBullet.mat"; public static string matCommandoFMJRing = "RoR2/Base/Commando/matCommandoFMJRing.mat"; public static string matCommandoGun = "RoR2/Base/Commando/matCommandoGun.mat"; public static string matCommandoShotgunTracerCore = "RoR2/Base/Commando/matCommandoShotgunTracerCore.mat"; public static string matCommandoShotgunTrail = "RoR2/Base/Commando/matCommandoShotgunTrail.mat"; public static string matCommandoSniper = "RoR2/Base/Commando/matCommandoSniper.mat"; public static string matCommandoSpinPistol = "RoR2/Base/Commando/matCommandoSpinPistol.mat"; public static string matCommandoStickyGrenade = "RoR2/Base/Commando/matCommandoStickyGrenade.mat"; public static string matCommandoFmjSweetSpotBurst = "RoR2/Base/Commando/matCommandoFmjSweetSpotBurst.mat"; public static string matCommandoFmjSweetSpotGlow = "RoR2/Base/Commando/matCommandoFmjSweetSpotGlow.mat"; public static string matCrocoColossus = "RoR2/Base/Croco/matCrocoColossus.mat"; public static string matCroco = "RoR2/Base/Croco/matCroco.mat"; public static string matCrocoAltVulture = "RoR2/Base/Croco/matCrocoAltVulture.mat"; public static string matCrocoSpine = "RoR2/Base/Croco/matCrocoSpine.mat"; public static string matBlighted = "RoR2/Base/Croco/matBlighted.mat"; public static string matCrocoAlt = "RoR2/Base/Croco/matCrocoAlt.mat"; public static string matCrocoBiteDiseased = "RoR2/Base/Croco/matCrocoBiteDiseased.mat"; public static string matCrocoBlightBillboard = "RoR2/Base/Croco/matCrocoBlightBillboard.mat"; public static string matCrocoColorShift01 = "RoR2/Base/Croco/matCrocoColorShift01.mat"; public static string matCrocoColorShift02 = "RoR2/Base/Croco/matCrocoColorShift02.mat"; public static string matCrocoColorShift03 = "RoR2/Base/Croco/matCrocoColorShift03.mat"; public static string matCrocoDiseaseDrippings = "RoR2/Base/Croco/matCrocoDiseaseDrippings.mat"; public static string matCrocoDiseaseHead = "RoR2/Base/Croco/matCrocoDiseaseHead.mat"; public static string matCrocoDiseaseSpore = "RoR2/Base/Croco/matCrocoDiseaseSpore.mat"; public static string matCrocoDiseaseTrail = "RoR2/Base/Croco/matCrocoDiseaseTrail.mat"; public static string matCrocoDiseaseTrail2 = "RoR2/Base/Croco/matCrocoDiseaseTrail2.mat"; public static string matCrocoDiseaseTrailLesser = "RoR2/Base/Croco/matCrocoDiseaseTrailLesser.mat"; public static string matCrocoDiseaseTrailOrange = "RoR2/Base/Croco/matCrocoDiseaseTrailOrange.mat"; public static string matCrocoGooDecal = "RoR2/Base/Croco/matCrocoGooDecal.mat"; public static string matCrocoGooLarge = "RoR2/Base/Croco/matCrocoGooLarge.mat"; public static string matCrocoGooSmall = "RoR2/Base/Croco/matCrocoGooSmall.mat"; public static string matCrocoGooSmall2 = "RoR2/Base/Croco/matCrocoGooSmall2.mat"; public static string matCrocoPoisonBillboard = "RoR2/Base/Croco/matCrocoPoisonBillboard.mat"; public static string matCrocoSlash = "RoR2/Base/Croco/matCrocoSlash.mat"; public static string matCrocoSlashDiseased = "RoR2/Base/Croco/matCrocoSlashDiseased.mat"; public static string matCrocoSlashDiseasedBright = "RoR2/Base/Croco/matCrocoSlashDiseasedBright.mat"; public static string matCrocoSlashDistortion = "RoR2/Base/Croco/matCrocoSlashDistortion.mat"; public static string matCrocoSpawnDecal = "RoR2/Base/Croco/matCrocoSpawnDecal.mat"; public static string matCrocoSpineAlt = "RoR2/Base/Croco/matCrocoSpineAlt.mat"; public static string matCrocoSpineColorShift01 = "RoR2/Base/Croco/matCrocoSpineColorShift01.mat"; public static string matCrocoSpineColorShift02 = "RoR2/Base/Croco/matCrocoSpineColorShift02.mat"; public static string matCrocoSpineColorShift03 = "RoR2/Base/Croco/matCrocoSpineColorShift03.mat"; public static string matPoisoned = "RoR2/Base/Croco/matPoisoned.mat"; public static string matDrone1 = "RoR2/Base/Drones/matDrone1.mat"; public static string matDrone2 = "RoR2/Base/Drones/matDrone2.mat"; public static string matDroneBrokenGeneric = "RoR2/Base/Drones/matDroneBrokenGeneric.mat"; public static string matMegaDroneFlare1 = "RoR2/Base/Drones/matMegaDroneFlare1.mat"; public static string matMegaDroneFlare2 = "RoR2/Base/Drones/matMegaDroneFlare2.mat"; public static string matBackupDrone = "RoR2/Base/Drones/matBackupDrone.mat"; public static string matDroneBlades = "RoR2/Base/Drones/matDroneBlades.mat"; public static string matMissileDrone = "RoR2/Base/Drones/matMissileDrone.mat"; public static string matTurret1 = "RoR2/Base/Drones/matTurret1.mat"; public static string matBlueprintsInvalid = "RoR2/Base/Engi/matBlueprintsInvalid.mat"; public static string matBlueprintsOk = "RoR2/Base/Engi/matBlueprintsOk.mat"; public static string matEngiHarpoonRing = "RoR2/Base/Engi/matEngiHarpoonRing.mat"; public static string matEngiHarpoonTrail = "RoR2/Base/Engi/matEngiHarpoonTrail.mat"; public static string matEngiTurret = "RoR2/Base/Engi/matEngiTurret.mat"; public static string matEngiTrail = "RoR2/Base/Engi/matEngiTrail.mat"; public static string matDefenseMatrix = "RoR2/Base/Engi/matDefenseMatrix.mat"; public static string matDefenseMatrixCenter = "RoR2/Base/Engi/matDefenseMatrixCenter.mat"; public static string matDefenseMatrixCenterOneSided = "RoR2/Base/Engi/matDefenseMatrixCenterOneSided.mat"; public static string matDefenseMatrixCenterWithEdges = "RoR2/Base/Engi/matDefenseMatrixCenterWithEdges.mat"; public static string matEngi = "RoR2/Base/Engi/matEngi.mat"; public static string matEngiAlt = "RoR2/Base/Engi/matEngiAlt.mat"; public static string matEngiBeam = "RoR2/Base/Engi/matEngiBeam.mat"; public static string matEngiBeamTurret = "RoR2/Base/Engi/matEngiBeamTurret.mat"; public static string matEngiCone = "RoR2/Base/Engi/matEngiCone.mat"; public static string matEngiParts = "RoR2/Base/Engi/matEngiParts.mat"; public static string matEngiTracer = "RoR2/Base/Engi/matEngiTracer.mat"; public static string matEngiShieldSHards = "RoR2/Base/Engi/matEngiShieldSHards.mat"; public static string matEngiExplosion = "RoR2/Base/Engi/matEngiExplosion.mat"; public static string matEngiTrailExplosion = "RoR2/Base/Engi/matEngiTrailExplosion.mat"; public static string matEngiMineLaser = "RoR2/Base/Engi/matEngiMineLaser.mat"; public static string matEngiMineSphere = "RoR2/Base/Engi/matEngiMineSphere.mat"; public static string matEngiMineZone = "RoR2/Base/Engi/matEngiMineZone.mat"; public static string matEngiMineZoneIntersection = "RoR2/Base/Engi/matEngiMineZoneIntersection.mat"; public static string matOmniExplosion1Engi = "RoR2/Base/Engi/matOmniExplosion1Engi.mat"; public static string matOmniRing1Engi = "RoR2/Base/Engi/matOmniRing1Engi.mat"; public static string matEngiAltColossus = "RoR2/Base/Engi/matEngiAltColossus.mat"; public static string matEngiAltColossusTool = "RoR2/Base/Engi/matEngiAltColossusTool.mat"; public static string matEngiAltVultureTool = "RoR2/Base/Engi/matEngiAltVultureTool.mat"; public static string matEngiSkinAltVulture = "RoR2/Base/Engi/matEngiSkinAltVulture.mat"; public static string matGolem = "RoR2/Base/Golem/matGolem.mat"; public static string matGolemDead = "RoR2/Base/Golem/matGolemDead.mat"; public static string matGolemDoll = "RoR2/Base/Golem/matGolemDoll.mat"; public static string matGolemGoldInfused = "RoR2/Base/Golem/matGolemGoldInfused.mat"; public static string matGolemPrint = "RoR2/Base/Golem/matGolemPrint.mat"; public static string matNatureGolem = "RoR2/Base/Golem/matNatureGolem.mat"; public static string matSandyGolem = "RoR2/Base/Golem/matSandyGolem.mat"; public static string matShockwave1 = "RoR2/Base/Golem/matShockwave1.mat"; public static string matVFXFlame1 = "RoR2/Base/Golem/matVFXFlame1.mat"; public static string matZap1 = "RoR2/Base/Golem/matZap1.mat"; public static string matSnowyGolem = "RoR2/Base/Golem/matSnowyGolem.mat"; public static string matGrandparentTeleportOutBoom = "RoR2/Base/Grandparent/matGrandparentTeleportOutBoom.mat"; public static string matGrandparent = "RoR2/Base/Grandparent/matGrandparent.mat"; public static string matGrandparentBoulderProjectile = "RoR2/Base/Grandparent/matGrandparentBoulderProjectile.mat"; public static string matGrandparentDetails = "RoR2/Base/Grandparent/matGrandparentDetails.mat"; public static string matGrandparentGemPortal = "RoR2/Base/Grandparent/matGrandparentGemPortal.mat"; public static string matOverheatOverlay = "RoR2/Base/Grandparent/matOverheatOverlay.mat"; public static string matGrandParentMoonCore = "RoR2/Base/Grandparent/matGrandParentMoonCore.mat"; public static string matGrandParentSunChannelStartBeam = "RoR2/Base/Grandparent/matGrandParentSunChannelStartBeam.mat"; public static string matGrandParentSunCore = "RoR2/Base/Grandparent/matGrandParentSunCore.mat"; public static string matGrandParentSunFresnel = "RoR2/Base/Grandparent/matGrandParentSunFresnel.mat"; public static string matGrandParentSunGlow = "RoR2/Base/Grandparent/matGrandParentSunGlow.mat"; public static string matGrandParentSunHeatDistortion = "RoR2/Base/Grandparent/matGrandParentSunHeatDistortion.mat"; public static string matGrandparentBombFlare = "RoR2/Base/Grandparent/matGrandparentBombFlare.mat"; public static string matGrandparentBossPortal = "RoR2/Base/Grandparent/matGrandparentBossPortal.mat"; public static string matGrandparentEgg = "RoR2/Base/Grandparent/matGrandparentEgg.mat"; public static string matGrandparentEggDead = "RoR2/Base/Grandparent/matGrandparentEggDead.mat"; public static string matGrandparentFistGlowing = "RoR2/Base/Grandparent/matGrandparentFistGlowing.mat"; public static string matGrandparentGoo = "RoR2/Base/Grandparent/matGrandparentGoo.mat"; public static string matGrandparentGooDecal = "RoR2/Base/Grandparent/matGrandparentGooDecal.mat"; public static string matGrandparentGooOverlay = "RoR2/Base/Grandparent/matGrandparentGooOverlay.mat"; public static string matGrandparentGravArea = "RoR2/Base/Grandparent/matGrandparentGravArea.mat"; public static string matGrandparentOuterGlow = "RoR2/Base/Grandparent/matGrandparentOuterGlow.mat"; public static string matGrandparentPortal = "RoR2/Base/Grandparent/matGrandparentPortal.mat"; public static string matGrandparentSmallBall = "RoR2/Base/Grandparent/matGrandparentSmallBall.mat"; public static string matGrandparentSpawnEggNet = "RoR2/Base/Grandparent/matGrandparentSpawnEggNet.mat"; public static string matArchWispFire = "RoR2/Base/Gravekeeper/matArchWispFire.mat"; public static string matArchWispFireStatic = "RoR2/Base/Gravekeeper/matArchWispFireStatic.mat"; public static string matGravekeeperDiffuse = "RoR2/Base/Gravekeeper/matGravekeeperDiffuse.mat"; public static string matGravekeeperFurDiffuse = "RoR2/Base/Gravekeeper/matGravekeeperFurDiffuse.mat"; public static string matGravekeeperHookChain = "RoR2/Base/Gravekeeper/matGravekeeperHookChain.mat"; public static string matGravekeeperHookHead = "RoR2/Base/Gravekeeper/matGravekeeperHookHead.mat"; public static string matGravekeeperJar = "RoR2/Base/Gravekeeper/matGravekeeperJar.mat"; public static string matGravekeeperTrackingMask = "RoR2/Base/Gravekeeper/matGravekeeperTrackingMask.mat"; public static string matOmniExplosion1ArchWisp = "RoR2/Base/Gravekeeper/matOmniExplosion1ArchWisp.mat"; public static string matOmniRing1ArchWisp = "RoR2/Base/Gravekeeper/matOmniRing1ArchWisp.mat"; public static string matGreaterWisp = "RoR2/Base/GreaterWisp/matGreaterWisp.mat"; public static string matGreaterWispCracks = "RoR2/Base/GreaterWisp/matGreaterWispCracks.mat"; public static string matGreaterWispFire = "RoR2/Base/GreaterWisp/matGreaterWispFire.mat"; public static string matGreaterWispRays = "RoR2/Base/GreaterWisp/matGreaterWispRays.mat"; public static string matGreaterWispTile = "RoR2/Base/GreaterWisp/matGreaterWispTile.mat"; public static string matOmniExplosion1GreaterWisp = "RoR2/Base/GreaterWisp/matOmniExplosion1GreaterWisp.mat"; public static string matOmniHitspark1GreaterWisp = "RoR2/Base/GreaterWisp/matOmniHitspark1GreaterWisp.mat"; public static string matOmniRing1GreaterWisp = "RoR2/Base/GreaterWisp/matOmniRing1GreaterWisp.mat"; public static string matHereticBlade = "RoR2/Base/Heretic/matHereticBlade.mat"; public static string matHereticBody = "RoR2/Base/Heretic/matHereticBody.mat"; public static string matHereticClothes = "RoR2/Base/Heretic/matHereticClothes.mat"; public static string matHereticEye = "RoR2/Base/Heretic/matHereticEye.mat"; public static string matHereticFeathers = "RoR2/Base/Heretic/matHereticFeathers.mat"; public static string matHereticSpawnOverlay = "RoR2/Base/Heretic/matHereticSpawnOverlay.mat"; public static string matHermitCrab = "RoR2/Base/HermitCrab/matHermitCrab.mat"; public static string matHermitCrabopt = "RoR2/Base/HermitCrab/matHermitCrab_opt.mat"; public static string matHermitCrabProjectile = "RoR2/Base/HermitCrab/matHermitCrabProjectile.mat"; public static string matHermitCrabProjectileopt = "RoR2/Base/HermitCrab/matHermitCrabProjectile_opt.mat"; public static string matHermitCrabProjectileTrail = "RoR2/Base/HermitCrab/matHermitCrabProjectileTrail.mat"; public static string matHuntressAltColossus = "RoR2/Base/Huntress/matHuntressAltColossus.mat"; public static string matHuntressAltColossusArrow = "RoR2/Base/Huntress/matHuntressAltColossusArrow.mat"; public static string matHuntressAltColossusBowString = "RoR2/Base/Huntress/matHuntressAltColossusBowString.mat"; public static string matHuntressArrowTrailColossus = "RoR2/Base/Huntress/matHuntressArrowTrailColossus.mat"; public static string matHuntressAltVulture = "RoR2/Base/Huntress/matHuntressAltVulture.mat"; public static string matHuntressCapeAltSkinVulture = "RoR2/Base/Huntress/matHuntressCapeAltSkinVulture.mat"; public static string matHuntressAlt = "RoR2/Base/Huntress/matHuntressAlt.mat"; public static string matHuntressCapeAlt = "RoR2/Base/Huntress/matHuntressCapeAlt.mat"; public static string matBow = "RoR2/Base/Huntress/matBow.mat"; public static string matBowString = "RoR2/Base/Huntress/matBowString.mat"; public static string matHuntress = "RoR2/Base/Huntress/matHuntress.mat"; public static string matHuntressAreaIndicatorActive = "RoR2/Base/Huntress/matHuntressAreaIndicatorActive.mat"; public static string matHuntressArrow = "RoR2/Base/Huntress/matHuntressArrow.mat"; public static string matHuntressArrowBig = "RoR2/Base/Huntress/matHuntressArrowBig.mat"; public static string matHuntressArrowTrail = "RoR2/Base/Huntress/matHuntressArrowTrail.mat"; public static string matHuntressCape = "RoR2/Base/Huntress/matHuntressCape.mat"; public static string matHuntressCharged = "RoR2/Base/Huntress/matHuntressCharged.mat"; public static string matHuntressFlashBright = "RoR2/Base/Huntress/matHuntressFlashBright.mat"; public static string matHuntressFlashExpanded = "RoR2/Base/Huntress/matHuntressFlashExpanded.mat"; public static string matHuntressFlurryArrowCritTrail = "RoR2/Base/Huntress/matHuntressFlurryArrowCritTrail.mat"; public static string matHuntressFlurryArrowTrail = "RoR2/Base/Huntress/matHuntressFlurryArrowTrail.mat"; public static string matHuntressGlaive = "RoR2/Base/Huntress/matHuntressGlaive.mat"; public static string matHuntressSwingTrail = "RoR2/Base/Huntress/matHuntressSwingTrail.mat"; public static string matHuntressFlash = "RoR2/Base/Huntress/matHuntressFlash.mat"; public static string matHuntressSwipe = "RoR2/Base/Huntress/matHuntressSwipe.mat"; public static string matOmniHitspark1Huntress = "RoR2/Base/Huntress/matOmniHitspark1Huntress.mat"; public static string matOmniHitspark3Huntress = "RoR2/Base/Huntress/matOmniHitspark3Huntress.mat"; public static string matOmniRing2Huntress = "RoR2/Base/Huntress/matOmniRing2Huntress.mat"; public static string matImp = "RoR2/Base/Imp/matImp.mat"; public static string matImpBoss = "RoR2/Base/Imp/matImpBoss.mat"; public static string matImpBossDissolve = "RoR2/Base/Imp/matImpBossDissolve.mat"; public static string matImpBossPortal = "RoR2/Base/Imp/matImpBossPortal.mat"; public static string matImpClaw = "RoR2/Base/Imp/matImpClaw.mat"; public static string matImpDecal = "RoR2/Base/Imp/matImpDecal.mat"; public static string matImpDissolve = "RoR2/Base/Imp/matImpDissolve.mat"; public static string matImpDust = "RoR2/Base/Imp/matImpDust.mat"; public static string matImpExplosionSphere = "RoR2/Base/Imp/matImpExplosionSphere.mat"; public static string matImpPortalEffect = "RoR2/Base/Imp/matImpPortalEffect.mat"; public static string matImpPortalEffectEdge = "RoR2/Base/Imp/matImpPortalEffectEdge.mat"; public static string matImpSlashImpact = "RoR2/Base/Imp/matImpSlashImpact.mat"; public static string matImpSwipe = "RoR2/Base/Imp/matImpSwipe.mat"; public static string matFlashJellyfish = "RoR2/Base/Jellyfish/matFlashJellyfish.mat"; public static string matJellyfish = "RoR2/Base/Jellyfish/matJellyfish.mat"; public static string matLemurian = "RoR2/Base/Lemurian/matLemurian.mat"; public static string matLemurianBruiser = "RoR2/Base/Lemurian/matLemurianBruiser.mat"; public static string matLemurianBruiseropt = "RoR2/Base/Lemurian/matLemurianBruiser_opt.mat"; public static string matLizardBiteTrail = "RoR2/Base/Lemurian/matLizardBiteTrail.mat"; public static string matLoaderAltColossus = "RoR2/Base/Loader/matLoaderAltColossus.mat"; public static string matLoaderAltSolus = "RoR2/Base/Loader/matLoaderAltSolus.mat"; public static string matLoaderAltSolusopaque = "RoR2/Base/Loader/matLoaderAltSolus_opaque.mat"; public static string matLoaderAltSolusGear = "RoR2/Base/Loader/matLoaderAltSolusGear.mat"; public static string matLoaderAltSolusGearopaque = "RoR2/Base/Loader/matLoaderAltSolusGear_opaque.mat"; public static string matWireTrailLoader = "RoR2/Base/Loader/matWireTrailLoader.mat"; public static string matLoaderCharging = "RoR2/Base/Loader/matLoaderCharging.mat"; public static string matLoaderHookRope = "RoR2/Base/Loader/matLoaderHookRope.mat"; public static string matLoaderLightningLarge = "RoR2/Base/Loader/matLoaderLightningLarge.mat"; public static string matLoaderLightningTile = "RoR2/Base/Loader/matLoaderLightningTile.mat"; public static string matLoaderPilotDiffuse = "RoR2/Base/Loader/matLoaderPilotDiffuse.mat"; public static string matLoaderPilotDiffuseAlt = "RoR2/Base/Loader/matLoaderPilotDiffuseAlt.mat"; public static string matLoaderSlamSphere = "RoR2/Base/Loader/matLoaderSlamSphere.mat"; public static string matLoaderSwingBasic = "RoR2/Base/Loader/matLoaderSwingBasic.mat"; public static string matLoaderSwingThick = "RoR2/Base/Loader/matLoaderSwingThick.mat"; public static string matLoaderTrailImpact = "RoR2/Base/Loader/matLoaderTrailImpact.mat"; public static string matOmniRing2Loader = "RoR2/Base/Loader/matOmniRing2Loader.mat"; public static string matOmniHitspark1Loader = "RoR2/Base/Loader/matOmniHitspark1Loader.mat"; public static string matLightningLongYellow = "RoR2/Base/Loader/matLightningLongYellow.mat"; public static string matOmniHitspark3Loader = "RoR2/Base/Loader/matOmniHitspark3Loader.mat"; public static string matLunarExploder = "RoR2/Base/LunarExploder/matLunarExploder.mat"; public static string matLunarExploderCore = "RoR2/Base/LunarExploder/matLunarExploderCore.mat"; public static string matLunarExploderCoreLunarExploderopt = "RoR2/Base/LunarExploder/matLunarExploderCore_LunarExploder_opt.mat"; public static string matLunarExploderDeathDecal = "RoR2/Base/LunarExploder/matLunarExploderDeathDecal.mat"; public static string matLunarGolem = "RoR2/Base/LunarGolem/matLunarGolem.mat"; public static string matLunarGolemopt = "RoR2/Base/LunarGolem/matLunarGolem_opt.mat"; public static string matLunarGolemExplosion = "RoR2/Base/LunarGolem/matLunarGolemExplosion.mat"; public static string matLunarGolemOldDeactivated = "RoR2/Base/LunarGolem/matLunarGolemOldDeactivated.mat"; public static string matLunarGolemOldMossyStone = "RoR2/Base/LunarGolem/matLunarGolemOldMossyStone.mat"; public static string matLunarGolemRock = "RoR2/Base/LunarGolem/matLunarGolemRock.mat"; public static string matLunarGolemShield = "RoR2/Base/LunarGolem/matLunarGolemShield.mat"; public static string matLunarGolemSpawnDustLG = "RoR2/Base/LunarGolem/matLunarGolemSpawnDustLG.mat"; public static string matLunarGolemBlastDustLG = "RoR2/Base/LunarGolem/matLunarGolemBlastDustLG.mat"; public static string matLunarGolemChargeGlow = "RoR2/Base/LunarGolem/matLunarGolemChargeGlow.mat"; public static string matLunarGolemChargeGlowopt = "RoR2/Base/LunarGolem/matLunarGolemChargeGlow_opt.mat"; public static string matLunarGolemLightshaft = "RoR2/Base/LunarGolem/matLunarGolemLightshaft.mat"; public static string matLunarGolemMuzzleBlast = "RoR2/Base/LunarGolem/matLunarGolemMuzzleBlast.mat"; public static string matLunarGolemMuzzleFlash = "RoR2/Base/LunarGolem/matLunarGolemMuzzleFlash.mat"; public static string matLunarGolemShieldTrails = "RoR2/Base/LunarGolem/matLunarGolemShieldTrails.mat"; public static string matLunarWispBombProjectile = "RoR2/Base/LunarWisp/mat_LunarWispBombProjectile.mat"; public static string matLunarWisp = "RoR2/Base/LunarWisp/matLunarWisp.mat"; public static string matLunarWispopt = "RoR2/Base/LunarWisp/matLunarWisp_opt.mat"; public static string matLunarWispAged = "RoR2/Base/LunarWisp/matLunarWispAged.mat"; public static string matLunarWispBombChargeRings = "RoR2/Base/LunarWisp/matLunarWispBombChargeRings.mat"; public static string matLunarWispBombChargeRingsopt = "RoR2/Base/LunarWisp/matLunarWispBombChargeRings_opt.mat"; public static string matLunarWispBombChargeTrail = "RoR2/Base/LunarWisp/matLunarWispBombChargeTrail.mat"; public static string matLunarWispBombInChargeRings = "RoR2/Base/LunarWisp/matLunarWispBombInChargeRings.mat"; public static string matLunarWispBombInChargeRingsopt = "RoR2/Base/LunarWisp/matLunarWispBombInChargeRings_opt.mat"; public static string matLunarWispBombInnerFlames = "RoR2/Base/LunarWisp/matLunarWispBombInnerFlames.mat"; public static string matLunarWispBombShockwaveRing = "RoR2/Base/LunarWisp/matLunarWispBombShockwaveRing.mat"; public static string matLunarWispCracks = "RoR2/Base/LunarWisp/matLunarWispCracks.mat"; public static string matLunarWispMinigunTell = "RoR2/Base/LunarWisp/matLunarWispMinigunTell.mat"; public static string matLunarWispMinigunTellopt = "RoR2/Base/LunarWisp/matLunarWispMinigunTell_opt.mat"; public static string matLunarWispMinigunTracer = "RoR2/Base/LunarWisp/matLunarWispMinigunTracer.mat"; public static string matLunarWispMinigunTracerLead = "RoR2/Base/LunarWisp/matLunarWispMinigunTracerLead.mat"; public static string matLunarWispMinigunTracerLeadopt = "RoR2/Base/LunarWisp/matLunarWispMinigunTracerLead_opt.mat"; public static string matLunarWispMuzzleBurst = "RoR2/Base/LunarWisp/matLunarWispMuzzleBurst.mat"; public static string matLunarWispMuzzleBurstopt = "RoR2/Base/LunarWisp/matLunarWispMuzzleBurst_opt.mat"; public static string matLunarWispMuzzleRings = "RoR2/Base/LunarWisp/matLunarWispMuzzleRings.mat"; public static string matLunarWispMuzzleRingsopt = "RoR2/Base/LunarWisp/matLunarWispMuzzleRings_opt.mat"; public static string matLunarWispStones = "RoR2/Base/LunarWisp/matLunarWispStones.mat"; public static string matLunarWispBombTrail = "RoR2/Base/LunarWisp/matLunarWispBombTrail.mat"; public static string matLunarWispFlames = "RoR2/Base/LunarWisp/matLunarWispFlames.mat"; public static string matOmniHitspark1LunarWisp = "RoR2/Base/LunarWisp/matOmniHitspark1LunarWisp.mat"; public static string matMageAltColossus = "RoR2/Base/Mage/matMageAltColossus.mat"; public static string matArtificerAltSolus2 = "RoR2/Base/Mage/matArtificerAltSolus2.mat"; public static string matArtificerAltSolus2opaque = "RoR2/Base/Mage/matArtificerAltSolus2_opaque.mat"; public static string matArtificerAltSolusGear = "RoR2/Base/Mage/matArtificerAltSolusGear.mat"; public static string matArtificerAltSolusGearopaque = "RoR2/Base/Mage/matArtificerAltSolusGear_opaque.mat"; public static string matWireTrailMage = "RoR2/Base/Mage/matWireTrailMage.mat"; public static string matMage = "RoR2/Base/Mage/matMage.mat"; public static string matMageAlt = "RoR2/Base/Mage/matMageAlt.mat"; public static string matMageCalibrateFire = "RoR2/Base/Mage/matMageCalibrateFire.mat"; public static string matMageCalibrateIce = "RoR2/Base/Mage/matMageCalibrateIce.mat"; public static string matMageCalibrateLightning = "RoR2/Base/Mage/matMageCalibrateLightning.mat"; public static string matMageColorShift01 = "RoR2/Base/Mage/matMageColorShift01.mat"; public static string matMageColorShift02 = "RoR2/Base/Mage/matMageColorShift02.mat"; public static string matMageColorShift03 = "RoR2/Base/Mage/matMageColorShift03.mat"; public static string matMageFireCore = "RoR2/Base/Mage/matMageFireCore.mat"; public static string matMageIce = "RoR2/Base/Mage/matMageIce.mat"; public static string matMageIceCore = "RoR2/Base/Mage/matMageIceCore.mat"; public static string matMageLightningCore = "RoR2/Base/Mage/matMageLightningCore.mat"; public static string matMageFirebolt = "RoR2/Base/Mage/matMageFirebolt.mat"; public static string matMageMatrixDirectionalIce = "RoR2/Base/Mage/matMageMatrixDirectionalIce.mat"; public static string matMageMatrixDirectionalLightning = "RoR2/Base/Mage/matMageMatrixDirectionalLightning.mat"; public static string matMageMatrixFire = "RoR2/Base/Mage/matMageMatrixFire.mat"; public static string matMageMatrixIce = "RoR2/Base/Mage/matMageMatrixIce.mat"; public static string matMageMatrixLightning = "RoR2/Base/Mage/matMageMatrixLightning.mat"; public static string matMageMatrixTriFire = "RoR2/Base/Mage/matMageMatrixTriFire.mat"; public static string matMageMatrixTriIce = "RoR2/Base/Mage/matMageMatrixTriIce.mat"; public static string matMageMatrixTriLightning = "RoR2/Base/Mage/matMageMatrixTriLightning.mat"; public static string matElectricWorm = "RoR2/Base/MagmaWorm/matElectricWorm.mat"; public static string matFracturedGround = "RoR2/Base/MagmaWorm/matFracturedGround.mat"; public static string matMagma = "RoR2/Base/MagmaWorm/matMagma.mat"; public static string matMagmaOpaqueDirectional = "RoR2/Base/MagmaWorm/matMagmaOpaqueDirectional.mat"; public static string matMagmaOpaqueLarge = "RoR2/Base/MagmaWorm/matMagmaOpaqueLarge.mat"; public static string matMagmaTile = "RoR2/Base/MagmaWorm/matMagmaTile.mat"; public static string matMagmaWorm = "RoR2/Base/MagmaWorm/matMagmaWorm.mat"; public static string matMagmaWormDeathDust = "RoR2/Base/MagmaWorm/matMagmaWormDeathDust.mat"; public static string matMagmaWormExplosionSphere = "RoR2/Base/MagmaWorm/matMagmaWormExplosionSphere.mat"; public static string matMagmaWormFireball = "RoR2/Base/MagmaWorm/matMagmaWormFireball.mat"; public static string matMagmaWormFireballTrail = "RoR2/Base/MagmaWorm/matMagmaWormFireballTrail.mat"; public static string matMagmaWormMuzzleFlash = "RoR2/Base/MagmaWorm/matMagmaWormMuzzleFlash.mat"; public static string matMagmaWormOverlay = "RoR2/Base/MagmaWorm/matMagmaWormOverlay.mat"; public static string matMercAltColossus = "RoR2/Base/Merc/matMercAltColossus.mat"; public static string matMercAltPrisoner = "RoR2/Base/Merc/matMercAltPrisoner.mat"; public static string matMercAltPrisonerEye = "RoR2/Base/Merc/matMercAltPrisonerEye.mat"; public static string matMercAltPrisonerHead = "RoR2/Base/Merc/matMercAltPrisonerHead.mat"; public static string matMercAltPrisonerMetal = "RoR2/Base/Merc/matMercAltPrisonerMetal.mat"; public static string matMercAltSwordVulture = "RoR2/Base/Merc/matMercAltSwordVulture.mat"; public static string matMercAltVulture = "RoR2/Base/Merc/matMercAltVulture.mat"; public static string matMerc = "RoR2/Base/Merc/matMerc.mat"; public static string matMercAlt = "RoR2/Base/Merc/matMercAlt.mat"; public static string matMercDelayedBillboard = "RoR2/Base/Merc/matMercDelayedBillboard.mat"; public static string matMercDelayedBillboard2 = "RoR2/Base/Merc/matMercDelayedBillboard2.mat"; public static string matMercExposed = "RoR2/Base/Merc/matMercExposed.mat"; public static string matMercExposedBackdrop = "RoR2/Base/Merc/matMercExposedBackdrop.mat"; public static string matMercExposedSlash = "RoR2/Base/Merc/matMercExposedSlash.mat"; public static string matMercFocusedAssaultIcon = "RoR2/Base/Merc/matMercFocusedAssaultIcon.mat"; public static string matMercIgnition = "RoR2/Base/Merc/matMercIgnition.mat"; public static string matMercSwipe1 = "RoR2/Base/Merc/matMercSwipe1.mat"; public static string matMercSwipe2 = "RoR2/Base/Merc/matMercSwipe2.mat"; public static string matMercSwipe3 = "RoR2/Base/Merc/matMercSwipe3.mat"; public static string matMercSword = "RoR2/Base/Merc/matMercSword.mat"; public static string matMercEnergized = "RoR2/Base/Merc/matMercEnergized.mat"; public static string matMercEvisTarget = "RoR2/Base/Merc/matMercEvisTarget.mat"; public static string matMercHologram = "RoR2/Base/Merc/matMercHologram.mat"; public static string matOmniHitspark2Merc = "RoR2/Base/Merc/matOmniHitspark2Merc.mat"; public static string matOmniHitspark3Merc = "RoR2/Base/Merc/matOmniHitspark3Merc.mat"; public static string matOmniHitspark4Merc = "RoR2/Base/Merc/matOmniHitspark4Merc.mat"; public static string matOmniRadialSlash1Merc = "RoR2/Base/Merc/matOmniRadialSlash1Merc.mat"; public static string matMiniMushroom = "RoR2/Base/MiniMushroom/matMiniMushroom.mat"; public static string matMiniMushroomopt = "RoR2/Base/MiniMushroom/matMiniMushroom_opt.mat"; public static string matMiniMushroomPuffs = "RoR2/Base/MiniMushroom/matMiniMushroomPuffs.mat"; public static string matMiniMushroomSporeGas = "RoR2/Base/MiniMushroom/matMiniMushroomSporeGas.mat"; public static string matMiniMushroomSporeSplatDecal = "RoR2/Base/MiniMushroom/matMiniMushroomSporeSplatDecal.mat"; public static string matSporeGrenade = "RoR2/Base/MiniMushroom/matSporeGrenade.mat"; public static string matMiniMushroomSplash = "RoR2/Base/MiniMushroom/matMiniMushroomSplash.mat"; public static string matMiniMushroomSpore = "RoR2/Base/MiniMushroom/matMiniMushroomSpore.mat"; public static string matMiniMushroomSporeopt = "RoR2/Base/MiniMushroom/matMiniMushroomSpore_opt.mat"; public static string matSporeGrenadeGasCloud = "RoR2/Base/MiniMushroom/matSporeGrenadeGasCloud.mat"; public static string matSporeGrenadeTrail = "RoR2/Base/MiniMushroom/matSporeGrenadeTrail.mat"; public static string matNullifierAlly = "RoR2/Base/Nullifier/matNullifierAlly.mat"; public static string matNullifierArmorAlly = "RoR2/Base/Nullifier/matNullifierArmorAlly.mat"; public static string matNullifier = "RoR2/Base/Nullifier/matNullifier.mat"; public static string matNullifierArmor = "RoR2/Base/Nullifier/matNullifierArmor.mat"; public static string matNullifierBeamCore = "RoR2/Base/Nullifier/matNullifierBeamCore.mat"; public static string matNullifierCloth = "RoR2/Base/Nullifier/matNullifierCloth.mat"; public static string matNullifierDeathDistortion = "RoR2/Base/Nullifier/matNullifierDeathDistortion.mat"; public static string matNullifierExplosionAreaIndicatorHard = "RoR2/Base/Nullifier/matNullifierExplosionAreaIndicatorHard.mat"; public static string matNullifierExplosionAreaIndicatorSoft = "RoR2/Base/Nullifier/matNullifierExplosionAreaIndicatorSoft.mat"; public static string matNullifierGem = "RoR2/Base/Nullifier/matNullifierGem.mat"; public static string matNullifierGemPortal = "RoR2/Base/Nullifier/matNullifierGemPortal.mat"; public static string matNullifierGemPortal2 = "RoR2/Base/Nullifier/matNullifierGemPortal2.mat"; public static string matNullifierMolt = "RoR2/Base/Nullifier/matNullifierMolt.mat"; public static string matNullifierPortal = "RoR2/Base/Nullifier/matNullifierPortal.mat"; public static string matNullifierPortalopt = "RoR2/Base/Nullifier/matNullifierPortal_opt.mat"; public static string matNullifierPortalEffectCenter = "RoR2/Base/Nullifier/matNullifierPortalEffectCenter.mat"; public static string matNullifierPortalEffectCenteropt = "RoR2/Base/Nullifier/matNullifierPortalEffectCenter_opt.mat"; public static string matNullifierStarParticle = "RoR2/Base/Nullifier/matNullifierStarParticle.mat"; public static string matNullifierStarParticleOffset = "RoR2/Base/Nullifier/matNullifierStarParticleOffset.mat"; public static string matNullifierStarPortalEdge = "RoR2/Base/Nullifier/matNullifierStarPortalEdge.mat"; public static string matNullifierStarTrail = "RoR2/Base/Nullifier/matNullifierStarTrail.mat"; public static string matNullifierStarTrailWeak = "RoR2/Base/Nullifier/matNullifierStarTrailWeak.mat"; public static string matNullifierZoneAreaIndicator = "RoR2/Base/Nullifier/matNullifierZoneAreaIndicator.mat"; public static string matNullifierZoneAreaIndicatorLookingIn = "RoR2/Base/Nullifier/matNullifierZoneAreaIndicatorLookingIn.mat"; public static string matNullifierZoneAreaIndicatorLookingOut = "RoR2/Base/Nullifier/matNullifierZoneAreaIndicatorLookingOut.mat"; public static string matNullBombAreaIndicator = "RoR2/Base/Nullifier/matNullBombAreaIndicator.mat"; public static string matParent = "RoR2/Base/Parent/matParent.mat"; public static string matParentBeads = "RoR2/Base/Parent/matParentBeads.mat"; public static string matParentBlink = "RoR2/Base/Parent/matParentBlink.mat"; public static string matParentBlinkDonut1 = "RoR2/Base/Parent/matParentBlinkDonut 1.mat"; public static string matParentBlinkDonut = "RoR2/Base/Parent/matParentBlinkDonut.mat"; public static string matParentDissolve = "RoR2/Base/Parent/matParentDissolve.mat"; public static string matParentFace = "RoR2/Base/Parent/matParentFace.mat"; public static string matParentFadeIn = "RoR2/Base/Parent/matParentFadeIn.mat"; public static string matParentMeleeSwing = "RoR2/Base/Parent/matParentMeleeSwing.mat"; public static string matParentNovaPillar = "RoR2/Base/Parent/matParentNovaPillar.mat"; public static string matParentParticle = "RoR2/Base/Parent/matParentParticle.mat"; public static string matParentTeleportPortal = "RoR2/Base/Parent/matParentTeleportPortal.mat"; public static string matParentWaxFlecks = "RoR2/Base/Parent/matParentWaxFlecks.mat"; public static string matOmniExplosion1RoboBall = "RoR2/Base/RoboBallBoss/matOmniExplosion1RoboBall.mat"; public static string matRoboBallAreaIndicator = "RoR2/Base/RoboBallBoss/matRoboBallAreaIndicator.mat"; public static string matRoboBallCore = "RoR2/Base/RoboBallBoss/matRoboBallCore.mat"; public static string matRoboBallParticleBillboard = "RoR2/Base/RoboBallBoss/matRoboBallParticleBillboard.mat"; public static string matRoboBallParticleRing = "RoR2/Base/RoboBallBoss/matRoboBallParticleRing.mat"; public static string matRoboBallParticleRingHuge = "RoR2/Base/RoboBallBoss/matRoboBallParticleRingHuge.mat"; public static string matRoboBallUnderlay = "RoR2/Base/RoboBallBoss/matRoboBallUnderlay.mat"; public static string matSummonRoboBall = "RoR2/Base/RoboBallBoss/matSummonRoboBall.mat"; public static string matSuperRoboBallBossBodyFeathers = "RoR2/Base/RoboBallBoss/matSuperRoboBallBossBodyFeathers.mat"; public static string matScav = "RoR2/Base/Scav/matScav.mat"; public static string matScavBackpack = "RoR2/Base/Scav/matScavBackpack.mat"; public static string matScavEnergyCannonCore = "RoR2/Base/Scav/matScavEnergyCannonCore.mat"; public static string matScavEnergyCannonUnderlay = "RoR2/Base/Scav/matScavEnergyCannonUnderlay.mat"; public static string matScavEyes = "RoR2/Base/Scav/matScavEyes.mat"; public static string matScavLunar = "RoR2/Base/Scav/matScavLunar.mat"; public static string matScavLunarBackpack = "RoR2/Base/Scav/matScavLunarBackpack.mat"; public static string matScavLunarEyes = "RoR2/Base/Scav/matScavLunarEyes.mat"; public static string matSquid = "RoR2/Base/Scav/matSquid.mat"; public static string matSquidTrail = "RoR2/Base/Scav/matSquidTrail.mat"; public static string matBloodSquid = "RoR2/Base/Scav/matBloodSquid.mat"; public static string matNewt = "RoR2/Base/Shopkeeper/matNewt.mat"; public static string matNewtJewlery = "RoR2/Base/Shopkeeper/matNewtJewlery.mat"; public static string matTitan = "RoR2/Base/Titan/matTitan.mat"; public static string matTitanDampcave = "RoR2/Base/Titan/matTitanDampcave.mat"; public static string matTitanGold = "RoR2/Base/Titan/matTitanGold.mat"; public static string matTitanGolemplains = "RoR2/Base/Titan/matTitanGolemplains.mat"; public static string matTitanPebble = "RoR2/Base/Titan/matTitanPebble.mat"; public static string matTitanProjectile = "RoR2/Base/Titan/matTitanProjectile.mat"; public static string matTitanSandy = "RoR2/Base/Titan/matTitanSandy.mat"; public static string matTitanEye = "RoR2/Base/Titan/matTitanEye.mat"; public static string matTitanBeam = "RoR2/Base/Titan/matTitanBeam.mat"; public static string matTitanBeamFlare = "RoR2/Base/Titan/matTitanBeamFlare.mat"; public static string matTitanLaserGlob = "RoR2/Base/Titan/matTitanLaserGlob.mat"; public static string matTitanGoldArcaneFlare = "RoR2/Base/Titan/matTitanGoldArcaneFlare.mat"; public static string matToolbotAltColossus = "RoR2/Base/Toolbot/matToolbotAltColossus.mat"; public static string matToolbotAltVulture = "RoR2/Base/Toolbot/matToolbotAltVulture.mat"; public static string matRebar = "RoR2/Base/Toolbot/matRebar.mat"; public static string matRoboChunks = "RoR2/Base/Toolbot/matRoboChunks.mat"; public static string matRoboCrate = "RoR2/Base/Toolbot/matRoboCrate.mat"; public static string matSkateSparks = "RoR2/Base/Toolbot/matSkateSparks.mat"; public static string matToolbot = "RoR2/Base/Toolbot/matToolbot.mat"; public static string matToolbotAlt = "RoR2/Base/Toolbot/matToolbotAlt.mat"; public static string matCryoBombPulse = "RoR2/Base/Toolbot/matCryoBombPulse.mat"; public static string matToolbotImpact = "RoR2/Base/Toolbot/matToolbotImpact.mat"; public static string matRebarTrail = "RoR2/Base/Toolbot/matRebarTrail.mat"; public static string matToolbotBlades = "RoR2/Base/Toolbot/matToolbotBlades.mat"; public static string matToolbotIgnition = "RoR2/Base/Toolbot/matToolbotIgnition.mat"; public static string matToolbotNail = "RoR2/Base/Toolbot/matToolbotNail.mat"; public static string matTreebotColossus = "RoR2/Base/Treebot/matTreebotColossus.mat"; public static string matTreebotAltSolusEye = "RoR2/Base/Treebot/matTreebotAltSolus_Eye.mat"; public static string matTreebotAltSolusEyeopaque = "RoR2/Base/Treebot/matTreebotAltSolus_Eye_opaque.mat"; public static string matTreebotAltSolusFloweropaque = "RoR2/Base/Treebot/matTreebotAltSolus_Flower _opaque.mat"; public static string matTreebotAltSolusFlower = "RoR2/Base/Treebot/matTreebotAltSolus_Flower.mat"; public static string matTreebotAltSolusMechopaque = "RoR2/Base/Treebot/matTreebotAltSolus_Mech _opaque.mat"; public static string matTreebotAltSolusMech = "RoR2/Base/Treebot/matTreebotAltSolus_Mech.mat"; public static string matWireTrailTreebot = "RoR2/Base/Treebot/matWireTrailTreebot.mat"; public static string matFruitingEffect = "RoR2/Base/Treebot/matFruitingEffect.mat"; public static string matTreebotMetal = "RoR2/Base/Treebot/matTreebotMetal.mat"; public static string matTreebotMetalAlt = "RoR2/Base/Treebot/matTreebotMetalAlt.mat"; public static string matTreebotMetalDirty = "RoR2/Base/Treebot/matTreebotMetalDirty.mat"; public static string matTreebotTreeBark = "RoR2/Base/Treebot/matTreebotTreeBark.mat"; public static string matTreebotTreeBarkAlt = "RoR2/Base/Treebot/matTreebotTreeBarkAlt.mat"; public static string matTreebotTreeFlower = "RoR2/Base/Treebot/matTreebotTreeFlower.mat"; public static string matTreebotTreeFlowerAlt = "RoR2/Base/Treebot/matTreebotTreeFlowerAlt.mat"; public static string matTreebotTreeFlowerDoublesided = "RoR2/Base/Treebot/matTreebotTreeFlowerDoublesided.mat"; public static string matTreebotTreeLeaf = "RoR2/Base/Treebot/matTreebotTreeLeaf.mat"; public static string matTreebotTreeLeafAlt = "RoR2/Base/Treebot/matTreebotTreeLeafAlt.mat"; public static string matTreebotPounderSphere = "RoR2/Base/Treebot/matTreebotPounderSphere.mat"; public static string matTreebotPounderSphere2 = "RoR2/Base/Treebot/matTreebotPounderSphere2.mat"; public static string Branches0LOD0 = "RoR2/Base/Treebot/Branches_0_LOD0.mat"; public static string Branches1LOD0 = "RoR2/Base/Treebot/Branches_1_LOD0.mat"; public static string Leaves2LOD0 = "RoR2/Base/Treebot/Leaves_2_LOD0.mat"; public static string matTreebotEntangleRoot1 = "RoR2/Base/Treebot/matTreebotEntangleRoot1.mat"; public static string matTreebotEntangleRoot2 = "RoR2/Base/Treebot/matTreebotEntangleRoot2.mat"; public static string matTreebotEntangleRoot3 = "RoR2/Base/Treebot/matTreebotEntangleRoot3.mat"; public static string matTreebotFruit = "RoR2/Base/Treebot/matTreebotFruit.mat"; public static string matTreebotFruitingRing = "RoR2/Base/Treebot/matTreebotFruitingRing.mat"; public static string matTreebotFruitOverlay = "RoR2/Base/Treebot/matTreebotFruitOverlay.mat"; public static string matTreebotFrutingTrail = "RoR2/Base/Treebot/matTreebotFrutingTrail.mat"; public static string matTreebotPollen = "RoR2/Base/Treebot/matTreebotPollen.mat"; public static string matTreebotSyringe = "RoR2/Base/Treebot/matTreebotSyringe.mat"; public static string matTreebotSyringeTrail = "RoR2/Base/Treebot/matTreebotSyringeTrail.mat"; public static string matTreebotSyringeTrailHealing = "RoR2/Base/Treebot/matTreebotSyringeTrailHealing.mat"; public static string matWeakEffect = "RoR2/Base/Treebot/matWeakEffect.mat"; public static string matWeakOverlay = "RoR2/Base/Treebot/matWeakOverlay.mat"; public static string matVagrant = "RoR2/Base/Vagrant/matVagrant.mat"; public static string matVagrantAreaIndicator = "RoR2/Base/Vagrant/matVagrantAreaIndicator.mat"; public static string matVagrantCannonBlue = "RoR2/Base/Vagrant/matVagrantCannonBlue.mat"; public static string matVagrantCannonGreen = "RoR2/Base/Vagrant/matVagrantCannonGreen.mat"; public static string matVagrantCannonRed = "RoR2/Base/Vagrant/matVagrantCannonRed.mat"; public static string matVagrantEnergized = "RoR2/Base/Vagrant/matVagrantEnergized.mat"; public static string matVagrantGoo = "RoR2/Base/Vagrant/matVagrantGoo.mat"; public static string matVagrantTentacle = "RoR2/Base/Vagrant/matVagrantTentacle.mat"; public static string matVulture = "RoR2/Base/Vulture/matVulture.mat"; public static string matVultureEye = "RoR2/Base/Vulture/matVultureEye.mat"; public static string matVultureSingleFeather = "RoR2/Base/Vulture/matVultureSingleFeather.mat"; public static string matVultureSingleFeatheropt = "RoR2/Base/Vulture/matVultureSingleFeather_opt.mat"; public static string matVultureTiledFeather = "RoR2/Base/Vulture/matVultureTiledFeather.mat"; public static string matVultureWindblade = "RoR2/Base/Vulture/matVultureWindblade.mat"; public static string matVultureWindbladeopt = "RoR2/Base/Vulture/matVultureWindblade_opt.mat"; public static string matWisp1 = "RoR2/Base/Wisp/matWisp1.mat"; public static string matWisp1Fire = "RoR2/Base/Wisp/matWisp1Fire.mat"; public static string matWispFire = "RoR2/Base/Wisp/matWispFire.mat"; public static string matWispShattered = "RoR2/Base/Wisp/matWispShattered.mat"; public static string matWispEmber = "RoR2/Base/Wisp/matWispEmber.mat"; public static string matWispTargetingLaser = "RoR2/Base/Wisp/matWispTargetingLaser.mat"; public static string matClayGooDebuff = "RoR2/Base/Common/matClayGooDebuff.mat"; public static string matImmune = "RoR2/Base/Common/matImmune.mat"; public static string matSlow80Debuff = "RoR2/Base/Common/matSlow80Debuff.mat"; public static string texRampLightning2 = "RoR2/Base/Common/ColorRamps/texRampLightning2.mat"; public static string matBoneWeightVisualizer = "RoR2/Base/Common/matBoneWeightVisualizer.mat"; public static string matDebugBlack = "RoR2/Base/Common/matDebugBlack.mat"; public static string matDebugBlue = "RoR2/Base/Common/matDebugBlue.mat"; public static string matDebugInvertedGreen = "RoR2/Base/Common/matDebugInvertedGreen.mat"; public static string matDebugRed = "RoR2/Base/Common/matDebugRed.mat"; public static string matDebugYellow = "RoR2/Base/Common/matDebugYellow.mat"; public static string tmpBombDropshadow3D = "RoR2/Base/Common/Fonts/Bombardier/tmpBombDropshadow3D.mat"; public static string tmpBombDropshadowHologram = "RoR2/Base/Common/Fonts/Bombardier/tmpBombDropshadowHologram.mat"; public static string tmpBombDropshadowOutlined = "RoR2/Base/Common/Fonts/Bombardier/tmpBombDropshadowOutlined.mat"; public static string tmpBombDropshadowOutlinedThick = "RoR2/Base/Common/Fonts/Bombardier/tmpBombDropshadowOutlinedThick.mat"; public static string tmpBombPlain = "RoR2/Base/Common/Fonts/Bombardier/tmpBombPlain.mat"; public static string matLogBookBasic = "RoR2/Base/Common/matLogBookBasic.mat"; public static string matLogBookBoss = "RoR2/Base/Common/matLogBookBoss.mat"; public static string matPickupLogbook = "RoR2/Base/Common/matPickupLogbook.mat"; public static string matCloakedEffect = "RoR2/Base/Common/matCloakedEffect.mat"; public static string matCloakedEffectopt = "RoR2/Base/Common/matCloakedEffect_opt.mat"; public static string matEnergyShield = "RoR2/Base/Common/matEnergyShield.mat"; public static string matFlashWhite = "RoR2/Base/Common/matFlashWhite.mat"; public static string matGlowItemPickup = "RoR2/Base/Common/matGlowItemPickup.mat"; public static string matIsShocked = "RoR2/Base/Common/matIsShocked.mat"; public static string matOnFire = "RoR2/Base/Common/matOnFire.mat"; public static string matRepairSummonedOverlay = "RoR2/Base/Common/matRepairSummonedOverlay.mat"; public static string matRevealedEffect = "RoR2/Base/Common/matRevealedEffect.mat"; public static string Branches0 = "RoR2/Base/Common/Props/Branches_0.mat"; public static string FacingLeaves3 = "RoR2/Base/Common/Props/FacingLeaves_3.mat"; public static string FacingLeaves3opt = "RoR2/Base/Common/Props/FacingLeaves_3_opt.mat"; public static string Fronds1 = "RoR2/Base/Common/Props/Fronds_1.mat"; public static string Leaves2 = "RoR2/Base/Common/Props/Leaves_2.mat"; public static string Billboard = "RoR2/Base/Common/Props/Billboard.mat"; public static string Branches0opt = "RoR2/Base/Common/Props/Branches_0_opt.mat"; public static string Branches1 = "RoR2/Base/Common/Props/Branches_1.mat"; public static string Leaves2opt = "RoR2/Base/Common/Props/Leaves_2_opt.mat"; public static string Fronds0 = "RoR2/Base/Common/Props/Fronds_0.mat"; public static string Fronds0opt = "RoR2/Base/Common/Props/Fronds_0_opt.mat"; public static string matDetailRock = "RoR2/Base/Common/Props/matDetailRock.mat"; public static string matSandDetailRock = "RoR2/Base/Common/Props/matSandDetailRock.mat"; public static string matSandDetailRockBeetleGuardopt = "RoR2/Base/Common/Props/matSandDetailRock_BeetleGuard_opt.mat"; public static string Leaves0 = "RoR2/Base/Common/Props/Leaves_0.mat"; public static string matRescueshipBroken = "RoR2/Base/Common/Props/matRescueshipBroken.mat"; public static string matRescueshipDirtPiles = "RoR2/Base/Common/Props/matRescueshipDirtPiles.mat"; public static string matRescueshipImpactDecalLarge = "RoR2/Base/Common/Props/matRescueshipImpactDecalLarge.mat"; public static string matRescueshipImpactDecalSmall = "RoR2/Base/Common/Props/matRescueshipImpactDecalSmall.mat"; public static string matRoach = "RoR2/Base/Common/Props/matRoach.mat"; public static string matRockModular2 = "RoR2/Base/Common/Props/matRockModular2.mat"; public static string matSkybox1 = "RoR2/Base/Common/Skyboxes/matSkybox1.mat"; public static string matSkyboxFoggy = "RoR2/Base/Common/Skyboxes/matSkyboxFoggy.mat"; public static string matEditorTemporary = "RoR2/Base/Common/matEditorTemporary.mat"; public static string matTeamAreaIndicatorDecalMonster = "RoR2/Base/Common/matTeamAreaIndicatorDecalMonster.mat"; public static string matTeamAreaIndicatorDecalPlayer = "RoR2/Base/Common/matTeamAreaIndicatorDecalPlayer.mat"; public static string matTeamAreaIndicatorFullMonster = "RoR2/Base/Common/matTeamAreaIndicatorFullMonster.mat"; public static string matTeamAreaIndicatorFullPlayer = "RoR2/Base/Common/matTeamAreaIndicatorFullPlayer.mat"; public static string matTeamAreaIndicatorIntersectionMonster = "RoR2/Base/Common/matTeamAreaIndicatorIntersectionMonster.mat"; public static string matTeamAreaIndicatorIntersectionPlayer = "RoR2/Base/Common/matTeamAreaIndicatorIntersectionPlayer.mat"; public static string matTeleportOutSpark = "RoR2/Base/Common/matTeleportOutSpark.mat"; public static string matTPInOut = "RoR2/Base/Common/matTPInOut.mat"; public static string matTrimSheetAlien1BossEmission = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien1BossEmission.mat"; public static string matTrimSheetAlien1BossEmissionopt = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien1BossEmission_opt.mat"; public static string matTrimSheetAlien1BossEmissionDirty = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien1BossEmissionDirty.mat"; public static string matTrimsheetAlien1Detail = "RoR2/Base/Common/TrimSheets/matTrimsheetAlien1Detail.mat"; public static string matTrimSheetAlien1Lichen = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien1Lichen.mat"; public static string matTrimSheetAlien2Lichen = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien2Lichen.mat"; public static string matTrimSheetAlien3Emissive = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien3Emissive.mat"; public static string matTrimSheetAlien3Lichen = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien3Lichen.mat"; public static string matTrimSheetAlien3LichenHeavy = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien3LichenHeavy.mat"; public static string matTrimSheetAlien3RootJungle = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien3RootJungle.mat"; public static string matTrimSheetAlien3Wires = "RoR2/Base/Common/TrimSheets/matTrimSheetAlien3Wires.mat"; public static string matTrimSheetAncient = "RoR2/Base/Common/TrimSheets/matTrimSheetAncient.mat"; public static string matTrimSheetClayBoss = "RoR2/Base/Common/TrimSheets/matTrimSheetClayBoss.mat"; public static string matTrimSheetClayBruiser = "RoR2/Base/Common/TrimSheets/matTrimSheetClayBruiser.mat"; public static string matTrimSheetClayPots = "RoR2/Base/Common/TrimSheets/matTrimSheetClayPots.mat"; public static string matTrimSheetGoldRuins = "RoR2/Base/Common/TrimSheets/matTrimSheetGoldRuins.mat"; public static string matTrimSheetGoldRuinsProjectedHuge = "RoR2/Base/Common/TrimSheets/matTrimSheetGoldRuinsProjectedHuge.mat"; public static string matTrimSheetGrassyRuinsProjected = "RoR2/Base/Common/TrimSheets/matTrimSheetGrassyRuinsProjected.mat"; public static string matTrimSheetGrassyRuinsProjectedBridge = "RoR2/Base/Common/TrimSheets/matTrimSheetGrassyRuinsProjectedBridge.mat"; public static string matTrimSheetGrassyRuinsProjectedHeavy = "RoR2/Base/Common/TrimSheets/matTrimSheetGrassyRuinsProjectedHeavy.mat"; public static string matTrimSheetGrassyRuinsProjectedLight = "RoR2/Base/Common/TrimSheets/matTrimSheetGrassyRuinsProjectedLight.mat"; public static string matTrimSheetLemurianMetalLight = "RoR2/Base/Common/TrimSheets/matTrimSheetLemurianMetalLight.mat"; public static string matTrimSheetLemurianRuins = "RoR2/Base/Common/TrimSheets/matTrimSheetLemurianRuins.mat"; public static string matTrimSheetLemurianRuinsHeavy = "RoR2/Base/Common/TrimSheets/matTrimSheetLemurianRuinsHeavy.mat"; public static string matTrimSheetLemurianRuinsLight = "RoR2/Base/Common/TrimSheets/matTrimSheetLemurianRuinsLight.mat"; public static string matTrimSheetMeadowRuinsProjected = "RoR2/Base/Common/TrimSheets/matTrimSheetMeadowRuinsProjected.mat"; public static string matTrimSheetMeadowRuinsProjectedHeavy = "RoR2/Base/Common/TrimSheets/matTrimSheetMeadowRuinsProjectedHeavy.mat"; public static string matTrimSheetMeadowRuinsProjectedHeavyopt = "RoR2/Base/Common/TrimSheets/matTrimSheetMeadowRuinsProjectedHeavy_opt.mat"; public static string matTrimSheetMossyRuinsProjected = "RoR2/Base/Common/TrimSheets/matTrimSheetMossyRuinsProjected.mat"; public static string matTrimSheetMossyRuinsProjectedHuge = "RoR2/Base/Common/TrimSheets/matTrimSheetMossyRuinsProjectedHuge.mat"; public static string matTrimSheetMossyRuinsProjectedLight = "RoR2/Base/Common/TrimSheets/matTrimSheetMossyRuinsProjectedLight.mat"; public static string matTrimSheetMSRuinsLight = "RoR2/Base/Common/TrimSheets/matTrimSheetMSRuinsLight.mat"; public static string matTrimSheetSwampyRuinsProjected = "RoR2/Base/Common/TrimSheets/matTrimSheetSwampyRuinsProjected.mat"; public static string matTrimSheetSwampyRuinsProjectedLight = "RoR2/Base/Common/TrimSheets/matTrimSheetSwampyRuinsProjectedLight.mat"; public static string matTrimSheetSwampyRuinsProjectedVeryLight = "RoR2/Base/Common/TrimSheets/matTrimSheetSwampyRuinsProjectedVeryLight.mat"; public static string matTrimsheetGraveyardProps = "RoR2/Base/Common/TrimSheets/matTrimsheetGraveyardProps.mat"; public static string matTrimsheetGraveyardPropsSmoothed = "RoR2/Base/Common/TrimSheets/matTrimsheetGraveyardPropsSmoothed.mat"; public static string matTrimsheetGraveyardTempleRed = "RoR2/Base/Common/TrimSheets/matTrimsheetGraveyardTempleRed.mat"; public static string matTrimsheetGraveyardTempleWhite = "RoR2/Base/Common/TrimSheets/matTrimsheetGraveyardTempleWhite.mat"; public static string matTrimsheetGraveyardTempleWhiteGrassy = "RoR2/Base/Common/TrimSheets/matTrimsheetGraveyardTempleWhiteGrassy.mat"; public static string matTrimSheetConstruction = "RoR2/Base/Common/TrimSheets/matTrimSheetConstruction.mat"; public static string matTrimSheetConstructionBlue = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionBlue.mat"; public static string matTrimSheetConstructionBlueEmission = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionBlueEmission.mat"; public static string matTrimSheetConstructionBlueScavenged = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionBlueScavenged.mat"; public static string matTrimSheetConstructionDestroyed = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionDestroyed.mat"; public static string matTrimSheetConstructionDestroyedopt = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionDestroyed_opt.mat"; public static string matTrimSheetConstructionFlame = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionFlame.mat"; public static string matTrimSheetConstructionLightSnow = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionLightSnow.mat"; public static string matTrimsheetConstructionLoaderAlt = "RoR2/Base/Common/TrimSheets/matTrimsheetConstructionLoaderAlt.mat"; public static string matTrimSheetConstructionRedLight = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionRedLight.mat"; public static string matTrimSheetConstructionSkyMeadow = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionSkyMeadow.mat"; public static string matTrimSheetConstructionWild = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionWild.mat"; public static string matTrimSheetConstructionWildopt = "RoR2/Base/Common/TrimSheets/matTrimSheetConstructionWild_opt.mat"; public static string matTrimSheetMetal = "RoR2/Base/Common/TrimSheets/matTrimSheetMetal.mat"; public static string matTrimsheetMetalDirty = "RoR2/Base/Common/TrimSheets/matTrimsheetMetalDirty.mat"; public static string matTrimSheetMetalGolden = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalGolden.mat"; public static string matTrimSheetMetalGoldenopt = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalGolden_opt.mat"; public static string matTrimSheetMetalHeavyLichen = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalHeavyLichen.mat"; public static string matTrimSheetMetalHeavySnow = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalHeavySnow.mat"; public static string matTrimSheetMetalLightLichen = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalLightLichen.mat"; public static string matTrimSheetMetalLightSnow = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalLightSnow.mat"; public static string matTrimSheetMetalLightSnowopt = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalLightSnow_opt.mat"; public static string matTrimSheetMetalMedical = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalMedical.mat"; public static string matTrimSheetMetalMilitaryEmission = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalMilitaryEmission.mat"; public static string matTrimSheetMetalMilitaryEmissionopt = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalMilitaryEmission_opt.mat"; public static string matTrimSheetMetalMilitaryPink = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalMilitaryPink.mat"; public static string matTrimSheetMetalNoEmission = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalNoEmission.mat"; public static string matTrimSheetMetalVibrant = "RoR2/Base/Common/TrimSheets/matTrimSheetMetalVibrant.mat"; public static string matTrimsheetScrapper = "RoR2/Base/Common/TrimSheets/matTrimsheetScrapper.mat"; public static string matTrimsheetScrapperopt = "RoR2/Base/Common/TrimSheets/matTrimsheetScrapper_opt.mat"; public static string matTrimsheetMoon = "RoR2/Base/Common/TrimSheets/matTrimsheetMoon.mat"; public static string matTrimsheetMoonBigHeavyOnTop = "RoR2/Base/Common/TrimSheets/matTrimsheetMoonBigHeavyOnTop.mat"; public static string matTrimsheetMoonHeavyDirty = "RoR2/Base/Common/TrimSheets/matTrimsheetMoonHeavyDirty.mat"; public static string matTrimsheetMoonLightDirty = "RoR2/Base/Common/TrimSheets/matTrimsheetMoonLightDirty.mat"; public static string matTrimsheetMoonProps = "RoR2/Base/Common/TrimSheets/matTrimsheetMoonProps.mat"; public static string matTrimsheetMoonStib = "RoR2/Base/Common/TrimSheets/matTrimsheetMoonStib.mat"; public static string matTrimsheetMoonStibWeathered = "RoR2/Base/Common/TrimSheets/matTrimsheetMoonStibWeathered.mat"; public static string matTrimSheetPurpleStoneBazaar = "RoR2/Base/Common/TrimSheets/matTrimSheetPurpleStoneBazaar.mat"; public static string matTrimsheetPurpleStoneGrassy = "RoR2/Base/Common/TrimSheets/matTrimsheetPurpleStoneGrassy.mat"; public static string matTrimsheetPurpleStoneLittleGrassy = "RoR2/Base/Common/TrimSheets/matTrimsheetPurpleStoneLittleGrassy.mat"; public static string matTrimsheetPurpleStoneMS = "RoR2/Base/Common/TrimSheets/matTrimsheetPurpleStoneMS.mat"; public static string matTrimsheetPurpleStoneNullified = "RoR2/Base/Common/TrimSheets/matTrimsheetPurpleStoneNullified.mat"; public static string matTrimsheetPurpleStoneShiny = "RoR2/Base/Common/TrimSheets/matTrimsheetPurpleStoneShiny.mat"; public static string matTrimsheetPurpleStoneShipgraveyard = "RoR2/Base/Common/TrimSheets/matTrimsheetPurpleStoneShipgraveyard.mat"; public static string matTrimsheetPurpleStoneSkymeadow = "RoR2/Base/Common/TrimSheets/matTrimsheetPurpleStoneSkymeadow.mat"; public static string matTrimsheetPurpleStoneSnowy = "RoR2/Base/Common/TrimSheets/matTrimsheetPurpleStoneSnowy.mat"; public static string matTrimsheetPurpleStoneVeryGrassy = "RoR2/Base/Common/TrimSheets/matTrimsheetPurpleStoneVeryGrassy.mat"; public static string matArcaneCircleBrother = "RoR2/Base/Common/VFX/matArcaneCircleBrother.mat"; public static string matArcaneCircleProvi = "RoR2/Base/Common/VFX/matArcaneCircleProvi.mat"; public static string matArcaneCircleWisp = "RoR2/Base/Common/VFX/matArcaneCircleWisp.mat"; public static string matArcVisual = "RoR2/Base/Common/VFX/matArcVisual.mat"; public static string matAreaIndicatorIntersectionOnly = "RoR2/Base/Common/VFX/matAreaIndicatorIntersectionOnly.mat"; public static string matAreaIndicatorRim = "RoR2/Base/Common/VFX/matAreaIndicatorRim.mat"; public static string matBloodClayLarge = "RoR2/Base/Common/VFX/matBloodClayLarge.mat"; public static string matBloodClaySingle = "RoR2/Base/Common/VFX/matBloodClaySingle.mat"; public static string matBloodGeneric = "RoR2/Base/Common/VFX/matBloodGeneric.mat"; public static string matBloodHumanLarge = "RoR2/Base/Common/VFX/matBloodHumanLarge.mat"; public static string matJellyfishChunks = "RoR2/Base/Common/VFX/matJellyfishChunks.mat"; public static string matJellyfishChunksLarge = "RoR2/Base/Common/VFX/matJellyfishChunksLarge.mat"; public static string matShatteredGlass = "RoR2/Base/Common/VFX/matShatteredGlass.mat"; public static string matCoin1 = "RoR2/Base/Common/VFX/matCoin1.mat"; public static string matCoin5 = "RoR2/Base/Common/VFX/matCoin5.mat"; public static string matLunarCoinPlaceholder = "RoR2/Base/Common/VFX/matLunarCoinPlaceholder.mat"; public static string matMoneyBag = "RoR2/Base/Common/VFX/matMoneyBag.mat"; public static string matMoneyBar = "RoR2/Base/Common/VFX/matMoneyBar.mat"; public static string matDistortion = "RoR2/Base/Common/VFX/matDistortion.mat"; public static string matDistortionFaded = "RoR2/Base/Common/VFX/matDistortionFaded.mat"; public static string matDistortionFadedHermitCrabost = "RoR2/Base/Common/VFX/matDistortionFaded_HermitCrab_ost.mat"; public static string matDistortionFadedvultureopt = "RoR2/Base/Common/VFX/matDistortionFaded_vulture_opt.mat"; public static string matDistortionFadeWhenClose = "RoR2/Base/Common/VFX/matDistortionFadeWhenClose.mat"; public static string matDistortionFlat = "RoR2/Base/Common/VFX/matDistortionFlat.mat"; public static string matInverseDistortion = "RoR2/Base/Common/VFX/matInverseDistortion.mat"; public static string matInverseDistortionopt = "RoR2/Base/Common/VFX/matInverseDistortion_opt.mat"; public static string matDustDirectional = "RoR2/Base/Common/VFX/matDustDirectional.mat"; public static string matDustDirectionalDark = "RoR2/Base/Common/VFX/matDustDirectionalDark.mat"; public static string matDustExhaust = "RoR2/Base/Common/VFX/matDustExhaust.mat"; public static string matGenericDustImpactCloud = "RoR2/Base/Common/VFX/matGenericDustImpactCloud.mat"; public static string matGenericSmoke = "RoR2/Base/Common/VFX/matGenericSmoke.mat"; public static string matGenericWeatherDust = "RoR2/Base/Common/VFX/matGenericWeatherDust.mat"; public static string matGenericWeatherDustopt = "RoR2/Base/Common/VFX/matGenericWeatherDust_opt.mat"; public static string matOpaqueDust = "RoR2/Base/Common/VFX/matOpaqueDust.mat"; public static string matOpaqueDustDirectional = "RoR2/Base/Common/VFX/matOpaqueDustDirectional.mat"; public static string matOpaqueDustLarge = "RoR2/Base/Common/VFX/matOpaqueDustLarge.mat"; public static string matOpaqueDustLargeBeetleGuardopt = "RoR2/Base/Common/VFX/matOpaqueDustLarge_BeetleGuard_opt.mat"; public static string matOpaqueDustLargeBrassContraptionopt = "RoR2/Base/Common/VFX/matOpaqueDustLarge_BrassContraption_opt.mat"; public static string matOpaqueDustLargeHemitCrabopt = "RoR2/Base/Common/VFX/matOpaqueDustLarge_HemitCrab_opt.mat"; public static string matOpaqueDustLargeLemurianBruiseopt = "RoR2/Base/Common/VFX/matOpaqueDustLarge_LemurianBruise_opt.mat"; public static string matOpaqueDustLargeLemurianBruise1opt = "RoR2/Base/Common/VFX/matOpaqueDustLarge_LemurianBruise1_opt.mat"; public static string matOpaqueDustLargeLunarGolemopt = "RoR2/Base/Common/VFX/matOpaqueDustLarge_LunarGolem_opt.mat"; public static string matOpaqueDustLargeMiniMushroomopt = "RoR2/Base/Common/VFX/matOpaqueDustLarge_MiniMushroom_opt.mat"; public static string matOpaqueDustLargeDirectional = "RoR2/Base/Common/VFX/matOpaqueDustLargeDirectional.mat"; public static string matOpaqueDustLargeDirectionalBeetleGuardopt = "RoR2/Base/Common/VFX/matOpaqueDustLargeDirectional_BeetleGuard_opt.mat"; public static string matOpaqueDustLargeDirectionalBrassContraptionopt = "RoR2/Base/Common/VFX/matOpaqueDustLargeDirectional_BrassContraption_opt.mat"; public static string matOpaqueDustLargeDirectionalLemurianBruiseopt = "RoR2/Base/Common/VFX/matOpaqueDustLargeDirectional_LemurianBruise_opt.mat"; public static string matOpaqueDustLargeDirectionalvultureopt = "RoR2/Base/Common/VFX/matOpaqueDustLargeDirectional_vulture_opt.mat"; public static string matOpaqueDustLight = "RoR2/Base/Common/VFX/matOpaqueDustLight.mat"; public static string matOpaqueDustLightBisonopt = "RoR2/Base/Common/VFX/matOpaqueDustLight_Bison_opt.mat"; public static string matOpaqueDustSpeckled = "RoR2/Base/Common/VFX/matOpaqueDustSpeckled.mat"; public static string matOpaqueDustSpeckledHermitCrabopt = "RoR2/Base/Common/VFX/matOpaqueDustSpeckled_HermitCrab_opt.mat"; public static string matOpaqueDustSpeckledHermitCrab1opt = "RoR2/Base/Common/VFX/matOpaqueDustSpeckled_HermitCrab1_opt.mat"; public static string matOpaqueDustSpeckledHuge = "RoR2/Base/Common/VFX/matOpaqueDustSpeckledHuge.mat"; public static string matOpaqueDustSpeckledLarge = "RoR2/Base/Common/VFX/matOpaqueDustSpeckledLarge.mat"; public static string matOpaqueDustSpeckledLargevultureopt = "RoR2/Base/Common/VFX/matOpaqueDustSpeckledLarge_vulture_opt.mat"; public static string matOpaqueDustSpeckledUnlit = "RoR2/Base/Common/VFX/matOpaqueDustSpeckledUnlit.mat"; public static string matOpaqueDustSpeckledUnlitopt = "RoR2/Base/Common/VFX/matOpaqueDustSpeckledUnlit_opt.mat"; public static string matOpaqueDustTrail = "RoR2/Base/Common/VFX/matOpaqueDustTrail.mat"; public static string matOpaqueDustTrailBeetleGuardopt = "RoR2/Base/Common/VFX/matOpaqueDustTrail_BeetleGuard_opt.mat"; public static string matOpaqueDustTrailLonger = "RoR2/Base/Common/VFX/matOpaqueDustTrailLonger.mat"; public static string matOpaqueStreaksLargeDirectional = "RoR2/Base/Common/VFX/matOpaqueStreaksLargeDirectional.mat"; public static string matShrineFloorDust = "RoR2/Base/Common/VFX/matShrineFloorDust.mat"; public static string matSpookySteam = "RoR2/Base/Common/VFX/matSpookySteam.mat"; public static string matEquipmentRestockEffectParticleFlash = "RoR2/Base/Common/VFX/matEquipmentRestockEffectParticleFlash.mat"; public static string matEquipmentRestockEffectParticleSquare = "RoR2/Base/Common/VFX/matEquipmentRestockEffectParticleSquare.mat"; public static string matChestLightbeam = "RoR2/Base/Common/VFX/ExpOrb/matChestLightbeam.mat"; public static string matExpTrail = "RoR2/Base/Common/VFX/ExpOrb/matExpTrail.mat"; public static string mageMageFireStarburst = "RoR2/Base/Common/VFX/mageMageFireStarburst.mat"; public static string matBehemothTile = "RoR2/Base/Common/VFX/matBehemothTile.mat"; public static string matFirePillarParticle = "RoR2/Base/Common/VFX/matFirePillarParticle.mat"; public static string matFireStatic = "RoR2/Base/Common/VFX/matFireStatic.mat"; public static string matFireStaticBlueLarge = "RoR2/Base/Common/VFX/matFireStaticBlueLarge.mat"; public static string matFireStaticLarge = "RoR2/Base/Common/VFX/matFireStaticLarge.mat"; public static string matGenericFire = "RoR2/Base/Common/VFX/matGenericFire.mat"; public static string matHelfirePuff = "RoR2/Base/Common/VFX/matHelfirePuff.mat"; public static string matMageFlamethrower = "RoR2/Base/Common/VFX/matMageFlamethrower.mat"; public static string matOmniExplosion1 = "RoR2/Base/Common/VFX/matOmniExplosion1.mat"; public static string matOmniExplosion1Generic = "RoR2/Base/Common/VFX/matOmniExplosion1Generic.mat"; public static string matPotExplosion = "RoR2/Base/Common/VFX/matPotExplosion.mat"; public static string matGhostEffect = "RoR2/Base/Common/VFX/matGhostEffect.mat"; public static string matGhostParticleReplacement = "RoR2/Base/Common/VFX/matGhostParticleReplacement.mat"; public static string matHealBeam = "RoR2/Base/Common/VFX/matHealBeam.mat"; public static string matHealBeam2 = "RoR2/Base/Common/VFX/matHealBeam2.mat"; public static string matHealingCross = "RoR2/Base/Common/VFX/matHealingCross.mat"; public static string matHealingCrossMiniMushroomopt = "RoR2/Base/Common/VFX/matHealingCross_MiniMushroom_opt.mat"; public static string matHealTrail1 = "RoR2/Base/Common/VFX/matHealTrail 1.mat"; public static string matHealTrail = "RoR2/Base/Common/VFX/matHealTrail.mat"; public static string matIceOrbCore = "RoR2/Base/Common/VFX/matIceOrbCore.mat"; public static string matIcePillarBase = "RoR2/Base/Common/VFX/matIcePillarBase.mat"; public static string matIsFrozen = "RoR2/Base/Common/VFX/matIsFrozen.mat"; public static string matDustWhoosh = "RoR2/Base/Common/VFX/matDustWhoosh.mat"; public static string matCritImpact = "RoR2/Base/Common/VFX/matCritImpact.mat"; public static string matCritImpactShockwave = "RoR2/Base/Common/VFX/matCritImpactShockwave.mat"; public static string matCritImpactHeavy = "RoR2/Base/Common/VFX/matCritImpactHeavy.mat"; public static string matMachineImpactCrackle = "RoR2/Base/Common/VFX/matMachineImpactCrackle.mat"; public static string matOpaqueLavaFoam = "RoR2/Base/Common/VFX/matOpaqueLavaFoam.mat"; public static string matOpaqueLavaSplash = "RoR2/Base/Common/VFX/matOpaqueLavaSplash.mat"; public static string matOpaqueWaterFoam = "RoR2/Base/Common/VFX/matOpaqueWaterFoam.mat"; public static string matOpaqueWaterSplash = "RoR2/Base/Common/VFX/matOpaqueWaterSplash.mat"; public static string matLevelUpGenericTrail = "RoR2/Base/Common/VFX/matLevelUpGenericTrail.mat"; public static string matJellyfishLightning = "RoR2/Base/Common/VFX/matJellyfishLightning.mat"; public static string matJellyfishLightningLarge = "RoR2/Base/Common/VFX/matJellyfishLightningLarge.mat"; public static string matJellyfishLightningSphere = "RoR2/Base/Common/VFX/matJellyfishLightningSphere.mat"; public static string matJellyfishLightningSphereopt = "RoR2/Base/Common/VFX/matJellyfishLightningSphere_opt.mat"; public static string matLightningArm = "RoR2/Base/Common/VFX/matLightningArm.mat"; public static string matLightningFlash = "RoR2/Base/Common/VFX/matLightningFlash.mat"; public static string matLightningLongBlue = "RoR2/Base/Common/VFX/matLightningLongBlue.mat"; public static string matLightningSphere = "RoR2/Base/Common/VFX/matLightningSphere.mat"; public static string matChanceShrineDollEffect = "RoR2/Base/Common/VFX/matChanceShrineDollEffect.mat"; public static string matBright = "RoR2/Base/Common/VFX/matBright.mat"; public static string matCryoCanisterSphere = "RoR2/Base/Common/VFX/matCryoCanisterSphere.mat"; public static string matCutExplosion = "RoR2/Base/Common/VFX/matCutExplosion.mat"; public static string matDebris1 = "RoR2/Base/Common/VFX/matDebris1.mat"; public static string matDebris1BeetleGuardopt = "RoR2/Base/Common/VFX/matDebris1_BeetleGuard_opt.mat"; public static string matDebris1BrassContraptionopt = "RoR2/Base/Common/VFX/matDebris1_BrassContraption_opt.mat"; public static string matDebris1HermitCrabost = "RoR2/Base/Common/VFX/matDebris1_HermitCrab_ost.mat"; public static string matDebris1LemurianBruiseopt = "RoR2/Base/Common/VFX/matDebris1_LemurianBruise_opt.mat"; public static string matDebris1MiniMushroomopt = "RoR2/Base/Common/VFX/matDebris1_MiniMushroom_opt.mat"; public static string matEquipmentTrail = "RoR2/Base/Common/VFX/matEquipmentTrail.mat"; public static string matGenericFlash = "RoR2/Base/Common/VFX/matGenericFlash.mat"; public static string matGenericFlashHermitCrabopt = "RoR2/Base/Common/VFX/matGenericFlash_HermitCrab_opt.mat"; public static string matGenericFlashMalachiteUrchinopt = "RoR2/Base/Common/VFX/matGenericFlash_MalachiteUrchin_opt.mat"; public static string matGenericFlashopt = "RoR2/Base/Common/VFX/matGenericFlash_opt.mat"; public static string matGenericFlashSolusProbeopt = "RoR2/Base/Common/VFX/matGenericFlash_SolusProbe_opt.mat"; public static string matGenericFlashvultureopt = "RoR2/Base/Common/VFX/matGenericFlash_vulture_opt.mat"; public static string matGenericLaser = "RoR2/Base/Common/VFX/matGenericLaser.mat"; public static string matGenericStarburst = "RoR2/Base/Common/VFX/matGenericStarburst.mat"; public static string matGenericSwingTrail = "RoR2/Base/Common/VFX/matGenericSwingTrail.mat"; public static string matGenericTrail = "RoR2/Base/Common/VFX/matGenericTrail.mat"; public static string matGlow1 = "RoR2/Base/Common/VFX/matGlow1.mat"; public static string matGlow1Soft = "RoR2/Base/Common/VFX/matGlow1Soft.mat"; public static string matGlow1TransparentBehind = "RoR2/Base/Common/VFX/matGlow1TransparentBehind.mat"; public static string matGlow2Soft = "RoR2/Base/Common/VFX/matGlow2Soft.mat"; public static string matGlow2SoftBrassContraptionopt = "RoR2/Base/Common/VFX/matGlow2Soft_BrassContraption_opt.mat"; public static string matGlowPaintSmall = "RoR2/Base/Common/VFX/matGlowPaintSmall.mat"; public static string matGolemElectric = "RoR2/Base/Common/VFX/matGolemElectric.mat"; public static string matGolemExplosion = "RoR2/Base/Common/VFX/matGolemExplosion.mat"; public static string matGolemLaserIndicator = "RoR2/Base/Common/VFX/matGolemLaserIndicator.mat"; public static string matGravsphereCore = "RoR2/Base/Common/VFX/matGravsphereCore.mat"; public static string matLaserPointerBeam = "RoR2/Base/Common/VFX/matLaserPointerBeam.mat"; public static string matRain = "RoR2/Base/Common/VFX/matRain.mat"; public static string matRainopt = "RoR2/Base/Common/VFX/matRain_opt.mat"; public static string matShieldBreakFlash1 = "RoR2/Base/Common/VFX/matShieldBreakFlash 1.mat"; public static string matShieldBreakFlash = "RoR2/Base/Common/VFX/matShieldBreakFlash.mat"; public static string matShockwave2 = "RoR2/Base/Common/VFX/matShockwave2.mat"; public static string matSnowflake = "RoR2/Base/Common/VFX/matSnowflake.mat"; public static string matSnowflakeopt = "RoR2/Base/Common/VFX/matSnowflake_opt.mat"; public static string matSpark1 = "RoR2/Base/Common/VFX/matSpark1.mat"; public static string matSparkCutout00 = "RoR2/Base/Common/VFX/matSparkCutout00.mat"; public static string matSparkCutout00MalachiteUrchinopt = "RoR2/Base/Common/VFX/matSparkCutout00_MalachiteUrchin_opt.mat"; public static string matStoneFlecks = "RoR2/Base/Common/VFX/matStoneFlecks.mat"; public static string matTracer = "RoR2/Base/Common/VFX/matTracer.mat"; public static string matTracerLunarGolemopt = "RoR2/Base/Common/VFX/matTracer_LunarGolem_opt.mat"; public static string matTracerBright = "RoR2/Base/Common/VFX/matTracerBright.mat"; public static string matTracerBrightBeetleGuardopt = "RoR2/Base/Common/VFX/matTracerBright_BeetleGuard_opt.mat"; public static string matTracerBrightClayBruiseropt = "RoR2/Base/Common/VFX/matTracerBright_ClayBruiser_opt.mat"; public static string matTracerBrightHermitCrabopt = "RoR2/Base/Common/VFX/matTracerBright_HermitCrab_opt.mat"; public static string matTracerBrightJellyFishopt = "RoR2/Base/Common/VFX/matTracerBright_JellyFish_opt.mat"; public static string matTracerBrightLemurianBruiseropt = "RoR2/Base/Common/VFX/matTracerBright_LemurianBruiser_opt.mat"; public static string matTracerBrightopt = "RoR2/Base/Common/VFX/matTracerBright_opt.mat"; public static string matTracerBrightTransparent = "RoR2/Base/Common/VFX/matTracerBrightTransparent.mat"; public static string matTracerDark = "RoR2/Base/Common/VFX/matTracerDark.mat"; public static string matTracerFadeWhenClose = "RoR2/Base/Common/VFX/matTracerFadeWhenClose.mat"; public static string matTracerLessBright = "RoR2/Base/Common/VFX/matTracerLessBright.mat"; public static string matWeakPointShockwave = "RoR2/Base/Common/VFX/matWeakPointShockwave.mat"; public static string matWideGlow = "RoR2/Base/Common/VFX/matWideGlow.mat"; public static string matShieldBreakLightning1 = "RoR2/Base/Common/VFX/matShieldBreakLightning 1.mat"; public static string matShieldBreakLightning = "RoR2/Base/Common/VFX/matShieldBreakLightning.mat"; public static string matShieldShards = "RoR2/Base/Common/VFX/matShieldShards.mat"; public static string matStunStar = "RoR2/Base/Common/VFX/matStunStar.mat"; public static string matOmniExplosion1Drone = "RoR2/Base/Common/VFX/matOmniExplosion1Drone.mat"; public static string matOmniHitspark1 = "RoR2/Base/Common/VFX/matOmniHitspark1.mat"; public static string matOmniHitspark1Generic = "RoR2/Base/Common/VFX/matOmniHitspark1Generic.mat"; public static string matOmniHitspark1Large = "RoR2/Base/Common/VFX/matOmniHitspark1Large.mat"; public static string matOmniHitspark2 = "RoR2/Base/Common/VFX/matOmniHitspark2.mat"; public static string matOmniHitspark2Generic = "RoR2/Base/Common/VFX/matOmniHitspark2Generic.mat"; public static string matOmniHitspark3 = "RoR2/Base/Common/VFX/matOmniHitspark3.mat"; public static string matOmniHitspark3Generic = "RoR2/Base/Common/VFX/matOmniHitspark3Generic.mat"; public static string matOmniHitspark4 = "RoR2/Base/Common/VFX/matOmniHitspark4.mat"; public static string matOmniRadialSlash1Generic = "RoR2/Base/Common/VFX/matOmniRadialSlash1Generic.mat"; public static string matOmniRing1 = "RoR2/Base/Common/VFX/matOmniRing1.mat"; public static string matOmniRing1Generic = "RoR2/Base/Common/VFX/matOmniRing1Generic.mat"; public static string matOmniRing2 = "RoR2/Base/Common/VFX/matOmniRing2.mat"; public static string matOmniRing2Generic = "RoR2/Base/Common/VFX/matOmniRing2Generic.mat"; public static string matDustSoft = "RoR2/Base/Common/VFX/matDustSoft.mat"; public static string matTeleportOut = "RoR2/Base/Common/VFX/matTeleportOut.mat"; public static string matTeleportShards1 = "RoR2/Base/Common/VFX/matTeleportShards 1.mat"; public static string matTeleportShards = "RoR2/Base/Common/VFX/matTeleportShards.mat"; public static string matSmokeTrail = "RoR2/Base/Common/VFX/matSmokeTrail.mat"; public static string matWireTrail = "RoR2/Base/Common/VFX/matWireTrail.mat"; public static string matVoidDeathBombAreaIndicatorBack = "RoR2/Base/Common/matVoidDeathBombAreaIndicatorBack.mat"; public static string matVoidDeathBombAreaIndicatorFront = "RoR2/Base/Common/matVoidDeathBombAreaIndicatorFront.mat"; public static string matVoidDeathBombDust = "RoR2/Base/Common/matVoidDeathBombDust.mat"; public static string matVoidDeathBombGem = "RoR2/Base/Common/matVoidDeathBombGem.mat"; public static string matVoidDeathBombStreak = "RoR2/Base/Common/matVoidDeathBombStreak.mat"; public static string matDamageIndicator = "RoR2/Base/Core/Camera/matDamageIndicator.mat"; public static string matScreenDamage = "RoR2/Base/Core/CameraEffects/matScreenDamage.mat"; public static string matSprintLines = "RoR2/Base/Core/CameraEffects/matSprintLines.mat"; public static string matDamageNumber = "RoR2/Base/Core/matDamageNumber.mat"; public static string matNull = "RoR2/Base/Core/matNull.mat"; public static string testOutline = "RoR2/Base/Core/Outline/testOutline.mat"; public static string testOutlineSkinned = "RoR2/Base/Core/Outline/testOutline_Skinned.mat"; public static string matEliteFirePickup = "RoR2/Base/EliteFire/matEliteFirePickup.mat"; public static string matEliteHorn = "RoR2/Base/EliteFire/matEliteHorn.mat"; public static string matEliteHauntedOverlay = "RoR2/Base/EliteHaunted/matEliteHauntedOverlay.mat"; public static string matEliteHauntedParticleReplacement = "RoR2/Base/EliteHaunted/matEliteHauntedParticleReplacement.mat"; public static string matEliteHauntedPickup = "RoR2/Base/EliteHaunted/matEliteHauntedPickup.mat"; public static string matEliteHauntedTrail = "RoR2/Base/EliteHaunted/matEliteHauntedTrail.mat"; public static string matEliteJustHauntedOverlay1 = "RoR2/Base/EliteHaunted/matEliteJustHauntedOverlay 1.mat"; public static string matEliteJustHauntedOverlay = "RoR2/Base/EliteHaunted/matEliteJustHauntedOverlay.mat"; public static string matEliteStealthCrown = "RoR2/Base/EliteHaunted/matEliteStealthCrown.mat"; public static string matHauntedEliteAreaIndicator = "RoR2/Base/EliteHaunted/matHauntedEliteAreaIndicator.mat"; public static string matAffixWhiteSphereExplosion = "RoR2/Base/EliteIce/matAffixWhiteSphereExplosion.mat"; public static string matAffixWhiteSphereIndicator = "RoR2/Base/EliteIce/matAffixWhiteSphereIndicator.mat"; public static string matEliteIce = "RoR2/Base/EliteIce/matEliteIce.mat"; public static string matEliteIcePickup = "RoR2/Base/EliteIce/matEliteIcePickup.mat"; public static string matEliteLightning = "RoR2/Base/EliteLightning/matEliteLightning.mat"; public static string matEliteLightningPickup = "RoR2/Base/EliteLightning/matEliteLightningPickup.mat"; public static string matEliteRhinoHorn = "RoR2/Base/EliteLightning/matEliteRhinoHorn.mat"; public static string matEliteLunarDonut = "RoR2/Base/EliteLunar/matEliteLunarDonut.mat"; public static string matEliteLunarParticleReplacement = "RoR2/Base/EliteLunar/matEliteLunarParticleReplacement.mat"; public static string matEliteLunarPickup = "RoR2/Base/EliteLunar/matEliteLunarPickup.mat"; public static string matElitePoisonAreaIndicator = "RoR2/Base/ElitePoison/matElitePoisonAreaIndicator.mat"; public static string matElitePoisonDarkTrail = "RoR2/Base/ElitePoison/matElitePoisonDarkTrail.mat"; public static string matElitePoisonOverlay = "RoR2/Base/ElitePoison/matElitePoisonOverlay.mat"; public static string matElitePoisonParticleReplacement = "RoR2/Base/ElitePoison/matElitePoisonParticleReplacement.mat"; public static string matElitePoisonPickup = "RoR2/Base/ElitePoison/matElitePoisonPickup.mat"; public static string matEliteUrchinCrown = "RoR2/Base/ElitePoison/matEliteUrchinCrown.mat"; public static string matBeamSphereBeam = "RoR2/Base/BFG/matBeamSphereBeam.mat"; public static string matBeamSphereCenter = "RoR2/Base/BFG/matBeamSphereCenter.mat"; public static string matBeamSphereLightning = "RoR2/Base/BFG/matBeamSphereLightning.mat"; public static string matBFG = "RoR2/Base/BFG/matBFG.mat"; public static string matBlackholeGalaxyIntense = "RoR2/Base/Blackhole/matBlackholeGalaxyIntense.mat"; public static string matBlackholeGalaxyLight = "RoR2/Base/Blackhole/matBlackholeGalaxyLight.mat"; public static string matGravCube = "RoR2/Base/Blackhole/matGravCube.mat"; public static string matHelfireIgniteEffectFlare = "RoR2/Base/BurnNearby/matHelfireIgniteEffectFlare.mat"; public static string matHelfireRangeIndicator = "RoR2/Base/BurnNearby/matHelfireRangeIndicator.mat"; public static string matOnHelfire = "RoR2/Base/BurnNearby/matOnHelfire.mat"; public static string matPotion = "RoR2/Base/BurnNearby/matPotion.mat"; public static string matCleanseCore = "RoR2/Base/Cleanse/matCleanseCore.mat"; public static string matCleanseShockwave = "RoR2/Base/Cleanse/matCleanseShockwave.mat"; public static string matCleanseWater = "RoR2/Base/Cleanse/matCleanseWater.mat"; public static string matWaterPack = "RoR2/Base/Cleanse/matWaterPack.mat"; public static string matMissileRack = "RoR2/Base/CommandMissile/matMissileRack.mat"; public static string matCrippleSphereIndicator = "RoR2/Base/CrippleWard/matCrippleSphereIndicator.mat"; public static string matEffigy = "RoR2/Base/CrippleWard/matEffigy.mat"; public static string matLunarWardCripple = "RoR2/Base/CrippleWard/matLunarWardCripple.mat"; public static string matLunarWardDecal = "RoR2/Base/CrippleWard/matLunarWardDecal.mat"; public static string matFullCrit = "RoR2/Base/CritOnUse/matFullCrit.mat"; public static string matNeuralImplantHUD = "RoR2/Base/CritOnUse/matNeuralImplantHUD.mat"; public static string matNeuralImplantHUDSolid = "RoR2/Base/CritOnUse/matNeuralImplantHUDSolid.mat"; public static string matDeathProjctileDarkTrails = "RoR2/Base/DeathProjectile/matDeathProjctileDarkTrails.mat"; public static string matDeathProjectile = "RoR2/Base/DeathProjectile/matDeathProjectile.mat"; public static string matDeathProjectileFlare = "RoR2/Base/DeathProjectile/matDeathProjectileFlare.mat"; public static string matDeathProjectileTrail = "RoR2/Base/DeathProjectile/matDeathProjectileTrail.mat"; public static string matRadio = "RoR2/Base/DroneBackup/matRadio.mat"; public static string matDustOpaque = "RoR2/Base/FireBallDash/matDustOpaque.mat"; public static string matEgg = "RoR2/Base/FireBallDash/matEgg.mat"; public static string matEggRunes = "RoR2/Base/FireBallDash/matEggRunes.mat"; public static string matGasolineFire = "RoR2/Base/FireBallDash/matGasolineFire.mat"; public static string matFruit = "RoR2/Base/Fruit/matFruit.mat"; public static string matElephantDefenseUp = "RoR2/Base/GainArmor/matElephantDefenseUp.mat"; public static string matElephantFigure = "RoR2/Base/GainArmor/matElephantFigure.mat"; public static string matElephantShield = "RoR2/Base/GainArmor/matElephantShield.mat"; public static string matGatewayBeam = "RoR2/Base/Gateway/matGatewayBeam.mat"; public static string matGatewaySphere = "RoR2/Base/Gateway/matGatewaySphere.mat"; public static string matVase = "RoR2/Base/Gateway/matVase.mat"; public static string matVaseSticks = "RoR2/Base/Gateway/matVaseSticks.mat"; public static string matGoldGat = "RoR2/Base/GoldGat/matGoldGat.mat"; public static string matBugChrysalis = "RoR2/Base/Jetpack/matBugChrysalis.mat"; public static string matBugWingMotion = "RoR2/Base/Jetpack/matBugWingMotion.mat"; public static string matBugWings = "RoR2/Base/Jetpack/matBugWings.mat"; public static string matHealingLifesteal = "RoR2/Base/LifestealOnHit/matHealingLifesteal.mat"; public static string matLifestealOnHit = "RoR2/Base/LifestealOnHit/matLifestealOnHit.mat"; public static string matLifeStealOnHitAura = "RoR2/Base/LifestealOnHit/matLifeStealOnHitAura.mat"; public static string matLifeStealOnHitAuraTrails = "RoR2/Base/LifestealOnHit/matLifeStealOnHitAuraTrails.mat"; public static string matLifeStealOnHitNoiseTrail = "RoR2/Base/LifestealOnHit/matLifeStealOnHitNoiseTrail.mat"; public static string matLifeStealOnHitTrail = "RoR2/Base/LifestealOnHit/matLifeStealOnHitTrail.mat"; public static string matCapacitor = "RoR2/Base/Lightning/matCapacitor.mat"; public static string matLightningStrike = "RoR2/Base/Lightning/matLightningStrike.mat"; public static string matMeteor = "RoR2/Base/Meteor/matMeteor.mat"; public static string matMeteorStrikeImpactIndicator = "RoR2/Base/Meteor/matMeteorStrikeImpactIndicator.mat"; public static string matWoodSprite = "RoR2/Base/PassiveHealing/matWoodSprite.mat"; public static string matWoodSpriteBranch = "RoR2/Base/PassiveHealing/matWoodSpriteBranch.mat"; public static string matWoodSpriteCloud = "RoR2/Base/PassiveHealing/matWoodSpriteCloud.mat"; public static string matWoodSpriteFlare = "RoR2/Base/PassiveHealing/matWoodSpriteFlare.mat"; public static string matVoltaileBatteryExplosion = "RoR2/Base/QuestVolatileBattery/matVoltaileBatteryExplosion.mat"; public static string matRecycler = "RoR2/Base/Recycle/matRecycler.mat"; public static string matRecyclerChunks = "RoR2/Base/Recycle/matRecyclerChunks.mat"; public static string matSawmerang = "RoR2/Base/Saw/matSawmerang.mat"; public static string matSawmerangDistortion = "RoR2/Base/Saw/matSawmerangDistortion.mat"; public static string matSawmerangTrail = "RoR2/Base/Saw/matSawmerangTrail.mat"; public static string matTeamWarCry = "RoR2/Base/TeamWarCry/matTeamWarCry.mat"; public static string matTeamWarCryDistortion = "RoR2/Base/TeamWarCry/matTeamWarCryDistortion.mat"; public static string matTeamWarCryRing01 = "RoR2/Base/TeamWarCry/matTeamWarCryRing01.mat"; public static string matTeamWarCryRings02 = "RoR2/Base/TeamWarCry/matTeamWarCryRings02.mat"; public static string matTeamWarCrySoundDir = "RoR2/Base/TeamWarCry/matTeamWarCrySoundDir.mat"; public static string matTonicCrystal = "RoR2/Base/Tonic/matTonicCrystal.mat"; public static string matTonicGlass = "RoR2/Base/Tonic/matTonicGlass.mat"; public static string matTeleportCrystalOut = "RoR2/Base/WeeklyRun/matTeleportCrystalOut.mat"; public static string matCategoryChestDamage = "RoR2/Base/CategoryChest/matCategoryChestDamage.mat"; public static string matCategoryChestDamageopt = "RoR2/Base/CategoryChest/matCategoryChestDamage_opt.mat"; public static string matCategoryChestDamageSymbol = "RoR2/Base/CategoryChest/matCategoryChestDamageSymbol.mat"; public static string matCategoryChestDamageSymbolopt = "RoR2/Base/CategoryChest/matCategoryChestDamageSymbol_opt.mat"; public static string matCategoryChestHealing = "RoR2/Base/CategoryChest/matCategoryChestHealing.mat"; public static string matCategoryChestHealingopt = "RoR2/Base/CategoryChest/matCategoryChestHealing_opt.mat"; public static string matCategoryChestHealingSymbol = "RoR2/Base/CategoryChest/matCategoryChestHealingSymbol.mat"; public static string matCategoryChestHealingSymbolopt = "RoR2/Base/CategoryChest/matCategoryChestHealingSymbol_opt.mat"; public static string matCategoryChestUtility = "RoR2/Base/CategoryChest/matCategoryChestUtility.mat"; public static string matCategoryChestUtilityopt = "RoR2/Base/CategoryChest/matCategoryChestUtility_opt.mat"; public static string matCategoryChestUtilitySymbol = "RoR2/Base/CategoryChest/matCategoryChestUtilitySymbol.mat"; public static string matCategoryChestUtilitySymbolopt = "RoR2/Base/CategoryChest/matCategoryChestUtilitySymbol_opt.mat"; public static string matChest1 = "RoR2/Base/Chest1/matChest1.mat"; public static string matChest1opt = "RoR2/Base/Chest1/matChest1_opt.mat"; public static string matDuplicator = "RoR2/Base/Duplicator/matDuplicator.mat"; public static string matDuplicatoropt = "RoR2/Base/Duplicator/matDuplicator_opt.mat"; public static string matEquipmentBarrel = "RoR2/Base/EquipmentBarrel/matEquipmentBarrel.mat"; public static string matEquipmentBarrelopt = "RoR2/Base/EquipmentBarrel/matEquipmentBarrel_opt.mat"; public static string matLunarChest = "RoR2/Base/LunarChest/matLunarChest.mat"; public static string matLunarChestopt = "RoR2/Base/LunarChest/matLunarChest_opt.mat"; public static string matLunarSteam = "RoR2/Base/LunarChest/matLunarSteam.mat"; public static string matLunarRecycler = "RoR2/Base/LunarRecycler/matLunarRecycler.mat"; public static string matLunarRecycleropt = "RoR2/Base/LunarRecycler/matLunarRecycler_opt.mat"; public static string matLunarRecyclerDebris = "RoR2/Base/LunarRecycler/matLunarRecyclerDebris.mat"; public static string matMultishopEquipment = "RoR2/Base/MultiShopEquipmentTerminal/matMultishopEquipment.mat"; public static string matMultishopEquipmentopt = "RoR2/Base/MultiShopEquipmentTerminal/matMultishopEquipment_opt.mat"; public static string matMultishop = "RoR2/Base/MultiShopTerminal/matMultishop.mat"; public static string matMultishopopt = "RoR2/Base/MultiShopTerminal/matMultishop_opt.mat"; public static string matGoldshoresPortalEffectCenter = "RoR2/Base/PortalGoldshores/matGoldshoresPortalEffectCenter.mat"; public static string matGoldshoresPortalEffectCenteropt = "RoR2/Base/PortalGoldshores/matGoldshoresPortalEffectCenter_opt.mat"; public static string matGoldshoresPortalEffectEdge = "RoR2/Base/PortalGoldshores/matGoldshoresPortalEffectEdge.mat"; public static string matGoldshoresPortalEffectEdgeopt = "RoR2/Base/PortalGoldshores/matGoldshoresPortalEffectEdge_opt.mat"; public static string matMSPortalEffectCenter = "RoR2/Base/PortalMS/matMSPortalEffectCenter.mat"; public static string matMSPortalEffectCenteropt = "RoR2/Base/PortalMS/matMSPortalEffectCenter_opt.mat"; public static string matMSPortalEffectCenter2 = "RoR2/Base/PortalMS/matMSPortalEffectCenter2.mat"; public static string matMSPortalEffectCenter2opt = "RoR2/Base/PortalMS/matMSPortalEffectCenter2_opt.mat"; public static string matMSPortalEffectEdge = "RoR2/Base/PortalMS/matMSPortalEffectEdge.mat"; public static string matMSPortalEffectEdgeopt = "RoR2/Base/PortalMS/matMSPortalEffectEdge_opt.mat"; public static string matShopPortalEffectCenter = "RoR2/Base/PortalShop/matShopPortalEffectCenter.mat"; public static string matShopPortalEffectCenteropt = "RoR2/Base/PortalShop/matShopPortalEffectCenter_opt.mat"; public static string matShopPortalEffectEdge = "RoR2/Base/PortalShop/matShopPortalEffectEdge.mat"; public static string matShopPortalEffectEdgeopt = "RoR2/Base/PortalShop/matShopPortalEffectEdge_opt.mat"; public static string matRadarTowerAreaIndicator = "RoR2/Base/RadarTower/matRadarTowerAreaIndicator.mat"; public static string matShrineBlood = "RoR2/Base/ShrineBlood/matShrineBlood.mat"; public static string matShrineBloodopt = "RoR2/Base/ShrineBlood/matShrineBlood_opt.mat"; public static string matShrineBloodSymbol = "RoR2/Base/ShrineBlood/matShrineBloodSymbol.mat"; public static string matShrineBloodSymbolopt = "RoR2/Base/ShrineBlood/matShrineBloodSymbol_opt.mat"; public static string matShrineBloodSandy = "RoR2/Base/ShrineBlood/matShrineBloodSandy.mat"; public static string matShrineBloodSandyopt = "RoR2/Base/ShrineBlood/matShrineBloodSandy_opt.mat"; public static string matShrineBloodSandy1 = "RoR2/Base/ShrineBlood/matShrineBloodSandy 1.mat"; public static string matShrineBloodSandy1opt = "RoR2/Base/ShrineBlood/matShrineBloodSandy 1_opt.mat"; public static string matShrineBoss = "RoR2/Base/ShrineBoss/matShrineBoss.mat"; public static string matShrineBossopt = "RoR2/Base/ShrineBoss/matShrineBoss_opt.mat"; public static string matShrineBossSymbol = "RoR2/Base/ShrineBoss/matShrineBossSymbol.mat"; public static string matShrineBossSymbolopt = "RoR2/Base/ShrineBoss/matShrineBossSymbol_opt.mat"; public static string matShrineBossSandy = "RoR2/Base/ShrineBoss/matShrineBossSandy.mat"; public static string matShrineBossSandyopt = "RoR2/Base/ShrineBoss/matShrineBossSandy_opt.mat"; public static string matShrineBossSnowy = "RoR2/Base/ShrineBoss/matShrineBossSnowy.mat"; public static string matShrineBossSnowyopt = "RoR2/Base/ShrineBoss/matShrineBossSnowy_opt.mat"; public static string matShrineChance = "RoR2/Base/ShrineChance/matShrineChance.mat"; public static string matShrineChanceopt = "RoR2/Base/ShrineChance/matShrineChance_opt.mat"; public static string matShrineChanceSymbol = "RoR2/Base/ShrineChance/matShrineChanceSymbol.mat"; public static string matShrineChanceSymbolopt = "RoR2/Base/ShrineChance/matShrineChanceSymbol_opt.mat"; public static string matShrineChanceSandy = "RoR2/Base/ShrineChance/matShrineChanceSandy.mat"; public static string matShrineChanceSandyopt = "RoR2/Base/ShrineChance/matShrineChanceSandy_opt.mat"; public static string matShrineChanceSnowy = "RoR2/Base/ShrineChance/matShrineChanceSnowy.mat"; public static string matShrineChanceSnowyopt = "RoR2/Base/ShrineChance/matShrineChanceSnowy_opt.mat"; public static string matShrineCleanse = "RoR2/Base/ShrineCleanse/matShrineCleanse.mat"; public static string matShrineCleanseopt = "RoR2/Base/ShrineCleanse/matShrineCleanse_opt.mat"; public static string matShrineCleanseFoam = "RoR2/Base/ShrineCleanse/matShrineCleanseFoam.mat"; public static string matShrineCleanseFoamopt = "RoR2/Base/ShrineCleanse/matShrineCleanseFoam_opt.mat"; public static string matShrineCleanseSandy = "RoR2/Base/ShrineCleanse/matShrineCleanseSandy.mat"; public static string matShrineCleanseSandyopt = "RoR2/Base/ShrineCleanse/matShrineCleanseSandy_opt.mat"; public static string matShrineCleanseSnowy = "RoR2/Base/ShrineCleanse/matShrineCleanseSnowy.mat"; public static string matShrineCleanseSnowyopt = "RoR2/Base/ShrineCleanse/matShrineCleanseSnowy_opt.mat"; public static string matShrineCombat = "RoR2/Base/ShrineCombat/matShrineCombat.mat"; public static string matShrineCombatopt = "RoR2/Base/ShrineCombat/matShrineCombat_opt.mat"; public static string matShrineCombatSymbol = "RoR2/Base/ShrineCombat/matShrineCombatSymbol.mat"; public static string matShrineCombatSymbolopt = "RoR2/Base/ShrineCombat/matShrineCombatSymbol_opt.mat"; public static string matShrineCombatSandy = "RoR2/Base/ShrineCombat/matShrineCombatSandy.mat"; public static string matShrineCombatSandyopt = "RoR2/Base/ShrineCombat/matShrineCombatSandy_opt.mat"; public static string matShrineCombatSnowy = "RoR2/Base/ShrineCombat/matShrineCombatSnowy.mat"; public static string matShrineCombatSnowyopt = "RoR2/Base/ShrineCombat/matShrineCombatSnowy_opt.mat"; public static string matShrineChanceGolden = "RoR2/Base/ShrineGoldshoresAccess/matShrineChanceGolden.mat"; public static string matShrineChanceGoldenopt = "RoR2/Base/ShrineGoldshoresAccess/matShrineChanceGolden_opt.mat"; public static string matShrineGoldshoresAccessSymbol = "RoR2/Base/ShrineGoldshoresAccess/matShrineGoldshoresAccessSymbol.mat"; public static string matShrineHealing = "RoR2/Base/ShrineHealing/matShrineHealing.mat"; public static string matShrineHealingopt = "RoR2/Base/ShrineHealing/matShrineHealing_opt.mat"; public static string matShrineHealingSymbol = "RoR2/Base/ShrineHealing/matShrineHealingSymbol.mat"; public static string matShrineHealingSymbolopt = "RoR2/Base/ShrineHealing/matShrineHealingSymbol_opt.mat"; public static string matHealingShrineAura = "RoR2/Base/ShrineHealing/matHealingShrineAura.mat"; public static string matHealingShrineAuraMiniMushroomopt = "RoR2/Base/ShrineHealing/matHealingShrineAura_MiniMushroom_opt.mat"; public static string matShrineRestack = "RoR2/Base/ShrineRestack/matShrineRestack.mat"; public static string matShrineRestackopt = "RoR2/Base/ShrineRestack/matShrineRestack_opt.mat"; public static string matShrineRestackSymbol = "RoR2/Base/ShrineRestack/matShrineRestackSymbol.mat"; public static string matShrineRestackSymbolopt = "RoR2/Base/ShrineRestack/matShrineRestackSymbol_opt.mat"; public static string matShrineRestackSandySplatmap = "RoR2/Base/ShrineRestack/matShrineRestackSandySplatmap.mat"; public static string matShrineRestackSandySplatmapopt = "RoR2/Base/ShrineRestack/matShrineRestackSandySplatmap_opt.mat"; public static string matShrineRestackSandyVertex = "RoR2/Base/ShrineRestack/matShrineRestackSandyVertex.mat"; public static string matShrineRestackSnowySplatmap = "RoR2/Base/ShrineRestack/matShrineRestackSnowySplatmap.mat"; public static string matShrineRestackSnowySplatmapopt = "RoR2/Base/ShrineRestack/matShrineRestackSnowySplatmap_opt.mat"; public static string matShrineRestackSnowyVertex = "RoR2/Base/ShrineRestack/matShrineRestackSnowyVertex.mat"; public static string matShrineRestackSnowyVertexopt = "RoR2/Base/ShrineRestack/matShrineRestackSnowyVertex_opt.mat"; public static string matLunarTeleporter = "RoR2/Base/Teleporters/matLunarTeleporter.mat"; public static string matLunarTeleporteropt = "RoR2/Base/Teleporters/matLunarTeleporter_opt.mat"; public static string matLunarTeleporterWater = "RoR2/Base/Teleporters/matLunarTeleporterWater.mat"; public static string matTPLunarFire = "RoR2/Base/Teleporters/matTPLunarFire.mat"; public static string matTPLunarLaser = "RoR2/Base/Teleporters/matTPLunarLaser.mat"; public static string matTPProngDisabled = "RoR2/Base/Teleporters/matTPProngDisabled.mat"; public static string matTPProngDisabledopt = "RoR2/Base/Teleporters/matTPProngDisabled_opt.mat"; public static string matTeleporterClean = "RoR2/Base/Teleporters/matTeleporterClean.mat"; public static string matTeleporterCleanopt = "RoR2/Base/Teleporters/matTeleporterClean_opt.mat"; public static string matTeleporterFresnelOverlay = "RoR2/Base/Teleporters/matTeleporterFresnelOverlay.mat"; public static string matTeleporterFresnelOverlayopt = "RoR2/Base/Teleporters/matTeleporterFresnelOverlay_opt.mat"; public static string matTeleporterRangeIndicator = "RoR2/Base/Teleporters/matTeleporterRangeIndicator.mat"; public static string matTPFire = "RoR2/Base/Teleporters/matTPFire.mat"; public static string matTPLaser = "RoR2/Base/Teleporters/matTPLaser.mat"; public static string matTPLightning = "RoR2/Base/Teleporters/matTPLightning.mat"; public static string matTPLightningOrange = "RoR2/Base/Teleporters/matTPLightningOrange.mat"; public static string matTPLunarLightning = "RoR2/Base/Teleporters/matTPLunarLightning.mat"; public static string matTPShockwave = "RoR2/Base/Teleporters/matTPShockwave.mat"; public static string matTutorialWave = "RoR2/Base/Teleporters/matTutorialWave.mat"; public static string matEntryBurn = "RoR2/Base/SurvivorPod/matEntryBurn.mat"; public static string matEscapePod = "RoR2/Base/SurvivorPod/matEscapePod.mat"; public static string matEscapePodopt = "RoR2/Base/SurvivorPod/matEscapePod_opt.mat"; public static string matImpactDirt = "RoR2/Base/SurvivorPod/matImpactDirt.mat"; public static string matPodImpactDecal = "RoR2/Base/SurvivorPod/matPodImpactDecal.mat"; public static string matAlienHead = "RoR2/Base/AlienHead/matAlienHead.mat"; public static string matAlienHeadBugs = "RoR2/Base/AlienHead/matAlienHeadBugs.mat"; public static string matRepulsionArmorPlate = "RoR2/Base/ArmorPlate/matRepulsionArmorPlate.mat"; public static string matArmorChunks = "RoR2/Base/ArmorReductionOnHit/matArmorChunks.mat"; public static string matArmorShatterImpactEffect = "RoR2/Base/ArmorReductionOnHit/matArmorShatterImpactEffect.mat"; public static string matPulverizedOverlay = "RoR2/Base/ArmorReductionOnHit/matPulverizedOverlay.mat"; public static string matWarhammer = "RoR2/Base/ArmorReductionOnHit/matWarhammer.mat"; public static string matWolfhatOverlay = "RoR2/Base/AttackSpeedOnCrit/matWolfhatOverlay.mat"; public static string matWolfPelt = "RoR2/Base/AttackSpeedOnCrit/matWolfPelt.mat"; public static string matFossil = "RoR2/Base/AutoCastEquipment/matFossil.mat"; public static string matBandolier = "RoR2/Base/Bandolier/matBandolier.mat"; public static string matPickups = "RoR2/Base/Bandolier/matPickups.mat"; public static string matPickupsNoOffset = "RoR2/Base/Bandolier/matPickupsNoOffset.mat"; public static string matBarrier = "RoR2/Base/BarrierOnKill/matBarrier.mat"; public static string matBrooch = "RoR2/Base/BarrierOnKill/matBrooch.mat"; public static string matBroochGemstone = "RoR2/Base/BarrierOnKill/matBroochGemstone.mat"; public static string matAegis = "RoR2/Base/BarrierOnOverHeal/matAegis.mat"; public static string matBear = "RoR2/Base/Bear/matBear.mat"; public static string matBearFluff = "RoR2/Base/Bear/matBearFluff.mat"; public static string matBeetleAllyGuard = "RoR2/Base/BeetleGland/matBeetleAllyGuard.mat"; public static string matBeetleGland = "RoR2/Base/BeetleGland/matBeetleGland.mat"; public static string matBehemoth = "RoR2/Base/Behemoth/matBehemoth.mat"; public static string matTriTip = "RoR2/Base/BleedOnHit/matTriTip.mat"; public static string matBleedOnHitAndExplode = "RoR2/Base/BleedOnHitAndExplode/matBleedOnHitAndExplode.mat"; public static string matBleedOnHitAndExplodeAreaIndicator = "RoR2/Base/BleedOnHitAndExplode/matBleedOnHitAndExplodeAreaIndicator.mat"; public static string matPickupMoneyPack = "RoR2/Base/BonusGoldPackOnKill/matPickupMoneyPack.mat"; public static string matTome = "RoR2/Base/BonusGoldPackOnKill/matTome.mat"; public static string matTomeGold = "RoR2/Base/BonusGoldPackOnKill/matTomeGold.mat"; public static string matAPRound = "RoR2/Base/BossDamageBonus/matAPRound.mat"; public static string matBossDamageImpact = "RoR2/Base/BossDamageBonus/matBossDamageImpact.mat"; public static string matHook = "RoR2/Base/BounceNearby/matHook.mat"; public static string matHookProjectile = "RoR2/Base/BounceNearby/matHookProjectile.mat"; public static string matHookTrail = "RoR2/Base/BounceNearby/matHookTrail.mat"; public static string matHookTrailAdditive = "RoR2/Base/BounceNearby/matHookTrailAdditive.mat"; public static string matUkulele = "RoR2/Base/ChainLightning/matUkulele.mat"; public static string matUkulele2 = "RoR2/Base/ChainLightning/matUkulele2.mat"; public static string matClover = "RoR2/Base/Clover/matClover.mat"; public static string matCloverEffect = "RoR2/Base/Clover/matCloverEffect.mat"; public static string matCloverRing = "RoR2/Base/Clover/matCloverRing.mat"; public static string matGlasses = "RoR2/Base/CritGlasses/matGlasses.mat"; public static string matCrowbar = "RoR2/Base/Crowbar/matCrowbar.mat"; public static string matCrowbarImpact = "RoR2/Base/Crowbar/matCrowbarImpact.mat"; public static string matBlood1 = "RoR2/Base/Dagger/matBlood1.mat"; public static string matDagger = "RoR2/Base/Dagger/matDagger.mat"; public static string matDaggerArm = "RoR2/Base/Dagger/matDaggerArm.mat"; public static string matDaggerProc = "RoR2/Base/Dagger/matDaggerProc.mat"; public static string texDaggerProcDiffuse = "RoR2/Base/Dagger/texDaggerProcDiffuse.mat"; public static string matDeathMark = "RoR2/Base/DeathMark/matDeathMark.mat"; public static string matDeathMarkFire = "RoR2/Base/DeathMark/matDeathMarkFire.mat"; public static string matDeathMarkSkull = "RoR2/Base/DeathMark/matDeathMarkSkull.mat"; public static string matFireRing = "RoR2/Base/ElementalRings/matFireRing.mat"; public static string matFireRingGemstone = "RoR2/Base/ElementalRings/matFireRingGemstone.mat"; public static string matFireRingRunes = "RoR2/Base/ElementalRings/matFireRingRunes.mat"; public static string matFireTornadoBillboardEffect = "RoR2/Base/ElementalRings/matFireTornadoBillboardEffect.mat"; public static string matFireTornadoMeshEffect = "RoR2/Base/ElementalRings/matFireTornadoMeshEffect.mat"; public static string matFireTornadoMeshEffect2 = "RoR2/Base/ElementalRings/matFireTornadoMeshEffect2.mat"; public static string matFireTornadoMeshEffect3 = "RoR2/Base/ElementalRings/matFireTornadoMeshEffect3.mat"; public static string matIceRing = "RoR2/Base/ElementalRings/matIceRing.mat"; public static string matIceRingGemstone = "RoR2/Base/ElementalRings/matIceRingGemstone.mat"; public static string matIceRingRunes = "RoR2/Base/ElementalRings/matIceRingRunes.mat"; public static string matIceRingSplash = "RoR2/Base/ElementalRings/matIceRingSplash.mat"; public static string matWarhorn = "RoR2/Base/EnergizedOnEquipmentUse/matWarhorn.mat"; public static string matBattery = "RoR2/Base/EquipmentMagazine/matBattery.mat"; public static string matGuillotine = "RoR2/Base/ExecuteLowHealthElite/matGuillotine.mat"; public static string matGlassJarDistortion = "RoR2/Base/ExplodeOnDeath/matGlassJarDistortion.mat"; public static string matGlassJarLid = "RoR2/Base/ExplodeOnDeath/matGlassJarLid.mat"; public static string matWilloWispCore = "RoR2/Base/ExplodeOnDeath/matWilloWispCore.mat"; public static string matWillowispPreDetonate = "RoR2/Base/ExplodeOnDeath/matWillowispPreDetonate.mat"; public static string matWillowispRadial = "RoR2/Base/ExplodeOnDeath/matWillowispRadial.mat"; public static string matWillowispSpiral = "RoR2/Base/ExplodeOnDeath/matWillowispSpiral.mat"; public static string matAngelEffect = "RoR2/Base/ExtraLife/matAngelEffect.mat"; public static string matAngelFeather = "RoR2/Base/ExtraLife/matAngelFeather.mat"; public static string matHippo = "RoR2/Base/ExtraLife/matHippo.mat"; public static string matBootShockwave = "RoR2/Base/FallBoots/matBootShockwave.mat"; public static string matBootWaveEnergy = "RoR2/Base/FallBoots/matBootWaveEnergy.mat"; public static string matGravBoots = "RoR2/Base/FallBoots/matGravBoots.mat"; public static string matFeather = "RoR2/Base/Feather/matFeather.mat"; public static string matFeatherCutout = "RoR2/Base/Feather/matFeatherCutout.mat"; public static string matFeatherPickup = "RoR2/Base/Feather/matFeatherPickup.mat"; public static string matFeatherTileCut = "RoR2/Base/Feather/matFeatherTileCut.mat"; public static string matFireballsOnHit = "RoR2/Base/FireballsOnHit/matFireballsOnHit.mat"; public static string matFireMeatballDecal = "RoR2/Base/FireballsOnHit/matFireMeatballDecal.mat"; public static string matFirework = "RoR2/Base/Firework/matFirework.mat"; public static string matFireworkGlow00 = "RoR2/Base/Firework/matFireworkGlow00.mat"; public static string matFireworkSparkle = "RoR2/Base/Firework/matFireworkSparkle.mat"; public static string matFireworkSparkle2 = "RoR2/Base/Firework/matFireworkSparkle2.mat"; public static string matSteak = "RoR2/Base/FlatHealth/matSteak.mat"; public static string matFocusedConvergence = "RoR2/Base/FocusConvergence/matFocusedConvergence.mat"; public static string matFocusedConvergenceOrb = "RoR2/Base/FocusConvergence/matFocusedConvergenceOrb.mat"; public static string matMask = "RoR2/Base/GhostOnKill/matMask.mat"; public static string matBoneCrown = "RoR2/Base/GoldOnHit/matBoneCrown.mat"; public static string matSkullcrown = "RoR2/Base/HeadHunter/matSkullcrown.mat"; public static string matScythe = "RoR2/Base/HealOnCrit/matScythe.mat"; public static string matSnail = "RoR2/Base/HealWhileSafe/matSnail.mat"; public static string matHoof = "RoR2/Base/Hoof/matHoof.mat"; public static string matHoofBandage = "RoR2/Base/Hoof/matHoofBandage.mat"; public static string matFrostRelic = "RoR2/Base/Icicle/matFrostRelic.mat"; public static string matIceAura = "RoR2/Base/Icicle/matIceAura.mat"; public static string matIceAuraSphere = "RoR2/Base/Icicle/matIceAuraSphere.mat"; public static string matIcicle = "RoR2/Base/Icicle/matIcicle.mat"; public static string matGasoline = "RoR2/Base/IgniteOnKill/matGasoline.mat"; public static string matOmniHitspark3Gasoline = "RoR2/Base/IgniteOnKill/matOmniHitspark3Gasoline.mat"; public static string matAntler = "RoR2/Base/IncreaseHealing/matAntler.mat"; public static string matInfusionBlood = "RoR2/Base/Infusion/matInfusionBlood.mat"; public static string matInfusionGlass = "RoR2/Base/Infusion/matInfusionGlass.mat"; public static string matInfusionTrail = "RoR2/Base/Infusion/matInfusionTrail.mat"; public static string matInfusionTubing = "RoR2/Base/Infusion/matInfusionTubing.mat"; public static string matDoppelganger = "RoR2/Base/InvadingDoppelganger/matDoppelganger.mat"; public static string matTempestAura = "RoR2/Base/JumpBoost/matTempestAura.mat"; public static string matWaxBird = "RoR2/Base/JumpBoost/matWaxBird.mat"; public static string matBrain = "RoR2/Base/KillEliteFrenzy/matBrain.mat"; public static string matBrainstalkActive = "RoR2/Base/KillEliteFrenzy/matBrainstalkActive.mat"; public static string matBrainstalks = "RoR2/Base/KillEliteFrenzy/matBrainstalks.mat"; public static string matOmniHitspark3Frenzy = "RoR2/Base/KillEliteFrenzy/matOmniHitspark3Frenzy.mat"; public static string matKnurl = "RoR2/Base/Knurl/matKnurl.mat"; public static string matBombFlash = "RoR2/Base/LaserTurbine/matBombFlash.mat"; public static string matFlash = "RoR2/Base/LaserTurbine/matFlash.mat"; public static string matLaserTurbineCore = "RoR2/Base/LaserTurbine/matLaserTurbineCore.mat"; public static string matLaserTurbineFlame = "RoR2/Base/LaserTurbine/matLaserTurbineFlame.mat"; public static string matLaserTurbineTargetingLaser = "RoR2/Base/LaserTurbine/matLaserTurbineTargetingLaser.mat"; public static string matLaserTurbineTracerLaser = "RoR2/Base/LaserTurbine/matLaserTurbineTracerLaser.mat"; public static string matTurbineIndicatorInnerDisk = "RoR2/Base/LaserTurbine/matTurbineIndicatorInnerDisk.mat"; public static string matTurbineIndicatorOuterRing = "RoR2/Base/LaserTurbine/matTurbineIndicatorOuterRing.mat"; public static string matChargedPerforator = "RoR2/Base/LightningStrikeOnHit/matChargedPerforator.mat"; public static string matStarSeed = "RoR2/Base/LunarBadLuck/matStarSeed.mat"; public static string matBrittle = "RoR2/Base/LunarDagger/matBrittle.mat"; public static string matLunarDagger = "RoR2/Base/LunarDagger/matLunarDagger.mat"; public static string matBirdEye = "RoR2/Base/LunarSkillReplacements/matBirdEye.mat"; public static string matLunarNeedle = "RoR2/Base/LunarSkillReplacements/matLunarNeedle.mat"; public static string matLunarNeedleImpactEffect = "RoR2/Base/LunarSkillReplacements/matLunarNeedleImpactEffect.mat"; public static string matLunarNeedleTrail = "RoR2/Base/LunarSkillReplacements/matLunarNeedleTrail.mat"; public static string matBirdClaw = "RoR2/Base/LunarSkillReplacements/matBirdClaw.mat"; public static string matBirdClawBandage = "RoR2/Base/LunarSkillReplacements/matBirdClawBandage.mat"; public static string matBirdClawFeather = "RoR2/Base/LunarSkillReplacements/matBirdClawFeather.mat"; public static string matWoundBillboard = "RoR2/Base/LunarSkillReplacements/matWoundBillboard.mat"; public static string matWoundBillboardSlash = "RoR2/Base/LunarSkillReplacements/matWoundBillboardSlash.mat"; public static string matWoundRoot = "RoR2/Base/LunarSkillReplacements/matWoundRoot.mat"; public static string matWoundSlashTrail = "RoR2/Base/LunarSkillReplacements/matWoundSlashTrail.mat"; public static string matWoundSphericalBackdrop = "RoR2/Base/LunarSkillReplacements/matWoundSphericalBackdrop.mat"; public static string matWoundSphericalBright = "RoR2/Base/LunarSkillReplacements/matWoundSphericalBright.mat"; public static string matWoundSphericalIntersection = "RoR2/Base/LunarSkillReplacements/matWoundSphericalIntersection.mat"; public static string matWoundSphericalIntersectionAndRim = "RoR2/Base/LunarSkillReplacements/matWoundSphericalIntersectionAndRim.mat"; public static string matBirdHeart = "RoR2/Base/LunarSkillReplacements/matBirdHeart.mat"; public static string matBirdHeartDisplay = "RoR2/Base/LunarSkillReplacements/matBirdHeartDisplay.mat"; public static string matBirdHeartFire = "RoR2/Base/LunarSkillReplacements/matBirdHeartFire.mat"; public static string matBirdHeartRuin = "RoR2/Base/LunarSkillReplacements/matBirdHeartRuin.mat"; public static string matBirdHeartRuinSingleStab = "RoR2/Base/LunarSkillReplacements/matBirdHeartRuinSingleStab.mat"; public static string matBirdFoot = "RoR2/Base/LunarSkillReplacements/matBirdFoot.mat"; public static string matCrowstormEffectCenter = "RoR2/Base/LunarSkillReplacements/matCrowstormEffectCenter.mat"; public static string matCrowstormFeather = "RoR2/Base/LunarSkillReplacements/matCrowstormFeather.mat"; public static string matCrowstormFeatherRepeated = "RoR2/Base/LunarSkillReplacements/matCrowstormFeatherRepeated.mat"; public static string matBeadsDiffuse = "RoR2/Base/LunarTrinket/matBeadsDiffuse.mat"; public static string matMedkit = "RoR2/Base/Medkit/matMedkit.mat"; public static string matMissile = "RoR2/Base/Missile/matMissile.mat"; public static string matMissileLauncher = "RoR2/Base/Missile/matMissileLauncher.mat"; public static string matMissileTrail = "RoR2/Base/Missile/matMissileTrail.mat"; public static string matMonstersOnShrineUse = "RoR2/Base/MonstersOnShrineUse/matMonstersOnShrineUse.mat"; public static string matShrineMonstersSymbol = "RoR2/Base/MonstersOnShrineUse/matShrineMonstersSymbol.mat"; public static string matMushroom = "RoR2/Base/Mushroom/matMushroom.mat"; public static string matMushroomSphereIndicator = "RoR2/Base/Mushroom/matMushroomSphereIndicator.mat"; public static string matMushroomSpore = "RoR2/Base/Mushroom/matMushroomSpore.mat"; public static string matMushroomTransparent = "RoR2/Base/Mushroom/matMushroomTransparent.mat"; public static string matDiamond = "RoR2/Base/NearbyDamageBonus/matDiamond.mat"; public static string matDiamondImpactEffect = "RoR2/Base/NearbyDamageBonus/matDiamondImpactEffect.mat"; public static string matNearbyDamageBonusRangeIndicator = "RoR2/Base/NearbyDamageBonus/matNearbyDamageBonusRangeIndicator.mat"; public static string matDevilHorns = "RoR2/Base/NovaOnHeal/matDevilHorns.mat"; public static string matDevilSkull = "RoR2/Base/NovaOnHeal/matDevilSkull.mat"; public static string matHauntedAura = "RoR2/Base/NovaOnHeal/matHauntedAura.mat"; public static string matSkullFire = "RoR2/Base/NovaOnHeal/matSkullFire.mat"; public static string matJellyGuts = "RoR2/Base/NovaOnLowHealth/matJellyGuts.mat"; public static string matParentEggInner = "RoR2/Base/ParentEgg/matParentEggInner.mat"; public static string matParentEggOuter = "RoR2/Base/ParentEgg/matParentEggOuter.mat"; public static string matParentFetus = "RoR2/Base/ParentEgg/matParentFetus.mat"; public static string matPearl = "RoR2/Base/Pearl/matPearl.mat"; public static string matShieldGenerator = "RoR2/Base/PersonalShield/matShieldGenerator.mat"; public static string matStealthkit = "RoR2/Base/Phasing/matStealthkit.mat"; public static string matStealthkitProc = "RoR2/Base/Phasing/matStealthkitProc.mat"; public static string matStealthkitSparks = "RoR2/Base/Phasing/matStealthkitSparks.mat"; public static string matInterstellarDeskPlant = "RoR2/Base/Plant/matInterstellarDeskPlant.mat"; public static string matDangerZoneWardDecal = "RoR2/Base/RandomDamageZone/matDangerZoneWardDecal.mat"; public static string matRandomDamageZone = "RoR2/Base/RandomDamageZone/matRandomDamageZone.mat"; public static string matRandomDamageZoneBuff = "RoR2/Base/RandomDamageZone/matRandomDamageZoneBuff.mat"; public static string matCorpseflower = "RoR2/Base/RepeatHeal/matCorpseflower.mat"; public static string RoboBallFriendGreen = "RoR2/Base/RoboBallBuddy/RoboBallFriendGreen.mat"; public static string RoboBallFriendGreenFoliage = "RoR2/Base/RoboBallBuddy/RoboBallFriendGreenFoliage.mat"; public static string matRoboballFriendScarf = "RoR2/Base/RoboBallBuddy/matRoboballFriendScarf.mat"; public static string matDoubleMag = "RoR2/Base/SecondarySkillMagazine/matDoubleMag.mat"; public static string matSeed = "RoR2/Base/Seed/matSeed.mat"; public static string matShieldBug = "RoR2/Base/ShieldOnly/matShieldBug.mat"; public static string matShinyPearl = "RoR2/Base/ShinyPearl/matShinyPearl.mat"; public static string matLightningTesla = "RoR2/Base/ShockNearby/matLightningTesla.mat"; public static string matLightningTeslaSlow = "RoR2/Base/ShockNearby/matLightningTeslaSlow.mat"; public static string matTeslaCoil = "RoR2/Base/ShockNearby/matTeslaCoil.mat"; public static string matSiphonOnLowHealth = "RoR2/Base/SiphonOnLowHealth/matSiphonOnLowHealth.mat"; public static string matSiphonOnLowHealthTar = "RoR2/Base/SiphonOnLowHealth/matSiphonOnLowHealthTar.mat"; public static string matBaubleEffect = "RoR2/Base/SlowOnHit/matBaubleEffect.mat"; public static string matBaubleMetal = "RoR2/Base/SlowOnHit/matBaubleMetal.mat"; public static string matBaubleSand = "RoR2/Base/SlowOnHit/matBaubleSand.mat"; public static string matBaubleTimestopDistortion = "RoR2/Base/SlowOnHit/matBaubleTimestopDistortion.mat"; public static string matBaubleTimestopSphere = "RoR2/Base/SlowOnHit/matBaubleTimestopSphere.mat"; public static string matBuckler = "RoR2/Base/SprintArmor/matBuckler.mat"; public static string matBucklerDefenseUp = "RoR2/Base/SprintArmor/matBucklerDefenseUp.mat"; public static string matSoda = "RoR2/Base/SprintBonus/matSoda.mat"; public static string matWhip = "RoR2/Base/SprintOutOfCombat/matWhip.mat"; public static string matBrokenMask = "RoR2/Base/SprintWisp/matBrokenMask.mat"; public static string matSquidInkExplosion = "RoR2/Base/Squid/matSquidInkExplosion.mat"; public static string matSquidInkMuzzle = "RoR2/Base/Squid/matSquidInkMuzzle.mat"; public static string matSquidInkOrbExhaust = "RoR2/Base/Squid/matSquidInkOrbExhaust.mat"; public static string matSquidInkSplash = "RoR2/Base/Squid/matSquidInkSplash.mat"; public static string matSquidInkTrail = "RoR2/Base/Squid/matSquidInkTrail.mat"; public static string matSquidTurret = "RoR2/Base/Squid/matSquidTurret.mat"; public static string matSquidTurretPickup = "RoR2/Base/Squid/matSquidTurretPickup.mat"; public static string matBehemothBillboard = "RoR2/Base/StickyBomb/matBehemothBillboard.mat"; public static string matStickyBomb = "RoR2/Base/StickyBomb/matStickyBomb.mat"; public static string matStickyBombPulse = "RoR2/Base/StickyBomb/matStickyBombPulse.mat"; public static string matStunGrenade = "RoR2/Base/StunChanceOnHit/matStunGrenade.mat"; public static string matSyringe = "RoR2/Base/Syringe/matSyringe.mat"; public static string matTalisman = "RoR2/Base/Talisman/matTalisman.mat"; public static string matRazorwire = "RoR2/Base/Thorns/matRazorwire.mat"; public static string matRazorwireHead = "RoR2/Base/Thorns/matRazorwireHead.mat"; public static string matRazorwireTrail = "RoR2/Base/Thorns/matRazorwireTrail.mat"; public static string matGoldHeart = "RoR2/Base/TitanGoldDuringTP/matGoldHeart.mat"; public static string matHealthOrbFlashCloud = "RoR2/Base/Tooth/matHealthOrbFlashCloud.mat"; public static string matHealthOrbFlashDroplet = "RoR2/Base/Tooth/matHealthOrbFlashDroplet.mat"; public static string matTooth = "RoR2/Base/Tooth/matTooth.mat"; public static string matToothNecklace = "RoR2/Base/Tooth/matToothNecklace.mat"; public static string matToothNecklaceDecal = "RoR2/Base/Tooth/matToothNecklaceDecal.mat"; public static string matGlowFlower = "RoR2/Base/TPHealingNova/matGlowFlower.mat"; public static string matGlowFlowerAreaIndicator1 = "RoR2/Base/TPHealingNova/matGlowFlowerAreaIndicator 1.mat"; public static string matGlowFlowerAreaIndicator = "RoR2/Base/TPHealingNova/matGlowFlowerAreaIndicator.mat"; public static string matGlowFlowerRings = "RoR2/Base/TPHealingNova/matGlowFlowerRings.mat"; public static string matKey = "RoR2/Base/TreasureCache/matKey.mat"; public static string matLockbox = "RoR2/Base/TreasureCache/matLockbox.mat"; public static string matAfterburnerFire = "RoR2/Base/UtilitySkillMagazine/matAfterburnerFire.mat"; public static string matAftterburnerMeshEffect = "RoR2/Base/UtilitySkillMagazine/matAftterburnerMeshEffect.mat"; public static string matPauldron = "RoR2/Base/WarCryOnMultiKill/matPauldron.mat"; public static string matPauldronIndicatorTrail = "RoR2/Base/WarCryOnMultiKill/matPauldronIndicatorTrail.mat"; public static string matWarCryRage = "RoR2/Base/WarCryOnMultiKill/matWarCryRage.mat"; public static string matWarcrySphereIndicator = "RoR2/Base/WarCryOnMultiKill/matWarcrySphereIndicator.mat"; public static string matIndicatorWarbanner = "RoR2/Base/WardOnLevel/matIndicatorWarbanner.mat"; public static string matWarbannerBuffBillboard = "RoR2/Base/WardOnLevel/matWarbannerBuffBillboard.mat"; public static string matWarbannerBuffRing = "RoR2/Base/WardOnLevel/matWarbannerBuffRing.mat"; public static string matWarbannerFlag1 = "RoR2/Base/WardOnLevel/matWarbannerFlag 1.mat"; public static string matWarbannerFlag = "RoR2/Base/WardOnLevel/matWarbannerFlag.mat"; public static string matWarbannerPole = "RoR2/Base/WardOnLevel/matWarbannerPole.mat"; public static string matWarbannerSphereIndicator = "RoR2/Base/WardOnLevel/matWarbannerSphereIndicator.mat"; public static string matWarbannerSphereIndicator2 = "RoR2/Base/WardOnLevel/matWarbannerSphereIndicator2.mat"; public static string matQuestionMark = "RoR2/Base/Mystery/matQuestionMark.mat"; public static string matSkyboxArena = "RoR2/Base/arena/matSkyboxArena.mat"; public static string Billboard25 = "RoR2/Base/arena/Billboard.mat"; public static string Branches0LOD032 = "RoR2/Base/arena/Branches_0_LOD0.mat"; public static string Branches0LOD1 = "RoR2/Base/arena/Branches_0_LOD1.mat"; public static string Branches0LOD2 = "RoR2/Base/arena/Branches_0_LOD2.mat"; public static string Fronds1LOD0 = "RoR2/Base/arena/Fronds_1_LOD0.mat"; public static string Fronds1LOD1 = "RoR2/Base/arena/Fronds_1_LOD1.mat"; public static string Fronds1LOD2 = "RoR2/Base/arena/Fronds_1_LOD2.mat"; public static string matArenaHeatvent1 = "RoR2/Base/arena/matArenaHeatvent1.mat"; public static string matArenaLowFog = "RoR2/Base/arena/matArenaLowFog.mat"; public static string matArenaLowFogopt = "RoR2/Base/arena/matArenaLowFog_opt.mat"; public static string matArenaSky = "RoR2/Base/arena/matArenaSky.mat"; public static string matArenaStalagmite = "RoR2/Base/arena/matArenaStalagmite.mat"; public static string matArenaTerrain = "RoR2/Base/arena/matArenaTerrain.mat"; public static string matArenaTerrainGem = "RoR2/Base/arena/matArenaTerrainGem.mat"; public static string matArenaTerrainVerySnowy = "RoR2/Base/arena/matArenaTerrainVerySnowy.mat"; public static string matArenaGate = "RoR2/Base/arena/matArenaGate.mat"; public static string matArenaTrim = "RoR2/Base/arena/matArenaTrim.mat"; public static string matArenaTrimopt = "RoR2/Base/arena/matArenaTrim_opt.mat"; public static string matArtifactBloody = "RoR2/Base/artifactworld/matArtifactBloody.mat"; public static string matArtifactGem = "RoR2/Base/artifactworld/matArtifactGem.mat"; public static string matArtifactGlass = "RoR2/Base/artifactworld/matArtifactGlass.mat"; public static string matArtifactGlassOverlay = "RoR2/Base/artifactworld/matArtifactGlassOverlay.mat"; public static string matArtifactInternalGlow = "RoR2/Base/artifactworld/matArtifactInternalGlow.mat"; public static string matArtifactRed = "RoR2/Base/artifactworld/matArtifactRed.mat"; public static string matArtifactPortalCenter = "RoR2/Base/artifactworld/matArtifactPortalCenter.mat"; public static string matArtifactPortalCenterDark = "RoR2/Base/artifactworld/matArtifactPortalCenterDark.mat"; public static string matArtifactPortalCenterDarkopt = "RoR2/Base/artifactworld/matArtifactPortalCenterDark_opt.mat"; public static string matArtifactPortalEdge = "RoR2/Base/artifactworld/matArtifactPortalEdge.mat"; public static string matArtifactPortalEdgeopt = "RoR2/Base/artifactworld/matArtifactPortalEdge_opt.mat"; public static string matArtifactPortalEdgeBackdrop = "RoR2/Base/artifactworld/matArtifactPortalEdgeBackdrop.mat"; public static string matArtifactPortalEdgeBackdropopt = "RoR2/Base/artifactworld/matArtifactPortalEdgeBackdrop_opt.mat"; public static string matArtifactShellDistortion = "RoR2/Base/artifactworld/matArtifactShellDistortion.mat"; public static string matArtifactShellExplosionIndicator = "RoR2/Base/artifactworld/matArtifactShellExplosionIndicator.mat"; public static string matArtifactShellOverlay = "RoR2/Base/artifactworld/matArtifactShellOverlay.mat"; public static string matArtifactShellSolarFlare = "RoR2/Base/artifactworld/matArtifactShellSolarFlare.mat"; public static string matArtifactShellSolarFlareProjectile = "RoR2/Base/artifactworld/matArtifactShellSolarFlareProjectile.mat"; public static string matArtifactShellTrail = "RoR2/Base/artifactworld/matArtifactShellTrail.mat"; public static string matFlareParticle = "RoR2/Base/artifactworld/matFlareParticle.mat"; public static string matArtifactChunkBillboard = "RoR2/Base/artifactworld/matArtifactChunkBillboard.mat"; public static string matArtifactFlash = "RoR2/Base/artifactworld/matArtifactFlash.mat"; public static string matAWGroundDecal = "RoR2/Base/artifactworld/matAWGroundDecal.mat"; public static string matAWSkySphere = "RoR2/Base/artifactworld/matAWSkySphere.mat"; public static string matAWSkySphereSparks = "RoR2/Base/artifactworld/matAWSkySphereSparks.mat"; public static string matCrystalBeetle = "RoR2/Base/artifactworld/matCrystalBeetle.mat"; public static string matDoppelgangerAura = "RoR2/Base/artifactworld/matDoppelgangerAura.mat"; public static string matDoppelgangerAuraWet = "RoR2/Base/artifactworld/matDoppelgangerAuraWet.mat"; public static string matDoppelgangerTentacles = "RoR2/Base/artifactworld/matDoppelgangerTentacles.mat"; public static string matSpiteBombSphereIndicator = "RoR2/Base/artifactworld/matSpiteBombSphereIndicator.mat"; public static string matSkyboxArtifactWorld = "RoR2/Base/artifactworld/matSkyboxArtifactWorld.mat"; public static string matSkyboxArtifactWorldTest = "RoR2/Base/artifactworld/matSkyboxArtifactWorldTest.mat"; public static string matAWWater = "RoR2/Base/artifactworld/matAWWater.mat"; public static string matAWWateropt = "RoR2/Base/artifactworld/matAWWater_opt.mat"; public static string FacingLeaves1LOD0 = "RoR2/Base/artifactworld/FacingLeaves_1_LOD0.mat"; public static string Leaves0LOD0 = "RoR2/Base/artifactworld/Leaves_0_LOD0.mat"; public static string matBazaarHangingLights = "RoR2/Base/bazaar/matBazaarHangingLights.mat"; public static string matBazaarPots = "RoR2/Base/bazaar/matBazaarPots.mat"; public static string matBazaarPropDark = "RoR2/Base/bazaar/matBazaarPropDark.mat"; public static string matLightInfection = "RoR2/Base/bazaar/matLightInfection.mat"; public static string matLunarInfection = "RoR2/Base/bazaar/matLunarInfection.mat"; public static string matLunarInfectionopt = "RoR2/Base/bazaar/matLunarInfection_opt.mat"; public static string matSkybox4 = "RoR2/Base/bazaar/matSkybox4.mat"; public static string matBazaarDirtDecal = "RoR2/Base/bazaar/matBazaarDirtDecal.mat"; public static string matBazaarDrips = "RoR2/Base/bazaar/matBazaarDrips.mat"; public static string matBazaarIceCore = "RoR2/Base/bazaar/matBazaarIceCore.mat"; public static string matBazaarIceDistortion = "RoR2/Base/bazaar/matBazaarIceDistortion.mat"; public static string matBazaarLightCrystal = "RoR2/Base/bazaar/matBazaarLightCrystal.mat"; public static string matBazaarLowFog = "RoR2/Base/bazaar/matBazaarLowFog.mat"; public static string matBazaarPebble = "RoR2/Base/bazaar/matBazaarPebble.mat"; public static string matBazaarTerrainPlatform = "RoR2/Base/bazaar/matBazaarTerrainPlatform.mat"; public static string matBazaarTerrainTriplanar = "RoR2/Base/bazaar/matBazaarTerrainTriplanar.mat"; public static string matBazaarTerrainYProjected = "RoR2/Base/bazaar/matBazaarTerrainYProjected.mat"; public static string matBazaarWater = "RoR2/Base/bazaar/matBazaarWater.mat"; public static string matBazaarWaterfallAdditive = "RoR2/Base/bazaar/matBazaarWaterfallAdditive.mat"; public static string matBazaarWaterfallOpaque = "RoR2/Base/bazaar/matBazaarWaterfallOpaque.mat"; public static string matBazaarWaterfallParticleOpaque = "RoR2/Base/bazaar/matBazaarWaterfallParticleOpaque.mat"; public static string matShopMilk = "RoR2/Base/bazaar/matShopMilk.mat"; public static string matBazaarBlueprintTable = "RoR2/Base/bazaar/matBazaarBlueprintTable.mat"; public static string matBazaarCauldron = "RoR2/Base/bazaar/matBazaarCauldron.mat"; public static string matBazaarCauldronopt = "RoR2/Base/bazaar/matBazaarCauldron_opt.mat"; public static string matBazaarCauldronBubble = "RoR2/Base/bazaar/matBazaarCauldronBubble.mat"; public static string matBazaarCauldronBubbleopt = "RoR2/Base/bazaar/matBazaarCauldronBubble_opt.mat"; public static string matBazaarHangingCloth = "RoR2/Base/bazaar/matBazaarHangingCloth.mat"; public static string matBazaarLunarTable = "RoR2/Base/bazaar/matBazaarLunarTable.mat"; public static string matBazaarRedGreenLiquid = "RoR2/Base/bazaar/matBazaarRedGreenLiquid.mat"; public static string matBazaarRedGreenLiquidopt = "RoR2/Base/bazaar/matBazaarRedGreenLiquid_opt.mat"; public static string matBazaarRedWhiteLiquid = "RoR2/Base/bazaar/matBazaarRedWhiteLiquid.mat"; public static string matBazaarRedWhiteLiquidopt = "RoR2/Base/bazaar/matBazaarRedWhiteLiquid_opt.mat"; public static string matBazaarRug = "RoR2/Base/bazaar/matBazaarRug.mat"; public static string matBazaarUpgrade = "RoR2/Base/bazaar/matBazaarUpgrade.mat"; public static string matBazaarWhiteGreenLiquid = "RoR2/Base/bazaar/matBazaarWhiteGreenLiquid.mat"; public static string matBazaarWhiteGreenLiquidopt = "RoR2/Base/bazaar/matBazaarWhiteGreenLiquid_opt.mat"; public static string matBazaarWood = "RoR2/Base/bazaar/matBazaarWood.mat"; public static string matBazaarWoodSandy = "RoR2/Base/bazaar/matBazaarWoodSandy.mat"; public static string matLunarChestBright = "RoR2/Base/bazaar/matLunarChestBright.mat"; public static string matNewtBubble = "RoR2/Base/bazaar/matNewtBubble.mat"; public static string matNewtHalfBubble = "RoR2/Base/bazaar/matNewtHalfBubble.mat"; public static string matNewtStatue = "RoR2/Base/bazaar/matNewtStatue.mat"; public static string matNewtStatueopt = "RoR2/Base/bazaar/matNewtStatue_opt.mat"; public static string matNewtStatueSandy = "RoR2/Base/bazaar/matNewtStatueSandy.mat"; public static string matBazaarSeerBlackbeach = "RoR2/Base/bazaar/matBazaarSeerBlackbeach.mat"; public static string matBazaarSeerDampcavesimple = "RoR2/Base/bazaar/matBazaarSeerDampcavesimple.mat"; public static string matBazaarSeerFoggyswamp = "RoR2/Base/bazaar/matBazaarSeerFoggyswamp.mat"; public static string matBazaarSeerFrozenwall = "RoR2/Base/bazaar/matBazaarSeerFrozenwall.mat"; public static string matBazaarSeerGoldshores = "RoR2/Base/bazaar/matBazaarSeerGoldshores.mat"; public static string matBazaarSeerGolemplains = "RoR2/Base/bazaar/matBazaarSeerGolemplains.mat"; public static string matBazaarSeerGoolake = "RoR2/Base/bazaar/matBazaarSeerGoolake.mat"; public static string matBazaarSeerMoon = "RoR2/Base/bazaar/matBazaarSeerMoon.mat"; public static string matBazaarSeerRootjungle = "RoR2/Base/bazaar/matBazaarSeerRootjungle.mat"; public static string matBazaarSeerShipgraveyard = "RoR2/Base/bazaar/matBazaarSeerShipgraveyard.mat"; public static string matBazaarSeerSkymeadow = "RoR2/Base/bazaar/matBazaarSeerSkymeadow.mat"; public static string matBazaarSeerWispgraveyard = "RoR2/Base/bazaar/matBazaarSeerWispgraveyard.mat"; public static string matBazaarSeerPortalEdges = "RoR2/Base/bazaar/matBazaarSeerPortalEdges.mat"; public static string matSeerPortalDistortion = "RoR2/Base/bazaar/matSeerPortalDistortion.mat"; public static string matSeerPortalEffectEdge = "RoR2/Base/bazaar/matSeerPortalEffectEdge.mat"; public static string matBloodDecal = "RoR2/Base/blackbeach/matBloodDecal.mat"; public static string matMagmaWormGround = "RoR2/Base/blackbeach/matMagmaWormGround.mat"; public static string matMossDecal = "RoR2/Base/blackbeach/matMossDecal.mat"; public static string matMossDecalLinear = "RoR2/Base/blackbeach/matMossDecalLinear.mat"; public static string matRootDecalBlackbeach = "RoR2/Base/blackbeach/matRootDecalBlackbeach.mat"; public static string matVagrantMossDecal = "RoR2/Base/blackbeach/matVagrantMossDecal.mat"; public static string matBBGrass = "RoR2/Base/blackbeach/matBBGrass.mat"; public static string Billboard32 = "RoR2/Base/blackbeach/Billboard.mat"; public static string Branches023 = "RoR2/Base/blackbeach/Branches_0.mat"; public static string Branches0opt28 = "RoR2/Base/blackbeach/Branches_0_opt.mat"; public static string Fronds12 = "RoR2/Base/blackbeach/Fronds_1.mat"; public static string Fronds1opt = "RoR2/Base/blackbeach/Fronds_1_opt.mat"; public static string Branches19 = "RoR2/Base/blackbeach/Branches_1.mat"; public static string Leaves220 = "RoR2/Base/blackbeach/Leaves_2.mat"; public static string Fronds2 = "RoR2/Base/blackbeach/Fronds_2.mat"; public static string Leaves3 = "RoR2/Base/blackbeach/Leaves_3.mat"; public static string Leaves1 = "RoR2/Base/blackbeach/Leaves_1.mat"; public static string Leaves1opt = "RoR2/Base/blackbeach/Leaves_1_opt.mat"; public static string Fronds034 = "RoR2/Base/blackbeach/Fronds_0.mat"; public static string Fronds0opt18 = "RoR2/Base/blackbeach/Fronds_0_opt.mat"; public static string Fronds2opt = "RoR2/Base/blackbeach/Fronds_2_opt.mat"; public static string Leaves018 = "RoR2/Base/blackbeach/Leaves_0.mat"; public static string FacingLeaves1 = "RoR2/Base/blackbeach/FacingLeaves_1.mat"; public static string Leaves0opt = "RoR2/Base/blackbeach/Leaves_0_opt.mat"; public static string matBakeGreen = "RoR2/Base/blackbeach/matBakeGreen.mat"; public static string matBakeRed = "RoR2/Base/blackbeach/matBakeRed.mat"; public static string matBbBoulder = "RoR2/Base/blackbeach/matBbBoulder.mat"; public static string matBbBoulderopt = "RoR2/Base/blackbeach/matBbBoulder_opt.mat"; public static string matBBDistantTreeline = "RoR2/Base/blackbeach/matBBDistantTreeline.mat"; public static string matBBLowFog = "RoR2/Base/blackbeach/matBBLowFog.mat"; public static string matBBPebble = "RoR2/Base/blackbeach/matBBPebble.mat"; public static string matBBPineNeedle = "RoR2/Base/blackbeach/matBBPineNeedle.mat"; public static string matBbTerrain = "RoR2/Base/blackbeach/matBbTerrain.mat"; public static string matBbTerrainForBoulders = "RoR2/Base/blackbeach/matBbTerrainForBoulders.mat"; public static string matBbTerrainLight = "RoR2/Base/blackbeach/matBbTerrainLight.mat"; public static string matBBWater = "RoR2/Base/blackbeach/matBBWater.mat"; public static string matSand = "RoR2/Base/blackbeach/matSand.mat"; public static string matWaterFoam = "RoR2/Base/blackbeach/matWaterFoam.mat"; public static string matBbRuinBowl = "RoR2/Base/blackbeach/matBbRuinBowl.mat"; public static string matBbRuinGlowy1 = "RoR2/Base/blackbeach/matBbRuinGlowy 1.mat"; public static string matBbRuinGlowy = "RoR2/Base/blackbeach/matBbRuinGlowy.mat"; public static string matTemple = "RoR2/Base/blackbeach/matTemple.mat"; public static string matTimeCrystalAreaIndicator = "RoR2/Base/crystalworld/matTimeCrystalAreaIndicator.mat"; public static string matTimeCrystalSolid = "RoR2/Base/crystalworld/matTimeCrystalSolid.mat"; public static string matSkyboxCrystalworld = "RoR2/Base/crystalworld/matSkyboxCrystalworld.mat"; public static string matDCPortalCard = "RoR2/Base/dampcave/matDCPortalCard.mat"; public static string matEnvEmbers = "RoR2/Base/dampcave/matEnvEmbers.mat"; public static string matEnvLightShaft = "RoR2/Base/dampcave/matEnvLightShaft.mat"; public static string matEnvSteam = "RoR2/Base/dampcave/matEnvSteam.mat"; public static string Leaves021 = "RoR2/Base/dampcave/Leaves_0.mat"; public static string Leaves0opt15 = "RoR2/Base/dampcave/Leaves_0_opt.mat"; public static string Fronds0LOD0 = "RoR2/Base/dampcave/Fronds_0_LOD0.mat"; public static string Fronds0LOD0opt = "RoR2/Base/dampcave/Fronds_0_LOD0_opt.mat"; public static string Fronds0LOD1 = "RoR2/Base/dampcave/Fronds_0_LOD1.mat"; public static string matDCCoral = "RoR2/Base/dampcave/matDCCoral.mat"; public static string matDCCoralActive = "RoR2/Base/dampcave/matDCCoralActive.mat"; public static string matDCCrystal = "RoR2/Base/dampcave/matDCCrystal.mat"; public static string matDCCrystalPebble = "RoR2/Base/dampcave/matDCCrystalPebble.mat"; public static string matDCHeatvent1 = "RoR2/Base/dampcave/matDCHeatvent1.mat"; public static string matDCMagmaFlow = "RoR2/Base/dampcave/matDCMagmaFlow.mat"; public static string matDCStalagmite = "RoR2/Base/dampcave/matDCStalagmite.mat"; public static string matMetalSplatDecal = "RoR2/Base/dampcave/matMetalSplatDecal.mat"; public static string matDCSkybox = "RoR2/Base/dampcave/matDCSkybox.mat"; public static string matDCTerrainFloor = "RoR2/Base/dampcave/matDCTerrainFloor.mat"; public static string matDCTerrainGiantColumns = "RoR2/Base/dampcave/matDCTerrainGiantColumns.mat"; public static string matDCTerrainWalls = "RoR2/Base/dampcave/matDCTerrainWalls.mat"; public static string matDCChainsSmall = "RoR2/Base/dampcave/matDCChainsSmall.mat"; public static string matDCBoulder = "RoR2/Base/dampcavesimple/matDCBoulder.mat"; public static string matDCPebble = "RoR2/Base/dampcavesimple/matDCPebble.mat"; public static string matDCTerrainSmallColumn = "RoR2/Base/dampcavesimple/matDCTerrainSmallColumn.mat"; public static string matEclipseAtmosphere = "RoR2/Base/eclipseworld/matEclipseAtmosphere.mat"; public static string matEclipseMoon = "RoR2/Base/eclipseworld/matEclipseMoon.mat"; public static string matEclipseNebulaSphere = "RoR2/Base/eclipseworld/matEclipseNebulaSphere.mat"; public static string matEclipseSkybox = "RoR2/Base/eclipseworld/matEclipseSkybox.mat"; public static string matEclipseStarsIndividual = "RoR2/Base/eclipseworld/matEclipseStarsIndividual.mat"; public static string matEclipseStarsSpheres = "RoR2/Base/eclipseworld/matEclipseStarsSpheres.mat"; public static string matEnvEmbersEclipse = "RoR2/Base/eclipseworld/matEnvEmbersEclipse.mat"; public static string matFSCameraDustBig1 = "RoR2/Base/foggyswamp/matFSCameraDustBig 1.mat"; public static string matFSPipeCard = "RoR2/Base/foggyswamp/matFSPipeCard.mat"; public static string matFSPipeIllusion = "RoR2/Base/foggyswamp/matFSPipeIllusion.mat"; public static string matFSPortalCard = "RoR2/Base/foggyswamp/matFSPortalCard.mat"; public static string matFSPortalCardOneWay = "RoR2/Base/foggyswamp/matFSPortalCardOneWay.mat"; public static string Billboard33 = "RoR2/Base/foggyswamp/Billboard.mat"; public static string Branches012 = "RoR2/Base/foggyswamp/Branches_0.mat"; public static string Leaves011 = "RoR2/Base/foggyswamp/Leaves_0.mat"; public static string Leaves0opt5 = "RoR2/Base/foggyswamp/Leaves_0_opt.mat"; public static string Leaves15 = "RoR2/Base/foggyswamp/Leaves_1.mat"; public static string Branches126 = "RoR2/Base/foggyswamp/Branches_1.mat"; public static string Leaves29 = "RoR2/Base/foggyswamp/Leaves_2.mat"; public static string Fronds015 = "RoR2/Base/foggyswamp/Fronds_0.mat"; public static string Fronds0opt31 = "RoR2/Base/foggyswamp/Fronds_0_opt.mat"; public static string Branches0opt18 = "RoR2/Base/foggyswamp/Branches_0_opt.mat"; public static string Fronds128 = "RoR2/Base/foggyswamp/Fronds_1.mat"; public static string Fronds1opt23 = "RoR2/Base/foggyswamp/Fronds_1_opt.mat"; public static string Fronds221 = "RoR2/Base/foggyswamp/Fronds_2.mat"; public static string Fronds2opt17 = "RoR2/Base/foggyswamp/Fronds_2_opt.mat"; public static string matFSBoulderLightMoss = "RoR2/Base/foggyswamp/matFSBoulderLightMoss.mat"; public static string matFSPebble = "RoR2/Base/foggyswamp/matFSPebble.mat"; public static string matFSSwamp = "RoR2/Base/foggyswamp/matFSSwamp.mat"; public static string matFSTerrainFloor = "RoR2/Base/foggyswamp/matFSTerrainFloor.mat"; public static string matFSTerrainSkybox = "RoR2/Base/foggyswamp/matFSTerrainSkybox.mat"; public static string matFSTerrainWalls = "RoR2/Base/foggyswamp/matFSTerrainWalls.mat"; public static string matFSTreeTrunkGlow = "RoR2/Base/foggyswamp/matFSTreeTrunkGlow.mat"; public static string matFSTreeTrunkLightMoss = "RoR2/Base/foggyswamp/matFSTreeTrunkLightMoss.mat"; public static string matFSTreeTrunkMossy = "RoR2/Base/foggyswamp/matFSTreeTrunkMossy.mat"; public static string matFSTreeTrunkSkybox = "RoR2/Base/foggyswamp/matFSTreeTrunkSkybox.mat"; public static string matFSWater = "RoR2/Base/foggyswamp/matFSWater.mat"; public static string matHumanChainlink = "RoR2/Base/frozenwall/matHumanChainlink.mat"; public static string matHumanHangingTarp = "RoR2/Base/frozenwall/matHumanHangingTarp.mat"; public static string matHumanTarp1 = "RoR2/Base/frozenwall/matHumanTarp1.mat"; public static string matHumanTarp2Torn = "RoR2/Base/frozenwall/matHumanTarp2Torn.mat"; public static string matThinCable = "RoR2/Base/frozenwall/matThinCable.mat"; public static string matSkyboxFrozenwallNight = "RoR2/Base/frozenwall/matSkyboxFrozenwallNight.mat"; public static string Branches0LOD08 = "RoR2/Base/frozenwall/Branches_0_LOD0.mat"; public static string Branches0LOD136 = "RoR2/Base/frozenwall/Branches_0_LOD1.mat"; public static string Branches1LOD07 = "RoR2/Base/frozenwall/Branches_1_LOD0.mat"; public static string Branches1LOD1 = "RoR2/Base/frozenwall/Branches_1_LOD1.mat"; public static string Leaves2LOD04 = "RoR2/Base/frozenwall/Leaves_2_LOD0.mat"; public static string Leaves2LOD1 = "RoR2/Base/frozenwall/Leaves_2_LOD1.mat"; public static string Billboard17 = "RoR2/Base/frozenwall/Billboard.mat"; public static string Branches0LOD233 = "RoR2/Base/frozenwall/Branches_0_LOD2.mat"; public static string Branches1LOD2 = "RoR2/Base/frozenwall/Branches_1_LOD2.mat"; public static string Fronds2LOD0 = "RoR2/Base/frozenwall/Fronds_2_LOD0.mat"; public static string Fronds2LOD1 = "RoR2/Base/frozenwall/Fronds_2_LOD1.mat"; public static string Fronds2LOD2 = "RoR2/Base/frozenwall/Fronds_2_LOD2.mat"; public static string Fronds3LOD0 = "RoR2/Base/frozenwall/Fronds_3_LOD0.mat"; public static string Fronds3LOD1 = "RoR2/Base/frozenwall/Fronds_3_LOD1.mat"; public static string matFWDistantCloud1 = "RoR2/Base/frozenwall/matFWDistantCloud1.mat"; public static string matFWDistantCloud2 = "RoR2/Base/frozenwall/matFWDistantCloud2.mat"; public static string matFWDistantCloud3 = "RoR2/Base/frozenwall/matFWDistantCloud3.mat"; public static string matFWDistantCloud4 = "RoR2/Base/frozenwall/matFWDistantCloud4.mat"; public static string matFWGlacierChunk = "RoR2/Base/frozenwall/matFWGlacierChunk.mat"; public static string matFWIcicles = "RoR2/Base/frozenwall/matFWIcicles.mat"; public static string matFWIciclesopt = "RoR2/Base/frozenwall/matFWIcicles_opt.mat"; public static string matFWSimpleGrass = "RoR2/Base/frozenwall/matFWSimpleGrass.mat"; public static string matFWSnow = "RoR2/Base/frozenwall/matFWSnow.mat"; public static string matFWSnowyIcePillars = "RoR2/Base/frozenwall/matFWSnowyIcePillars.mat"; public static string matFwTerrainCliffs = "RoR2/Base/frozenwall/matFwTerrainCliffs.mat"; public static string matFwTerrainDistant = "RoR2/Base/frozenwall/matFwTerrainDistant.mat"; public static string matFwTerrainFloor = "RoR2/Base/frozenwall/matFwTerrainFloor.mat"; public static string matFWWater = "RoR2/Base/frozenwall/matFWWater.mat"; public static string matFWWaterLow = "RoR2/Base/frozenwall/matFWWaterLow.mat"; public static string matSnowGusts = "RoR2/Base/frozenwall/matSnowGusts.mat"; public static string matGoldBeaconActivate = "RoR2/Base/goldshores/matGoldBeaconActivate.mat"; public static string matSkyboxGoldshores = "RoR2/Base/goldshores/matSkyboxGoldshores.mat"; public static string matCoinpileDecal = "RoR2/Base/goldshores/matCoinpileDecal.mat"; public static string matGoldshoresGold = "RoR2/Base/goldshores/matGoldshoresGold.mat"; public static string matGoldshoresGoldOff = "RoR2/Base/goldshores/matGoldshoresGoldOff.mat"; public static string matGoldshoresGoldOn = "RoR2/Base/goldshores/matGoldshoresGoldOn.mat"; public static string matGoldshoresStalagmite = "RoR2/Base/goldshores/matGoldshoresStalagmite.mat"; public static string matGoldshoreStars = "RoR2/Base/goldshores/matGoldshoreStars.mat"; public static string matGoldshoresTerrain = "RoR2/Base/goldshores/matGoldshoresTerrain.mat"; public static string matGSWater = "RoR2/Base/goldshores/matGSWater.mat"; public static string matGSWateropt = "RoR2/Base/goldshores/matGSWater_opt.mat"; public static string matGSFlag = "RoR2/Base/goldshores/matGSFlag.mat"; public static string matGSTotemActive = "RoR2/Base/goldshores/matGSTotemActive.mat"; public static string matShrineChanceSubmergedGold = "RoR2/Base/goldshores/matShrineChanceSubmergedGold.mat"; public static string Billboard36 = "RoR2/Base/golemplains/Billboard.mat"; public static string Branches04 = "RoR2/Base/golemplains/Branches_0.mat"; public static string Branches0opt16 = "RoR2/Base/golemplains/Branches_0_opt.mat"; public static string Fronds16 = "RoR2/Base/golemplains/Fronds_1.mat"; public static string Fronds1opt23_Alt = "RoR2/Base/golemplains/Fronds_1_opt.mat"; public static string Leaves214 = "RoR2/Base/golemplains/Leaves_2.mat"; public static string Leaves2opt4 = "RoR2/Base/golemplains/Leaves_2_opt.mat"; public static string FacingLeaves0 = "RoR2/Base/golemplains/FacingLeaves_0.mat"; public static string FacingLeaves118 = "RoR2/Base/golemplains/FacingLeaves_1.mat"; public static string Leaves014 = "RoR2/Base/golemplains/Leaves_0.mat"; public static string matSkyboxGolemplainsFoggy = "RoR2/Base/golemplains/matSkyboxGolemplainsFoggy.mat"; public static string matGPBoulderHeavyMoss = "RoR2/Base/golemplains/matGPBoulderHeavyMoss.mat"; public static string matGPBoulderMossyProjected = "RoR2/Base/golemplains/matGPBoulderMossyProjected.mat"; public static string matGPTerrain = "RoR2/Base/golemplains/matGPTerrain.mat"; public static string matGPTerrainAlt = "RoR2/Base/golemplains/matGPTerrainAlt.mat"; public static string matGPTerrainBlender = "RoR2/Base/golemplains/matGPTerrainBlender.mat"; public static string matGPTerrainDistant = "RoR2/Base/golemplains/matGPTerrainDistant.mat"; public static string matGPTerrainHeavyMoss = "RoR2/Base/golemplains/matGPTerrainHeavyMoss.mat"; public static string matGPWater = "RoR2/Base/golemplains/matGPWater.mat"; public static string matGPWateropt = "RoR2/Base/golemplains/matGPWater_opt.mat"; public static string ReferenceMap = "RoR2/Base/golemplains2/ReferenceMap.mat"; public static string Billboard22 = "RoR2/Base/goolake/Billboard.mat"; public static string Branches012_Alt = "RoR2/Base/goolake/Branches_0.mat"; public static string Fronds129 = "RoR2/Base/goolake/Fronds_1.mat"; public static string Fronds1opt15 = "RoR2/Base/goolake/Fronds_1_opt.mat"; public static string Fronds03 = "RoR2/Base/goolake/Fronds_0.mat"; public static string Fronds0opt7 = "RoR2/Base/goolake/Fronds_0_opt.mat"; public static string Leaves023 = "RoR2/Base/goolake/Leaves_0.mat"; public static string Leaves0opt29 = "RoR2/Base/goolake/Leaves_0_opt.mat"; public static string matSkyboxGoolake = "RoR2/Base/goolake/matSkyboxGoolake.mat"; public static string matGiantDuststorm = "RoR2/Base/goolake/matGiantDuststorm.mat"; public static string matGlSimpleGrass = "RoR2/Base/goolake/matGlSimpleGrass.mat"; public static string matGoolake = "RoR2/Base/goolake/matGoolake.mat"; public static string matGoolakeRef = "RoR2/Base/goolake/matGoolakeRef.mat"; public static string matGoolakeRocks = "RoR2/Base/goolake/matGoolakeRocks.mat"; public static string matGoolakeTerrain = "RoR2/Base/goolake/matGoolakeTerrain.mat"; public static string matGooWaterfall = "RoR2/Base/goolake/matGooWaterfall.mat"; public static string matEelSkeleton1 = "RoR2/Base/goolake/matEelSkeleton 1.mat"; public static string matEelSkeleton = "RoR2/Base/goolake/matEelSkeleton.mat"; public static string matEelSkeletonopt = "RoR2/Base/goolake/matEelSkeleton_opt.mat"; public static string matGlFlag = "RoR2/Base/goolake/matGlFlag.mat"; public static string matGlFlagpole = "RoR2/Base/goolake/matGlFlagpole.mat"; public static string matGLRibbon = "RoR2/Base/goolake/matGLRibbon.mat"; public static string matGooLakeGrate = "RoR2/Base/goolake/matGooLakeGrate.mat"; public static string matGoolakeStoneStructs = "RoR2/Base/goolake/matGoolakeStoneStructs.mat"; public static string matGoolakeStoneTrim = "RoR2/Base/goolake/matGoolakeStoneTrim.mat"; public static string matGoolakeStoneTrimLightSand = "RoR2/Base/goolake/matGoolakeStoneTrimLightSand.mat"; public static string matGoolakeStoneTrimSandy = "RoR2/Base/goolake/matGoolakeStoneTrimSandy.mat"; public static string matColonyShipCabinFresnel = "RoR2/Base/intro/matColonyShipCabinFresnel.mat"; public static string matColonyShipCabinFresnelStrong = "RoR2/Base/intro/matColonyShipCabinFresnelStrong.mat"; public static string matColonyShipCargoInterior = "RoR2/Base/intro/matColonyShipCargoInterior.mat"; public static string matColonyShipExhaust = "RoR2/Base/intro/matColonyShipExhaust.mat"; public static string matColonyShipInterior = "RoR2/Base/intro/matColonyShipInterior.mat"; public static string matColonyShipPoint = "RoR2/Base/intro/matColonyShipPoint.mat"; public static string matColonyShipStandard = "RoR2/Base/intro/matColonyShipStandard.mat"; public static string matIntroMoon = "RoR2/Base/intro/matIntroMoon.mat"; public static string matIntroPlanet = "RoR2/Base/intro/matIntroPlanet.mat"; public static string matIntroPlanetBackdrop = "RoR2/Base/intro/matIntroPlanetBackdrop.mat"; public static string matIntroPlanetClouds = "RoR2/Base/intro/matIntroPlanetClouds.mat"; public static string matIntroPlanetFresnelAtmosphere = "RoR2/Base/intro/matIntroPlanetFresnelAtmosphere.mat"; public static string matIntroSkybox = "RoR2/Base/intro/matIntroSkybox.mat"; public static string matIntroSkyboxStars = "RoR2/Base/intro/matIntroSkyboxStars.mat"; public static string matLimboDioramaBase = "RoR2/Base/limbo/matLimboDioramaBase.mat"; public static string matLimboFloor = "RoR2/Base/limbo/matLimboFloor.mat"; public static string matLimboTotem = "RoR2/Base/limbo/matLimboTotem.mat"; public static string matHANDDeactivated = "RoR2/Base/lobby/matHANDDeactivated.mat"; public static string matLobbyFloor = "RoR2/Base/lobby/matLobbyFloor.mat"; public static string matDeadmando = "RoR2/Base/moon/matDeadmando.mat"; public static string matBrotherPreBossSphere1 = "RoR2/Base/moon/matBrotherPreBossSphere 1.mat"; public static string matMoonAbyssFogDeep = "RoR2/Base/moon/matMoonAbyssFogDeep.mat"; public static string matMoonAbyssFogLight = "RoR2/Base/moon/matMoonAbyssFogLight.mat"; public static string matMoonAbyssFogSpark = "RoR2/Base/moon/matMoonAbyssFogSpark.mat"; public static string matMoonClouds1 = "RoR2/Base/moon/matMoonClouds1.mat"; public static string matMoonEmber = "RoR2/Base/moon/matMoonEmber.mat"; public static string matMoonLockoutZone = "RoR2/Base/moon/matMoonLockoutZone.mat"; public static string matMoonPortalCardLight = "RoR2/Base/moon/matMoonPortalCardLight.mat"; public static string matMoonPortalDark = "RoR2/Base/moon/matMoonPortalDark.mat"; public static string matMoonRain = "RoR2/Base/moon/matMoonRain.mat"; public static string matMoonSmallGlowy = "RoR2/Base/moon/matMoonSmallGlowy.mat"; public static string matMoonStarBright = "RoR2/Base/moon/matMoonStarBright.mat"; public static string matMoonStarCore = "RoR2/Base/moon/matMoonStarCore.mat"; public static string matMoonWater = "RoR2/Base/moon/matMoonWater.mat"; public static string matMoonWaterArena = "RoR2/Base/moon/matMoonWaterArena.mat"; public static string matMoonWaterBridge = "RoR2/Base/moon/matMoonWaterBridge.mat"; public static string matMoonWaterTemple = "RoR2/Base/moon/matMoonWaterTemple.mat"; public static string matMoonArenaWall = "RoR2/Base/moon/matMoonArenaWall.mat"; public static string matGreenhousePots = "RoR2/Base/moon/matGreenhousePots.mat"; public static string matMoonWallGodraySide = "RoR2/Base/moon/matMoonWallGodraySide.mat"; public static string matQuarryEntry = "RoR2/Base/moon/matQuarryEntry.mat"; public static string matQuarryFogPortal = "RoR2/Base/moon/matQuarryFogPortal.mat"; public static string matQuarryLowFog = "RoR2/Base/moon/matQuarryLowFog.mat"; public static string matDiscPlatform = "RoR2/Base/moon/matDiscPlatform.mat"; public static string matLunarRotatingFlame = "RoR2/Base/moon/matLunarRotatingFlame.mat"; public static string matLunarForge = "RoR2/Base/moon/matLunarForge.mat"; public static string matLunarForgeCore = "RoR2/Base/moon/matLunarForgeCore.mat"; public static string GhostFacingLeaves1LOD0 = "RoR2/Base/moon/GhostFacingLeaves_1_LOD0.mat"; public static string GhostFacingLeaves1LOD0opt = "RoR2/Base/moon/GhostFacingLeaves_1_LOD0_opt.mat"; public static string GhostLeaves0LOD0 = "RoR2/Base/moon/GhostLeaves_0_LOD0.mat"; public static string FacingLeaves1LOD032 = "RoR2/Base/moon/FacingLeaves_1_LOD0.mat"; public static string FacingLeaves1LOD0opt = "RoR2/Base/moon/FacingLeaves_1_LOD0_opt.mat"; public static string Leaves0LOD024 = "RoR2/Base/moon/Leaves_0_LOD0.mat"; public static string texMoonGrass1Diffuse = "RoR2/Base/moon/texMoonGrass1Diffuse.mat"; public static string Branches0LOD021 = "RoR2/Base/moon/Branches_0_LOD0.mat"; public static string Branches0LOD119 = "RoR2/Base/moon/Branches_0_LOD1.mat"; public static string Branches0LOD225 = "RoR2/Base/moon/Branches_0_LOD2.mat"; public static string matGhostPlant = "RoR2/Base/moon/matGhostPlant.mat"; public static string matGhostPlantBrighter = "RoR2/Base/moon/matGhostPlantBrighter.mat"; public static string matGhostPlantSpecial = "RoR2/Base/moon/matGhostPlantSpecial.mat"; public static string matMoonBaseStand = "RoR2/Base/moon/matMoonBaseStand.mat"; public static string matMoonBaseStandTriplanar = "RoR2/Base/moon/matMoonBaseStandTriplanar.mat"; public static string matMoonBoulder = "RoR2/Base/moon/matMoonBoulder.mat"; public static string matMoonBoulderEarthy = "RoR2/Base/moon/matMoonBoulderEarthy.mat"; public static string matMoonDefault = "RoR2/Base/moon/matMoonDefault.mat"; public static string matMoonGiantSkyboxChunks = "RoR2/Base/moon/matMoonGiantSkyboxChunks.mat"; public static string matMoonPebble = "RoR2/Base/moon/matMoonPebble.mat"; public static string matMoonPlanetAtmosphere = "RoR2/Base/moon/matMoonPlanetAtmosphere.mat"; public static string matMoonSilverWire = "RoR2/Base/moon/matMoonSilverWire.mat"; public static string matMoonSkyboxChunks = "RoR2/Base/moon/matMoonSkyboxChunks.mat"; public static string matMoonSkyboxPlanet = "RoR2/Base/moon/matMoonSkyboxPlanet.mat"; public static string matMoonStibs = "RoR2/Base/moon/matMoonStibs.mat"; public static string matMoonTerrain = "RoR2/Base/moon/matMoonTerrain.mat"; public static string matMoonTerrainDistant = "RoR2/Base/moon/matMoonTerrainDistant.mat"; public static string matMoonTerrainDistantAsteroids = "RoR2/Base/moon/matMoonTerrainDistantAsteroids.mat"; public static string matMoonTerrainDistantAsteroidsFurther = "RoR2/Base/moon/matMoonTerrainDistantAsteroidsFurther.mat"; public static string matMoonTotem1 = "RoR2/Base/moon/matMoonTotem1.mat"; public static string matMoonTerrainDebugQ1 = "RoR2/Base/moon/matMoonTerrainDebugQ1.mat"; public static string matMoonTerrainDebugQ2 = "RoR2/Base/moon/matMoonTerrainDebugQ2.mat"; public static string matMoonTerrainDebugQ3 = "RoR2/Base/moon/matMoonTerrainDebugQ3.mat"; public static string matMoonTerrainDebugQ4 = "RoR2/Base/moon/matMoonTerrainDebugQ4.mat"; public static string matMoonTerrainDebugStatic = "RoR2/Base/moon/matMoonTerrainDebugStatic.mat"; public static string matMoonTerrainGrassy = "RoR2/Base/moon/matMoonTerrainGrassy.mat"; public static string matMoonBridge = "RoR2/Base/moon/matMoonBridge.mat"; public static string matMoonRuinsDirty = "RoR2/Base/moon/matMoonRuinsDirty.mat"; public static string matMoonRuinsDirtyArena = "RoR2/Base/moon/matMoonRuinsDirtyArena.mat"; public static string matMoonRuinsDirtyTop = "RoR2/Base/moon/matMoonRuinsDirtyTop.mat"; public static string matSkyboxMoon = "RoR2/Base/moon2/matSkyboxMoon.mat"; public static string matMoonbatteryGlassDistortion = "RoR2/Base/moon2/matMoonbatteryGlassDistortion.mat"; public static string matMoonbatteryGlassOverlay = "RoR2/Base/moon2/matMoonbatteryGlassOverlay.mat"; public static string matMoonbatteryRangeIndicator = "RoR2/Base/moon2/matMoonbatteryRangeIndicator.mat"; public static string matMoonBatteryShockwaveRing = "RoR2/Base/moon2/matMoonBatteryShockwaveRing.mat"; public static string matBloodSiphon = "RoR2/Base/moon2/matBloodSiphon.mat"; public static string matMoonbatteryBlood = "RoR2/Base/moon2/matMoonbatteryBlood.mat"; public static string matMoonbatteryRangeIndicatorBlood = "RoR2/Base/moon2/matMoonbatteryRangeIndicatorBlood.mat"; public static string matMoonBatteryTrailBloodSiphon = "RoR2/Base/moon2/matMoonBatteryTrailBloodSiphon.mat"; public static string matMoonbatteryCrippleRadius = "RoR2/Base/moon2/matMoonbatteryCrippleRadius.mat"; public static string matMoonbatteryDesign = "RoR2/Base/moon2/matMoonbatteryDesign.mat"; public static string matMoonbatteryMass = "RoR2/Base/moon2/matMoonbatteryMass.mat"; public static string matMoonElevatorBeam = "RoR2/Base/moon2/matMoonElevatorBeam.mat"; public static string matMoonElevatorPillar = "RoR2/Base/moon2/matMoonElevatorPillar.mat"; public static string matMoonElevatorPillarSubtle = "RoR2/Base/moon2/matMoonElevatorPillarSubtle.mat"; public static string matRescueship = "RoR2/Base/moon2/matRescueship.mat"; public static string matRescueshipAreaIndicator = "RoR2/Base/moon2/matRescueshipAreaIndicator.mat"; public static string matRescueshipAreaIndicatorRing = "RoR2/Base/moon2/matRescueshipAreaIndicatorRing.mat"; public static string matMSObeliskHeart = "RoR2/Base/mysteryspace/matMSObeliskHeart.mat"; public static string matSkyboxMysterySpace = "RoR2/Base/mysteryspace/matSkyboxMysterySpace.mat"; public static string matSuspendedInTime = "RoR2/Base/mysteryspace/matSuspendedInTime.mat"; public static string matMSCrystal = "RoR2/Base/mysteryspace/matMSCrystal.mat"; public static string matMSCrystalPlatform = "RoR2/Base/mysteryspace/matMSCrystalPlatform.mat"; public static string matMSEgg1 = "RoR2/Base/mysteryspace/matMSEgg1.mat"; public static string matMSEgg2 = "RoR2/Base/mysteryspace/matMSEgg2.mat"; public static string matMSEgg3 = "RoR2/Base/mysteryspace/matMSEgg3.mat"; public static string matMSStars = "RoR2/Base/mysteryspace/matMSStars.mat"; public static string matMSStarsLink = "RoR2/Base/mysteryspace/matMSStarsLink.mat"; public static string matMSTerrain = "RoR2/Base/mysteryspace/matMSTerrain.mat"; public static string matMSObelisk = "RoR2/Base/mysteryspace/matMSObelisk.mat"; public static string matMSObeliskFresh = "RoR2/Base/mysteryspace/matMSObeliskFresh.mat"; public static string matMSObeliskLightning = "RoR2/Base/mysteryspace/matMSObeliskLightning.mat"; public static string matOutroMoon = "RoR2/Base/outro/matOutroMoon.mat"; public static string matOutroMoonCore = "RoR2/Base/outro/matOutroMoonCore.mat"; public static string matOutroMoonFresnelAtmosphere = "RoR2/Base/outro/matOutroMoonFresnelAtmosphere.mat"; public static string matOutroMoonLaser = "RoR2/Base/outro/matOutroMoonLaser.mat"; public static string matOutroMoonPinchDistortion = "RoR2/Base/outro/matOutroMoonPinchDistortion.mat"; public static string matOutroMoonPrint = "RoR2/Base/outro/matOutroMoonPrint.mat"; public static string matOutroMoonShockwave = "RoR2/Base/outro/matOutroMoonShockwave.mat"; public static string matOutroMysterySkybox = "RoR2/Base/outro/matOutroMysterySkybox.mat"; public static string matOutroTrain = "RoR2/Base/outro/matOutroTrain.mat"; public static string Material2LOD01 = "RoR2/Base/rootjungle/Material_2_LOD0 1.mat"; public static string Material2LOD0 = "RoR2/Base/rootjungle/Material_2_LOD0.mat"; public static string Material2LOD1 = "RoR2/Base/rootjungle/Material_2_LOD1.mat"; public static string RJDistantTreeFoliageLOD0 = "RoR2/Base/rootjungle/RJDistantTreeFoliage_LOD0.mat"; public static string RJDistantTreeFoliageLOD1 = "RoR2/Base/rootjungle/RJDistantTreeFoliage_LOD1.mat"; public static string RJDistantTreeFoliageLOD2 = "RoR2/Base/rootjungle/RJDistantTreeFoliage_LOD2.mat"; public static string RJDistantTreeFoliageoptLOD0 = "RoR2/Base/rootjungle/RJDistantTreeFoliage_opt_LOD0.mat"; public static string RJfernLOD0 = "RoR2/Base/rootjungle/RJfern_LOD0.mat"; public static string RJfernLOD0opt = "RoR2/Base/rootjungle/RJfern_LOD0_opt.mat"; public static string spmRJgrass1LOD0 = "RoR2/Base/rootjungle/spmRJgrass1_LOD0.mat"; public static string spmRJgrass1LOD0opt = "RoR2/Base/rootjungle/spmRJgrass1_LOD0_opt.mat"; public static string spmRJgrass2LOD0 = "RoR2/Base/rootjungle/spmRJgrass2_LOD0.mat"; public static string spmRJgrass2LOD0opt = "RoR2/Base/rootjungle/spmRJgrass2_LOD0_opt.mat"; public static string RJHangingMossLOD0 = "RoR2/Base/rootjungle/RJHangingMoss_LOD0.mat"; public static string RJHangingMossLOD0opt = "RoR2/Base/rootjungle/RJHangingMoss_LOD0_opt.mat"; public static string RJMossFoliageLOD0 = "RoR2/Base/rootjungle/RJMossFoliage_LOD0.mat"; public static string RJMossFoliageLOD0opt = "RoR2/Base/rootjungle/RJMossFoliage_LOD0_opt.mat"; public static string RJpinkshroomLOD0 = "RoR2/Base/rootjungle/RJpinkshroom_LOD0.mat"; public static string RJpinkshroomLOD0opt = "RoR2/Base/rootjungle/RJpinkshroom_LOD0_opt.mat"; public static string RJShroomFoliageLOD0 = "RoR2/Base/rootjungle/RJShroomFoliage_LOD0.mat"; public static string RJShroomFoliageLOD0opt = "RoR2/Base/rootjungle/RJShroomFoliage_LOD0_opt.mat"; public static string RJTowerTreeFoliageLOD0 = "RoR2/Base/rootjungle/RJTowerTreeFoliage_LOD0.mat"; public static string RJTowerTreeFoliageLOD1 = "RoR2/Base/rootjungle/RJTowerTreeFoliage_LOD1.mat"; public static string RJTowerTreeFoliageLOD2 = "RoR2/Base/rootjungle/RJTowerTreeFoliage_LOD2.mat"; public static string RJTowerTreeFoliageoptLOD0 = "RoR2/Base/rootjungle/RJTowerTreeFoliage_opt_LOD0.mat"; public static string RJTowerTreeFoliageoptLOD1 = "RoR2/Base/rootjungle/RJTowerTreeFoliage_opt_LOD1.mat"; public static string RJTreeBigFoliageLOD01 = "RoR2/Base/rootjungle/RJTreeBigFoliage_LOD0 1.mat"; public static string RJTreeBigFoliageLOD0 = "RoR2/Base/rootjungle/RJTreeBigFoliage_LOD0.mat"; public static string RJTreeBigFoliageLOD0opt = "RoR2/Base/rootjungle/RJTreeBigFoliage_LOD0_opt.mat"; public static string matRootJungleSpore = "RoR2/Base/rootjungle/matRootJungleSpore.mat"; public static string matRootJungleSporeopt = "RoR2/Base/rootjungle/matRootJungleSpore_opt.mat"; public static string matCliff1VeryMossy1 = "RoR2/Base/rootjungle/matCliff1VeryMossy 1.mat"; public static string matRJFogFloor = "RoR2/Base/rootjungle/matRJFogFloor.mat"; public static string matRJFogFlooropt = "RoR2/Base/rootjungle/matRJFogFloor_opt.mat"; public static string matRJLeafBlue = "RoR2/Base/rootjungle/matRJLeaf_Blue.mat"; public static string matRJLeafBlueopt = "RoR2/Base/rootjungle/matRJLeaf_Blue_opt.mat"; public static string matRJLeafGreen = "RoR2/Base/rootjungle/matRJLeaf_Green.mat"; public static string matRJLeafGreenopt = "RoR2/Base/rootjungle/matRJLeaf_Green_opt.mat"; public static string matRJMossPatch1 = "RoR2/Base/rootjungle/matRJMossPatch1.mat"; public static string matRJMossPatch2 = "RoR2/Base/rootjungle/matRJMossPatch2.mat"; public static string matRJMossPatchLarge = "RoR2/Base/rootjungle/matRJMossPatchLarge.mat"; public static string matRJMossPatchLargeopt = "RoR2/Base/rootjungle/matRJMossPatchLarge_opt.mat"; public static string matRJMossPatchTriplanar = "RoR2/Base/rootjungle/matRJMossPatchTriplanar.mat"; public static string matRJPebble = "RoR2/Base/rootjungle/matRJPebble.mat"; public static string matRJRock = "RoR2/Base/rootjungle/matRJRock.mat"; public static string matRJSandstone = "RoR2/Base/rootjungle/matRJSandstone.mat"; public static string matRJSandstoneopt = "RoR2/Base/rootjungle/matRJSandstone_opt.mat"; public static string matRJShroomBig = "RoR2/Base/rootjungle/matRJShroomBig.mat"; public static string matRJShroomBigopt = "RoR2/Base/rootjungle/matRJShroomBig_opt.mat"; public static string matRJShroomBounce = "RoR2/Base/rootjungle/matRJShroomBounce.mat"; public static string matRJShroomBounceopt = "RoR2/Base/rootjungle/matRJShroomBounce_opt.mat"; public static string matRJShroomShelf = "RoR2/Base/rootjungle/matRJShroomShelf.mat"; public static string matRJShroomShelfopt = "RoR2/Base/rootjungle/matRJShroomShelf_opt.mat"; public static string matRJShroomSmall = "RoR2/Base/rootjungle/matRJShroomSmall.mat"; public static string matRJShroomSmallopt = "RoR2/Base/rootjungle/matRJShroomSmall_opt.mat"; public static string matRJTemple = "RoR2/Base/rootjungle/matRJTemple.mat"; public static string matRJTerrain = "RoR2/Base/rootjungle/matRJTerrain.mat"; public static string matRJTerrainopt = "RoR2/Base/rootjungle/matRJTerrain_opt.mat"; public static string matRJTerrain2 = "RoR2/Base/rootjungle/matRJTerrain2.mat"; public static string matRJTerrain2opt = "RoR2/Base/rootjungle/matRJTerrain2_opt.mat"; public static string matRJTree = "RoR2/Base/rootjungle/matRJTree.mat"; public static string matRJTreeopt = "RoR2/Base/rootjungle/matRJTree_opt.mat"; public static string matRJTreeLOD = "RoR2/Base/rootjungle/matRJTreeLOD.mat"; public static string matRJTreeLODopt = "RoR2/Base/rootjungle/matRJTreeLOD_opt.mat"; public static string matRJTriangle = "RoR2/Base/rootjungle/matRJTriangle.mat"; public static string matRootjunglePlaceholder = "RoR2/Base/rootjungle/matRootjunglePlaceholder.mat"; public static string spmRJgrasstestBillboardLOD1 = "RoR2/Base/rootjungle/spmRJgrasstest_Billboard_LOD1.mat"; public static string spmRJgrasstestLOD0 = "RoR2/Base/rootjungle/spmRJgrasstest_LOD0.mat"; public static string skyboxJungle = "RoR2/Base/rootjungle/skyboxJungle.mat"; public static string matAlien1DefenseMatrix = "RoR2/Base/shipgraveyard/FX/matAlien1DefenseMatrix.mat"; public static string matSGCameraDustBig = "RoR2/Base/shipgraveyard/FX/matSGCameraDustBig.mat"; public static string matSGPortalCard = "RoR2/Base/shipgraveyard/FX/matSGPortalCard.mat"; public static string BeaconMat = "RoR2/Base/shipgraveyard/BeaconMat.mat"; public static string matVultureEgg = "RoR2/Base/shipgraveyard/matVultureEgg.mat"; public static string ShipMat = "RoR2/Base/shipgraveyard/ShipMat.mat"; public static string ThrusterMat = "RoR2/Base/shipgraveyard/ThrusterMat.mat"; public static string WireMat = "RoR2/Base/shipgraveyard/WireMat.mat"; public static string FacingLeaves1LOD01 = "RoR2/Base/shipgraveyard/FacingLeaves_1_LOD0.mat"; public static string Leaves0LOD029 = "RoR2/Base/shipgraveyard/Leaves_0_LOD0.mat"; public static string Fronds0LOD020 = "RoR2/Base/shipgraveyard/Fronds_0_LOD0.mat"; public static string Meshes0LOD0 = "RoR2/Base/shipgraveyard/Meshes_0_LOD0.mat"; public static string matSGCave = "RoR2/Base/shipgraveyard/matSGCave.mat"; public static string matSGCaveStalactite = "RoR2/Base/shipgraveyard/matSGCaveStalactite.mat"; public static string matSGCaveStalagmite = "RoR2/Base/shipgraveyard/matSGCaveStalagmite.mat"; public static string matSGRock = "RoR2/Base/shipgraveyard/matSGRock.mat"; public static string matSGRockopt = "RoR2/Base/shipgraveyard/matSGRock_opt.mat"; public static string matSGTerrain = "RoR2/Base/shipgraveyard/matSGTerrain.mat"; public static string matSGTerrainCompositeTest = "RoR2/Base/shipgraveyard/matSGTerrainCompositeTest.mat"; public static string matSGTerrainSpikes = "RoR2/Base/shipgraveyard/matSGTerrainSpikes.mat"; public static string BillboardDuo = "RoR2/Base/skymeadow/Billboard, Duo.mat"; public static string Billboard12 = "RoR2/Base/skymeadow/Billboard.mat"; public static string Branches0LOD025 = "RoR2/Base/skymeadow/Branches_0_LOD0.mat"; public static string Fronds1LOD021 = "RoR2/Base/skymeadow/Fronds_1_LOD0.mat"; public static string FacingLeaves1LOD030 = "RoR2/Base/skymeadow/FacingLeaves_1_LOD0.mat"; public static string Leaves0LOD01 = "RoR2/Base/skymeadow/Leaves_0_LOD0.mat"; public static string Leaves0LOD0opt = "RoR2/Base/skymeadow/Leaves_0_LOD0_opt.mat"; public static string matPowerCoil = "RoR2/Base/skymeadow/matPowerCoil.mat"; public static string matChest1Used = "RoR2/Base/skymeadow/matChest1Used.mat"; public static string matRiser = "RoR2/Base/skymeadow/matRiser.mat"; public static string matSMCameraDustBig = "RoR2/Base/skymeadow/matSMCameraDustBig.mat"; public static string matSMCameraDustBigopt = "RoR2/Base/skymeadow/matSMCameraDustBig_opt.mat"; public static string matSMCloud1 = "RoR2/Base/skymeadow/matSMCloud1.mat"; public static string matSMCloud2 = "RoR2/Base/skymeadow/matSMCloud2.mat"; public static string matSMCloud3 = "RoR2/Base/skymeadow/matSMCloud3.mat"; public static string matSMCloud4 = "RoR2/Base/skymeadow/matSMCloud4.mat"; public static string matSMFloor = "RoR2/Base/skymeadow/matSMFloor.mat"; public static string matSMFlowerBulb = "RoR2/Base/skymeadow/matSMFlowerBulb.mat"; public static string matSMFlowerStem = "RoR2/Base/skymeadow/matSMFlowerStem.mat"; public static string matSMFogFloor = "RoR2/Base/skymeadow/matSMFogFloor.mat"; public static string matSMGravityTunnel = "RoR2/Base/skymeadow/matSMGravityTunnel.mat"; public static string matSMPebble = "RoR2/Base/skymeadow/matSMPebble.mat"; public static string matSMRock = "RoR2/Base/skymeadow/matSMRock.mat"; public static string matSMRockBridge = "RoR2/Base/skymeadow/matSMRockBridge.mat"; public static string matSMSkybox = "RoR2/Base/skymeadow/matSMSkybox.mat"; public static string matSMSmallFlower = "RoR2/Base/skymeadow/matSMSmallFlower.mat"; public static string matSMSmallFlowerBranches = "RoR2/Base/skymeadow/matSMSmallFlowerBranches.mat"; public static string matSMSmallFlowerBulb = "RoR2/Base/skymeadow/matSMSmallFlowerBulb.mat"; public static string matSMSpikeBridge = "RoR2/Base/skymeadow/matSMSpikeBridge.mat"; public static string matSMTerrain = "RoR2/Base/skymeadow/matSMTerrain.mat"; public static string matSMTerrainDistant = "RoR2/Base/skymeadow/matSMTerrainDistant.mat"; public static string matSMVine = "RoR2/Base/skymeadow/matSMVine.mat"; public static string matSMMoonAtmosphere = "RoR2/Base/skymeadow/matSMMoonAtmosphere.mat"; public static string matSMMoonChunks = "RoR2/Base/skymeadow/matSMMoonChunks.mat"; public static string matSMMoonClouds1 = "RoR2/Base/skymeadow/matSMMoonClouds1.mat"; public static string matSMMoonClouds2 = "RoR2/Base/skymeadow/matSMMoonClouds2.mat"; public static string matSMMoonClouds2Dark = "RoR2/Base/skymeadow/matSMMoonClouds2Dark.mat"; public static string matSMMoonCloudsAllAround = "RoR2/Base/skymeadow/matSMMoonCloudsAllAround.mat"; public static string matSMMoonFresnel = "RoR2/Base/skymeadow/matSMMoonFresnel.mat"; public static string matSMSkyboxMoon = "RoR2/Base/skymeadow/matSMSkyboxMoon.mat"; public static string matOmniHitsparkRock = "RoR2/Base/skymeadow/matOmniHitsparkRock.mat"; public static string matOmniRingRock = "RoR2/Base/skymeadow/matOmniRingRock.mat"; public static string matCable = "RoR2/Base/title/matCable.mat"; public static string matSpacecabinBlanket = "RoR2/Base/title/matSpacecabinBlanket.mat"; public static string matSpacecabinFloor = "RoR2/Base/title/matSpacecabinFloor.mat"; public static string matSpacecabinGeneric = "RoR2/Base/title/matSpacecabinGeneric.mat"; public static string matSpacecabinGlass = "RoR2/Base/title/matSpacecabinGlass.mat"; public static string matTerrainTitle = "RoR2/Base/title/matTerrainTitle.mat"; public static string matTeruteru = "RoR2/Base/title/matTeruteru.mat"; public static string matTeruteruRope = "RoR2/Base/title/matTeruteruRope.mat"; public static string matTeruteruRopeopt = "RoR2/Base/title/matTeruteruRope_opt.mat"; public static string matTitleLowFog = "RoR2/Base/title/matTitleLowFog.mat"; public static string matTitleTerrain = "RoR2/Base/title/matTitleTerrain.mat"; public static string matWindSpore = "RoR2/Base/title/matWindSpore.mat"; public static string Leaves017 = "RoR2/Base/title/Leaves_0.mat"; public static string Leaves0opt11 = "RoR2/Base/title/Leaves_0_opt.mat"; public static string matWPDirtDecal1Long = "RoR2/Base/wispgraveyard/matWPDirtDecal1Long.mat"; public static string matWPDirtDecal1Radial = "RoR2/Base/wispgraveyard/matWPDirtDecal1Radial.mat"; public static string matWPCameraDustBig = "RoR2/Base/wispgraveyard/matWPCameraDustBig.mat"; public static string matWPEnvEmbers = "RoR2/Base/wispgraveyard/matWPEnvEmbers.mat"; public static string matWPEnvSun = "RoR2/Base/wispgraveyard/matWPEnvSun.mat"; public static string matWPEnvSunGlare = "RoR2/Base/wispgraveyard/matWPEnvSunGlare.mat"; public static string matWPEnvSunTrails = "RoR2/Base/wispgraveyard/matWPEnvSunTrails.mat"; public static string matWPGroundFog = "RoR2/Base/wispgraveyard/matWPGroundFog.mat"; public static string Billboard18 = "RoR2/Base/wispgraveyard/Billboard.mat"; public static string Branches0LOD06 = "RoR2/Base/wispgraveyard/Branches_0_LOD0.mat"; public static string Branches0LOD118 = "RoR2/Base/wispgraveyard/Branches_0_LOD1.mat"; public static string Branches0LOD234 = "RoR2/Base/wispgraveyard/Branches_0_LOD2.mat"; public static string Fronds1LOD019 = "RoR2/Base/wispgraveyard/Fronds_1_LOD0.mat"; public static string Fronds1LOD10 = "RoR2/Base/wispgraveyard/Fronds_1_LOD1.mat"; public static string Fronds1LOD29 = "RoR2/Base/wispgraveyard/Fronds_1_LOD2.mat"; public static string Leaves2LOD023 = "RoR2/Base/wispgraveyard/Leaves_2_LOD0.mat"; public static string Leaves2LOD118 = "RoR2/Base/wispgraveyard/Leaves_2_LOD1.mat"; public static string Leaves2LOD2 = "RoR2/Base/wispgraveyard/Leaves_2_LOD2.mat"; public static string matWPDirtBlender = "RoR2/Base/wispgraveyard/matWPDirtBlender.mat"; public static string matWPTerrain = "RoR2/Base/wispgraveyard/matWPTerrain.mat"; public static string matWPTerrainRocky = "RoR2/Base/wispgraveyard/matWPTerrainRocky.mat"; public static string matWPTerrainSkyboxFloor = "RoR2/Base/wispgraveyard/matWPTerrainSkyboxFloor.mat"; public static string matTempleObelisk = "RoR2/Base/wispgraveyard/matTempleObelisk.mat"; public static string matWPFlag = "RoR2/Base/wispgraveyard/matWPFlag.mat"; public static string matMeteorBlue = "RoR2/Base/matMeteorBlue.mat"; public static string matMeteorBlueDark = "RoR2/Base/matMeteorBlueDark.mat"; public static string matMeteorPurple = "RoR2/Base/matMeteorPurple.mat"; public static string matUIBasicAdditive = "RoR2/Base/UI/CreditsPanel/matUIBasicAdditive.mat"; public static string matUIIconLoss = "RoR2/Base/UI/matUIIconLoss.mat"; public static string matUIIconUnknown = "RoR2/Base/UI/matUIIconUnknown.mat"; public static string matUIIconWon = "RoR2/Base/UI/matUIIconWon.mat"; public static string matUISkillCD = "RoR2/Base/UI/matUISkillCD.mat"; public static string matDebugUI = "RoR2/Base/UI/matDebugUI.mat"; public static string matRuleChoiceOff = "RoR2/Base/UI/matRuleChoiceOff.mat"; public static string matHealthSubBar = "RoR2/Base/UI/SpecialUIMaterials/matHealthSubBar.mat"; public static string matScreenColorOverlay = "RoR2/Base/UI/SpecialUIMaterials/matScreenColorOverlay.mat"; public static string matUIAnimateAlphaNakedButton = "RoR2/Base/UI/SpecialUIMaterials/matUIAnimateAlphaNakedButton.mat"; public static string matUIOverbrighten2x = "RoR2/Base/UI/SpecialUIMaterials/matUIOverbrighten2x.mat"; public static string matUIPaintStreakAnimated = "RoR2/Base/UI/SpecialUIMaterials/matUIPaintStreakAnimated.mat"; public static string matUIPaintStreakFlash = "RoR2/Base/UI/SpecialUIMaterials/matUIPaintStreakFlash.mat"; public static string matUIPaintStreakStatic = "RoR2/Base/UI/SpecialUIMaterials/matUIPaintStreakStatic.mat"; public static string matUIRoomGradient = "RoR2/Base/UI/SpecialUIMaterials/matUIRoomGradient.mat"; public static string matUISwipeOut = "RoR2/Base/UI/SpecialUIMaterials/matUISwipeOut.mat"; public static string TransparentSpriteLetters = "RoR2/Base/UI/SpriteText/TransparentSpriteLetters.mat"; public static string matUIAnimateShine = "RoR2/Base/UI/matUIAnimateShine.mat"; public static string UIBlurFlip = "RoR2/Base/UIBlur_Flip.mat"; public static string UIBlurNoFlip = "RoR2/Base/UIBlur_NoFlip.mat"; public static string matPickerJuiceBar = "RoR2/CU8/matPickerJuiceBar.mat"; public static string matPickerJuiceWave = "RoR2/CU8/matPickerJuiceWave.mat"; public static string matLemurianHarness = "RoR2/CU8/Harness/matLemurianHarness.mat"; public static string matLemurianEgg = "RoR2/CU8/LemurianEgg/matLemurianEgg.mat"; public static string matLemurianEggDecal = "RoR2/CU8/LemurianEgg/matLemurianEggDecal.mat"; public static string matPMSconceBeam = "RoR2/CU8/LemurianEgg/matPMSconceBeam.mat"; public static string matLTGodray = "RoR2/CU8/matLTGodray.mat"; public static string matTLGodray = "RoR2/CU8/matTLGodray.mat"; public static string matHitboxTransparent = "RoR2/Dev/Common/matHitboxTransparent.mat"; public static string whiteBoxBlocker = "RoR2/Dev/Common/whiteBoxBlocker.mat"; public static string whiteBoxBridge1 = "RoR2/Dev/Common/whiteBoxBridge1.mat"; public static string whiteBoxBridge2 = "RoR2/Dev/Common/whiteBoxBridge2.mat"; public static string whiteBoxFloatingBridge = "RoR2/Dev/Common/whiteBoxFloatingBridge.mat"; public static string whiteBoxFrozenCreek = "RoR2/Dev/Common/whiteBoxFrozenCreek.mat"; public static string whiteBoxGroundHighest = "RoR2/Dev/Common/whiteBoxGroundHighest.mat"; public static string whiteBoxGroundLower = "RoR2/Dev/Common/whiteBoxGroundLower.mat"; public static string whiteBoxGroundLower1 = "RoR2/Dev/Common/whiteBoxGroundLower1.mat"; public static string whiteBoxGroundLower3 = "RoR2/Dev/Common/whiteBoxGroundLower3.mat"; public static string whiteBoxGroundLower4 = "RoR2/Dev/Common/whiteBoxGroundLower4.mat"; public static string whiteBoxGroundMiddle = "RoR2/Dev/Common/whiteBoxGroundMiddle.mat"; public static string whiteBoxLedges = "RoR2/Dev/Common/whiteBoxLedges.mat"; public static string whiteBoxOrbInside = "RoR2/Dev/Common/whiteBoxOrbInside.mat"; public static string whiteBoxOrbOutside = "RoR2/Dev/Common/whiteBoxOrbOutside.mat"; public static string whiteBoxPillars = "RoR2/Dev/Common/whiteBoxPillars.mat"; public static string whiteBoxSnow = "RoR2/Dev/Common/whiteBoxSnow.mat"; public static string whiteBoxTemple = "RoR2/Dev/Common/whiteBoxTemple.mat"; public static string whiteBoxTemple2 = "RoR2/Dev/Common/whiteBoxTemple2.mat"; public static string whiteBoxTerrain1 = "RoR2/Dev/Common/whiteBoxTerrain1.mat"; public static string whiteBoxTerrain2 = "RoR2/Dev/Common/whiteBoxTerrain2.mat"; public static string whiteBoxTerrain3 = "RoR2/Dev/Common/whiteBoxTerrain3.mat"; public static string whiteBoxTerrain4 = "RoR2/Dev/Common/whiteBoxTerrain4.mat"; public static string whiteBoxTerrain5 = "RoR2/Dev/Common/whiteBoxTerrain5.mat"; public static string matGrayBox = "RoR2/Dev/Common/matGrayBox.mat"; public static string matGrayBoxDark = "RoR2/Dev/Common/matGrayBoxDark.mat"; public static string matMenuSky = "RoR2/Dev/renderitem/matMenuSky.mat"; public static string matAcidLarvaBlood = "RoR2/DLC1/AcidLarva/matAcidLarvaBlood.mat"; public static string matAcidLarvaBody = "RoR2/DLC1/AcidLarva/matAcidLarvaBody.mat"; public static string matAcidLarvaDeathDecal = "RoR2/DLC1/AcidLarva/matAcidLarvaDeathDecal.mat"; public static string matAcidLarvaLeap = "RoR2/DLC1/AcidLarva/matAcidLarvaLeap.mat"; public static string matAcidLarvaSacs = "RoR2/DLC1/AcidLarva/matAcidLarvaSacs.mat"; public static string matAcidLarvaTrail = "RoR2/DLC1/AcidLarva/matAcidLarvaTrail.mat"; public static string matAssassinImpact = "RoR2/DLC1/Assassin2/matAssassinImpact.mat"; public static string matAssassinMarkDust = "RoR2/DLC1/Assassin2/matAssassinMarkDust.mat"; public static string matAssassinSlash = "RoR2/DLC1/Assassin2/matAssassinSlash.mat"; public static string matAssassinSmoke = "RoR2/DLC1/Assassin2/matAssassinSmoke.mat"; public static string matAssassin2 = "RoR2/DLC1/Assassin2/matAssassin2.mat"; public static string matClayGrenadierBody = "RoR2/DLC1/ClayGrenadier/matClayGrenadierBody.mat"; public static string matClayGrenadierGrenade = "RoR2/DLC1/ClayGrenadier/matClayGrenadierGrenade.mat"; public static string matClayGrenadierInvis = "RoR2/DLC1/ClayGrenadier/matClayGrenadierInvis.mat"; public static string matClayGrenadierLimbs = "RoR2/DLC1/ClayGrenadier/matClayGrenadierLimbs.mat"; public static string matClayGrenadierShockwave = "RoR2/DLC1/ClayGrenadier/matClayGrenadierShockwave.mat"; public static string matClayGrenadierWarningSphere = "RoR2/DLC1/ClayGrenadier/matClayGrenadierWarningSphere.mat"; public static string matClayGooDecalMediumSplat = "RoR2/DLC1/ClayGrenadier/matClayGooDecalMediumSplat.mat"; public static string matCommandoDualiesMarine = "RoR2/DLC1/matCommandoDualiesMarine.mat"; public static string matDroneCommander = "RoR2/DLC1/DroneCommander/matDroneCommander.mat"; public static string matDroneCommanderHat = "RoR2/DLC1/DroneCommander/matDroneCommanderHat.mat"; public static string matFlyingVermin = "RoR2/DLC1/FlyingVermin/matFlyingVermin.mat"; public static string matFlyingVerminFur = "RoR2/DLC1/FlyingVermin/matFlyingVerminFur.mat"; public static string matFlyingVerminMouth = "RoR2/DLC1/FlyingVermin/matFlyingVerminMouth.mat"; public static string matSnowyFlyingVermin = "RoR2/DLC1/FlyingVermin/matSnowyFlyingVermin.mat"; public static string matSnowyFlyingVerminFur = "RoR2/DLC1/FlyingVermin/matSnowyFlyingVerminFur.mat"; public static string matSnowyFlyingVerminMouth = "RoR2/DLC1/FlyingVermin/matSnowyFlyingVerminMouth.mat"; public static string matVerminGooSmall = "RoR2/DLC1/FlyingVermin/matVerminGooSmall.mat"; public static string matVerminGooTrail = "RoR2/DLC1/FlyingVermin/matVerminGooTrail.mat"; public static string matGeepBody = "RoR2/DLC1/Gup/matGeepBody.mat"; public static string matGipBody = "RoR2/DLC1/Gup/matGipBody.mat"; public static string matGupBlood = "RoR2/DLC1/Gup/matGupBlood.mat"; public static string matGupBloodSphere = "RoR2/DLC1/Gup/matGupBloodSphere.mat"; public static string matGupBody = "RoR2/DLC1/Gup/matGupBody.mat"; public static string matGupBodySimple = "RoR2/DLC1/Gup/matGupBodySimple.mat"; public static string matGupEyes = "RoR2/DLC1/Gup/matGupEyes.mat"; public static string matGupFakeSpikes = "RoR2/DLC1/Gup/matGupFakeSpikes.mat"; public static string matConstructBeamBackdrop = "RoR2/DLC1/MajorAndMinorConstruct/matConstructBeamBackdrop.mat"; public static string matConstructBeamInitial = "RoR2/DLC1/MajorAndMinorConstruct/matConstructBeamInitial.mat"; public static string matMajorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstruct.mat"; public static string matMajorConstructAreaIndicator = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructAreaIndicator.mat"; public static string matMajorConstructBeam = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructBeam.mat"; public static string matMajorConstructDefenseMatrixCenter = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructDefenseMatrixCenter.mat"; public static string matMajorConstructDefenseMatrixEdges = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructDefenseMatrixEdges.mat"; public static string matMajorConstructExplosionMuzzle = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructExplosionMuzzle.mat"; public static string matMajorConstructEye = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructEye.mat"; public static string matMajorConstructEyeGlow = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructEyeGlow.mat"; public static string matMajorConstructHexagonFX = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructHexagonFX.mat"; public static string matMajorConstructPad = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructPad.mat"; public static string matMajorConstructPyres = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructPyres.mat"; public static string matMajorConstructStones = "RoR2/DLC1/MajorAndMinorConstruct/matMajorConstructStones.mat"; public static string matMegaConstruct = "RoR2/DLC1/MajorAndMinorConstruct/matMegaConstruct.mat"; public static string matMegaConstructEye = "RoR2/DLC1/MajorAndMinorConstruct/matMegaConstructEye.mat"; public static string matMegaConstructTriangle = "RoR2/DLC1/MajorAndMinorConstruct/matMegaConstructTriangle.mat"; public static string matMinorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/matMinorConstruct.mat"; public static string matMinorConstructAlly = "RoR2/DLC1/MajorAndMinorConstruct/matMinorConstructAlly.mat"; public static string matMinorConstructAllyShield = "RoR2/DLC1/MajorAndMinorConstruct/matMinorConstructAllyShield.mat"; public static string matMinorConstructChargeMeatball = "RoR2/DLC1/MajorAndMinorConstruct/matMinorConstructChargeMeatball.mat"; public static string matMinorConstructElectric = "RoR2/DLC1/MajorAndMinorConstruct/matMinorConstructElectric.mat"; public static string matMinorConstructProjectileTriangle = "RoR2/DLC1/MajorAndMinorConstruct/matMinorConstructProjectileTriangle.mat"; public static string matMinorConstructShield = "RoR2/DLC1/MajorAndMinorConstruct/matMinorConstructShield.mat"; public static string matMinorConstructSpecialSpawnEffect = "RoR2/DLC1/MajorAndMinorConstruct/matMinorConstructSpecialSpawnEffect.mat"; public static string matMinorConstructTrail = "RoR2/DLC1/MajorAndMinorConstruct/matMinorConstructTrail.mat"; public static string matRailgunBackpackCharged = "RoR2/DLC1/Railgunner/matRailgunBackpackCharged.mat"; public static string matRailgunBackpackCharging = "RoR2/DLC1/Railgunner/matRailgunBackpackCharging.mat"; public static string matRailgunBackpackIdle = "RoR2/DLC1/Railgunner/matRailgunBackpackIdle.mat"; public static string matRailgunBackpackReboot = "RoR2/DLC1/Railgunner/matRailgunBackpackReboot.mat"; public static string matRailgunnerBackpackFlash = "RoR2/DLC1/Railgunner/matRailgunnerBackpackFlash.mat"; public static string matRailgunnerBackpackFlashBattery = "RoR2/DLC1/Railgunner/matRailgunnerBackpackFlashBattery.mat"; public static string matRailgunnerBackpackSmoke = "RoR2/DLC1/Railgunner/matRailgunnerBackpackSmoke.mat"; public static string matRailgunnerBackpackSparks = "RoR2/DLC1/Railgunner/matRailgunnerBackpackSparks.mat"; public static string matRailgunBeamDistortion = "RoR2/DLC1/Railgunner/matRailgunBeamDistortion.mat"; public static string matRailgunBeamDistortionHeavy = "RoR2/DLC1/Railgunner/matRailgunBeamDistortionHeavy.mat"; public static string matRailgunnerLED = "RoR2/DLC1/Railgunner/matRailgunnerLED.mat"; public static string matRailgunnerWeakpoint = "RoR2/DLC1/Railgunner/matRailgunnerWeakpoint.mat"; public static string matRailgunnerWeakpointBackdrop = "RoR2/DLC1/Railgunner/matRailgunnerWeakpointBackdrop.mat"; public static string matRailgunnerMineAreaIndicator = "RoR2/DLC1/Railgunner/matRailgunnerMineAreaIndicator.mat"; public static string matRailgunnerMineAreaIndicatorAlt = "RoR2/DLC1/Railgunner/matRailgunnerMineAreaIndicatorAlt.mat"; public static string matRailgunnerMineDistortion = "RoR2/DLC1/Railgunner/matRailgunnerMineDistortion.mat"; public static string matRailgunnerMineDistortionAlt = "RoR2/DLC1/Railgunner/matRailgunnerMineDistortionAlt.mat"; public static string matRailgunBeam = "RoR2/DLC1/Railgunner/matRailgunBeam.mat"; public static string matRailgunBeamCylinder = "RoR2/DLC1/Railgunner/matRailgunBeamCylinder.mat"; public static string matRailgunBeamFlash = "RoR2/DLC1/Railgunner/matRailgunBeamFlash.mat"; public static string matRailgunChunks = "RoR2/DLC1/Railgunner/matRailgunChunks.mat"; public static string matRailgunImpact = "RoR2/DLC1/Railgunner/matRailgunImpact.mat"; public static string matRailgunImpactSpikes = "RoR2/DLC1/Railgunner/matRailgunImpactSpikes.mat"; public static string matRailgunPenRing = "RoR2/DLC1/Railgunner/matRailgunPenRing.mat"; public static string matRailgunRings = "RoR2/DLC1/Railgunner/matRailgunRings.mat"; public static string matRailgunSphere = "RoR2/DLC1/Railgunner/matRailgunSphere.mat"; public static string matRailgunTracerHead = "RoR2/DLC1/Railgunner/matRailgunTracerHead.mat"; public static string matRailgunBeamCryo = "RoR2/DLC1/Railgunner/matRailgunBeamCryo.mat"; public static string matRailgunBeamCylinderCryo = "RoR2/DLC1/Railgunner/matRailgunBeamCylinderCryo.mat"; public static string matRailgunBeamFlashCryo = "RoR2/DLC1/Railgunner/matRailgunBeamFlashCryo.mat"; public static string matRailgunChunksIce = "RoR2/DLC1/Railgunner/matRailgunChunksIce.mat"; public static string matRailgunCryoDecal = "RoR2/DLC1/Railgunner/matRailgunCryoDecal.mat"; public static string matRailgunCryoDust = "RoR2/DLC1/Railgunner/matRailgunCryoDust.mat"; public static string matRailgunCryoSphere = "RoR2/DLC1/Railgunner/matRailgunCryoSphere.mat"; public static string matRailgunSoftGlow = "RoR2/DLC1/Railgunner/matRailgunSoftGlow.mat"; public static string matRailgunTracerHead1 = "RoR2/DLC1/Railgunner/matRailgunTracerHead 1.mat"; public static string matRailgunBeamLight = "RoR2/DLC1/Railgunner/matRailgunBeamLight.mat"; public static string matRailgunChunksLight = "RoR2/DLC1/Railgunner/matRailgunChunksLight.mat"; public static string matRailgunImpactSpikesLight = "RoR2/DLC1/Railgunner/matRailgunImpactSpikesLight.mat"; public static string matRailgunLightSphere = "RoR2/DLC1/Railgunner/matRailgunLightSphere.mat"; public static string matRailgunTracerHeadLight = "RoR2/DLC1/Railgunner/matRailgunTracerHeadLight.mat"; public static string matRailgunnerPistolLaser = "RoR2/DLC1/Railgunner/matRailgunnerPistolLaser.mat"; public static string matRailgunnerPistolSquare = "RoR2/DLC1/Railgunner/matRailgunnerPistolSquare.mat"; public static string matRailgunnerPistolTrail1 = "RoR2/DLC1/Railgunner/matRailgunnerPistolTrail 1.mat"; public static string matRailgunnerPistolTrail = "RoR2/DLC1/Railgunner/matRailgunnerPistolTrail.mat"; public static string matRailgunnerSmartPistol = "RoR2/DLC1/Railgunner/matRailgunnerSmartPistol.mat"; public static string matRailgunnerScopeOverlayHeavy = "RoR2/DLC1/Railgunner/matRailgunnerScopeOverlayHeavy.mat"; public static string matRailgunnerScopeOverlayLight = "RoR2/DLC1/Railgunner/matRailgunnerScopeOverlayLight.mat"; public static string matRailgun = "RoR2/DLC1/Railgunner/matRailgun.mat"; public static string matRailGunnerAltMineEmissive = "RoR2/DLC1/Railgunner/matRailGunnerAltMineEmissive.mat"; public static string matRailGunnerBase = "RoR2/DLC1/Railgunner/matRailGunnerBase.mat"; public static string matRailgunnerMine = "RoR2/DLC1/Railgunner/matRailgunnerMine.mat"; public static string matRailgunnerTrim = "RoR2/DLC1/Railgunner/matRailgunnerTrim.mat"; public static string matRailGunnerAltColossus = "RoR2/DLC1/Railgunner/matRailGunnerAltColossus.mat"; public static string matRailGunnerAltColossusMetal = "RoR2/DLC1/Railgunner/matRailGunnerAltColossusMetal.mat"; public static string matRailgunAlt = "RoR2/DLC1/Railgunner/matRailgunAlt.mat"; public static string matRailGunnerAlt = "RoR2/DLC1/Railgunner/matRailGunnerAlt.mat"; public static string matRailGunnerAltMetal = "RoR2/DLC1/Railgunner/matRailGunnerAltMetal.mat"; public static string matSulfurPodBody = "RoR2/DLC1/SulfurPod/matSulfurPodBody.mat"; public static string matSnowyVermin = "RoR2/DLC1/Vermin/matSnowyVermin.mat"; public static string matTongueLash = "RoR2/DLC1/Vermin/matTongueLash.mat"; public static string matVermin = "RoR2/DLC1/Vermin/matVermin.mat"; public static string matVerminBite = "RoR2/DLC1/Vermin/matVerminBite.mat"; public static string matVerminFur = "RoR2/DLC1/Vermin/matVerminFur.mat"; public static string matVerminFurParticle = "RoR2/DLC1/Vermin/matVerminFurParticle.mat"; public static string matVerminMouth = "RoR2/DLC1/Vermin/matVerminMouth.mat"; public static string matVerminSnowyFur = "RoR2/DLC1/Vermin/matVerminSnowyFur.mat"; public static string matVoidBarnacle = "RoR2/DLC1/VoidBarnacle/matVoidBarnacle.mat"; public static string matVoidBarnacleArmor = "RoR2/DLC1/VoidBarnacle/matVoidBarnacleArmor.mat"; public static string matVoidBarnacleBullet = "RoR2/DLC1/VoidBarnacle/matVoidBarnacleBullet.mat"; public static string matVoidBarnacleBulletOverlay = "RoR2/DLC1/VoidBarnacle/matVoidBarnacleBulletOverlay.mat"; public static string matVoidBarnacleDecal = "RoR2/DLC1/VoidBarnacle/matVoidBarnacleDecal.mat"; public static string matVoidBarnacleExplosion = "RoR2/DLC1/VoidBarnacle/matVoidBarnacleExplosion.mat"; public static string matVoidBarnacleGoo = "RoR2/DLC1/VoidBarnacle/matVoidBarnacleGoo.mat"; public static string matJailerWaterDrop = "RoR2/DLC1/VoidJailer/matJailerWaterDrop.mat"; public static string matVoidJailerAlly = "RoR2/DLC1/VoidJailer/matVoidJailerAlly.mat"; public static string matVoidJailerEyesAlly = "RoR2/DLC1/VoidJailer/matVoidJailerEyesAlly.mat"; public static string matVoidJailerMetalAlly = "RoR2/DLC1/VoidJailer/matVoidJailerMetalAlly.mat"; public static string matVoidJailer = "RoR2/DLC1/VoidJailer/matVoidJailer.mat"; public static string matVoidJailerEyes = "RoR2/DLC1/VoidJailer/matVoidJailerEyes.mat"; public static string matVoidJailerMetal = "RoR2/DLC1/VoidJailer/matVoidJailerMetal.mat"; public static string matJailerDart = "RoR2/DLC1/VoidJailer/matJailerDart.mat"; public static string matJailerDartDust = "RoR2/DLC1/VoidJailer/matJailerDartDust.mat"; public static string matJailerDartHead = "RoR2/DLC1/VoidJailer/matJailerDartHead.mat"; public static string matJailerDartImpact = "RoR2/DLC1/VoidJailer/matJailerDartImpact.mat"; public static string matJailerPortal = "RoR2/DLC1/VoidJailer/matJailerPortal.mat"; public static string matJailerEnergyTether = "RoR2/DLC1/VoidJailer/matJailerEnergyTether.mat"; public static string matJailerTentacleBillboard = "RoR2/DLC1/VoidJailer/matJailerTentacleBillboard.mat"; public static string matJailerTetherBackdrop = "RoR2/DLC1/VoidJailer/matJailerTetherBackdrop.mat"; public static string matJailerTetherChain1 = "RoR2/DLC1/VoidJailer/matJailerTetherChain1.mat"; public static string matJailerTetherChain2 = "RoR2/DLC1/VoidJailer/matJailerTetherChain2.mat"; public static string matJailerTetherChain3 = "RoR2/DLC1/VoidJailer/matJailerTetherChain3.mat"; public static string matJailerTetherCore = "RoR2/DLC1/VoidJailer/matJailerTetherCore.mat"; public static string matJailerTetherIndicator = "RoR2/DLC1/VoidJailer/matJailerTetherIndicator.mat"; public static string matJailerTetherPortal = "RoR2/DLC1/VoidJailer/matJailerTetherPortal.mat"; public static string matVoidMegaCrabAlly = "RoR2/DLC1/VoidMegaCrab/matVoidMegaCrabAlly.mat"; public static string matVoidMegaCrabArmorAlly = "RoR2/DLC1/VoidMegaCrab/matVoidMegaCrabArmorAlly.mat"; public static string matVoidCrabAntiMatter = "RoR2/DLC1/VoidMegaCrab/matVoidCrabAntiMatter.mat"; public static string matVoidCrabAntiMatterAreaIndicator = "RoR2/DLC1/VoidMegaCrab/matVoidCrabAntiMatterAreaIndicator.mat"; public static string matVoidCrabAntiMatterParticleBillboard = "RoR2/DLC1/VoidMegaCrab/matVoidCrabAntiMatterParticleBillboard.mat"; public static string matVoidCrabAntiMatterParticleDonut = "RoR2/DLC1/VoidMegaCrab/matVoidCrabAntiMatterParticleDonut.mat"; public static string matVoidCrabAntiMatterParticleSphere = "RoR2/DLC1/VoidMegaCrab/matVoidCrabAntiMatterParticleSphere.mat"; public static string matVoidCrabAntiMatterParticleStreak = "RoR2/DLC1/VoidMegaCrab/matVoidCrabAntiMatterParticleStreak.mat"; public static string matVoidCrabMatterOpaque = "RoR2/DLC1/VoidMegaCrab/matVoidCrabMatterOpaque.mat"; public static string matVoidCrabMatterOverlay = "RoR2/DLC1/VoidMegaCrab/matVoidCrabMatterOverlay.mat"; public static string matVoidWhiteBlackCannon = "RoR2/DLC1/VoidMegaCrab/matVoidWhiteBlackCannon.mat"; public static string matVoidWhiteCannon = "RoR2/DLC1/VoidMegaCrab/matVoidWhiteCannon.mat"; public static string matVoidMegaCrab = "RoR2/DLC1/VoidMegaCrab/matVoidMegaCrab.mat"; public static string matVoidMegaCrabArmor = "RoR2/DLC1/VoidMegaCrab/matVoidMegaCrabArmor.mat"; public static string matVoidRaidCrabDustHuge = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabDustHuge.mat"; public static string matVoidRaidCrabDustHugeMoreOpaque = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabDustHugeMoreOpaque.mat"; public static string matVoidRaidCrabDustHugeSphere = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabDustHugeSphere.mat"; public static string matVoidRaidCrabEyeSmoke1 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabEyeSmoke1.mat"; public static string matVoidRaidCrabEyeOpaqueDreaming = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabEyeOpaqueDreaming.mat"; public static string matVoidRaidCrabEyeOverlay1 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabEyeOverlay1.mat"; public static string matVoidRaidCrabEyeOverlay2 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabEyeOverlay2.mat"; public static string matVoidRaidCrabEyeOverlay3 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabEyeOverlay3.mat"; public static string matVoidRaidCrabAreaindicator1 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabAreaindicator1.mat"; public static string matVoidRaidCrabSpawnPortalCenter = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabSpawnPortalCenter.mat"; public static string matVoidRaidCrabSpawnPortalEdge = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabSpawnPortalEdge.mat"; public static string matVoidRaidCrabSpawnSphere = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabSpawnSphere.mat"; public static string matVoidRaidCrabTrail1 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTrail1.mat"; public static string matVoidRaidCrabTrail2 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTrail2.mat"; public static string matVoidRaidSpawnCylinder = "RoR2/DLC1/VoidRaidCrab/matVoidRaidSpawnCylinder.mat"; public static string matVoidRaidSpawnCylinder2 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidSpawnCylinder2.mat"; public static string matVoidRaidCrabJointBrokenSphere = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabJointBrokenSphere.mat"; public static string matVoidRaidCrabJointBrokenTrail = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabJointBrokenTrail.mat"; public static string matVoidRaidCrab = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrab.mat"; public static string matVoidRaidCrabArmor = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabArmor.mat"; public static string matVoidRaidCrabBrain = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabBrain.mat"; public static string matVoidRaidCrabEye = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabEye.mat"; public static string matVoidRaidCrabJoints = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabJoints.mat"; public static string matVoidRaidCrabTargets = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTargets.mat"; public static string matVoidRaidCrabEyeMissileAreaIndicator = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabEyeMissileAreaIndicator.mat"; public static string matVoidRaidCrabParticle = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabParticle.mat"; public static string matVoidRaidCrabGravityBumpGem = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabGravityBumpGem.mat"; public static string matVoidRaidCrabGravityBumpSphere = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabGravityBumpSphere.mat"; public static string matVoidRaidCrabGravityBumpWarning = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabGravityBumpWarning.mat"; public static string matVoidRaidCrabParticleBlue = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabParticleBlue.mat"; public static string matVoidRaidCrabTrailBlue = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTrailBlue.mat"; public static string matVoidRaidCrabParticlePink = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabParticlePink.mat"; public static string matVoidRaidCrabTripleBeam1 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTripleBeam1.mat"; public static string matVoidRaidCrabTripleBeam2 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTripleBeam2.mat"; public static string matVoidRaidCrabTripleBeam3 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTripleBeam3.mat"; public static string matVoidRaidCrabTripleBeamDotZoneDecal = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTripleBeamDotZoneDecal.mat"; public static string matVoidRaidCrabTripleBeamDotZoneIndicator = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTripleBeamDotZoneIndicator.mat"; public static string matVoidRaidCrabTripleBeamSphere1 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTripleBeamSphere1.mat"; public static string matVoidRaidCrabTripleBeamSphere2 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTripleBeamSphere2.mat"; public static string matVoidRaidCrabTripleBeamTrail = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabTripleBeamTrail.mat"; public static string matVoidRaidCrapWarningLaserLine = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrapWarningLaserLine.mat"; public static string matWarningLaserEndpointParticle = "RoR2/DLC1/VoidRaidCrab/matWarningLaserEndpointParticle.mat"; public static string matBeamInnerLine = "RoR2/DLC1/VoidRaidCrab/matBeamInnerLine.mat"; public static string matBeamOuterCylinder = "RoR2/DLC1/VoidRaidCrab/matBeamOuterCylinder.mat"; public static string matBeamPlasmaTrail = "RoR2/DLC1/VoidRaidCrab/matBeamPlasmaTrail.mat"; public static string matBeamVolumeParticle = "RoR2/DLC1/VoidRaidCrab/matBeamVolumeParticle.mat"; public static string matImpactFlare = "RoR2/DLC1/VoidRaidCrab/matImpactFlare.mat"; public static string matImpactSpark = "RoR2/DLC1/VoidRaidCrab/matImpactSpark.mat"; public static string matMuzzleFlareRays = "RoR2/DLC1/VoidRaidCrab/matMuzzleFlareRays.mat"; public static string matVoidRaidCrabSpinBeamBillboard1 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabSpinBeamBillboard1.mat"; public static string matVoidRaidCrabSpinBeamBillboard2 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabSpinBeamBillboard2.mat"; public static string matVoidRaidCrabSpinBeamCylinder1 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabSpinBeamCylinder1.mat"; public static string matVoidRaidCrabSpinBeamCylinder2 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabSpinBeamCylinder2.mat"; public static string matVoidRaidCrabSpinBeamSphere1 = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabSpinBeamSphere1.mat"; public static string matWarningBeamOuterCylinder = "RoR2/DLC1/VoidRaidCrab/matWarningBeamOuterCylinder.mat"; public static string matWarningLaser = "RoR2/DLC1/VoidRaidCrab/matWarningLaser.mat"; public static string matWarningMuzzleChargeGlow = "RoR2/DLC1/VoidRaidCrab/matWarningMuzzleChargeGlow.mat"; public static string matWarningMuzzleChargeTrails = "RoR2/DLC1/VoidRaidCrab/matWarningMuzzleChargeTrails.mat"; public static string matVoidRaidCrabStompIndicator = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabStompIndicator.mat"; public static string matVoidRaidCrabStompLine = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabStompLine.mat"; public static string matVacuumDustPlaceholder = "RoR2/DLC1/VoidRaidCrab/matVacuumDustPlaceholder.mat"; public static string matVacuumDustTrailPlaceholder = "RoR2/DLC1/VoidRaidCrab/matVacuumDustTrailPlaceholder.mat"; public static string matVoidRaidCrabWardWipeBillboardParticle = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabWardWipeBillboardParticle.mat"; public static string matVoidRaidCrabWardWipeDonut = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabWardWipeDonut.mat"; public static string matVoidRaidCrabWardWipeSphere = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabWardWipeSphere.mat"; public static string matVoidRaidCrabWardWipeTrail = "RoR2/DLC1/VoidRaidCrab/matVoidRaidCrabWardWipeTrail.mat"; public static string matVoidSuperMegaCrabMetal = "RoR2/DLC1/matVoidSuperMegaCrabMetal.mat"; public static string matVoidSuperMegaCrabShell = "RoR2/DLC1/matVoidSuperMegaCrabShell.mat"; public static string matVoidSurvivorFlesh = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorFlesh.mat"; public static string matVoidSurvivorHead = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorHead.mat"; public static string matVoidSurvivorMetal = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorMetal.mat"; public static string matVoidSurvivorCrabCannonCoreCharSelect = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorCrabCannonCoreCharSelect.mat"; public static string matVoidSurvivorEye = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorEye.mat"; public static string matVoidSurvivorCorruptOverlay1 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorCorruptOverlay 1.mat"; public static string matVoidSurvivorCorruptOverlay = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorCorruptOverlay.mat"; public static string matVoidSuvivorEnterCorruptionSphere1 = "RoR2/DLC1/VoidSurvivor/matVoidSuvivorEnterCorruptionSphere1.mat"; public static string matVoidSuvivorEnterCorruptionSphere2 = "RoR2/DLC1/VoidSurvivor/matVoidSuvivorEnterCorruptionSphere2.mat"; public static string matVoidSuvivorEnterCorruptionSphere3 = "RoR2/DLC1/VoidSurvivor/matVoidSuvivorEnterCorruptionSphere3.mat"; public static string matVoidSurvivorBeamTrail = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBeamTrail.mat"; public static string matVoidSurvivorBlasterCore = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterCore.mat"; public static string matVoidSurvivorBlasterFire = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterFire.mat"; public static string matVoidSurvivorBlasterTrail = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterTrail.mat"; public static string matVoidSurvivorLightning = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorLightning.mat"; public static string matVoidSurvivorMuzzleflash1 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorMuzzleflash1.mat"; public static string matVoidSurvivorBeamCorrupted = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBeamCorrupted.mat"; public static string matVoidSurvivorBillboardCorrupted1 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBillboardCorrupted1.mat"; public static string matVoidSurvivorBlasterCoreCorrupted = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterCoreCorrupted.mat"; public static string matVoidSurvivorBlasterFireCorrupted = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterFireCorrupted.mat"; public static string matVoidSurvivorBlasterFireCorrupted2 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterFireCorrupted2.mat"; public static string matVoidSurvivorLightningCorrupted = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorLightningCorrupted.mat"; public static string matVoidSurvivorMuzzleflash1Corrupted = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorMuzzleflash1Corrupted.mat"; public static string matVoidSurvivorMeleeSlash = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorMeleeSlash.mat"; public static string matVoidSurvivorMeleeSlashDistortion = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorMeleeSlashDistortion.mat"; public static string matVoidSurvivorSword = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorSword.mat"; public static string matVoidSurvivorBlasterSphere = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterSphere.mat"; public static string matVoidSurvivorBlasterSphereAreaIndicator = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterSphereAreaIndicator.mat"; public static string matVoidSurvivorBlasterSphereOverlay1 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterSphereOverlay1.mat"; public static string matVoidSurvivorBlasterSphereOverlay2 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterSphereOverlay2.mat"; public static string matVoidSurvivorMegaBlasterTrail = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorMegaBlasterTrail.mat"; public static string matVoidSurvivorMegaBlasterTrailHard = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorMegaBlasterTrailHard.mat"; public static string matVoidSurvivorBlasterSphereAreaIndicatorCorrupted = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterSphereAreaIndicatorCorrupted.mat"; public static string matVoidSurvivorBlasterSphereOverlay1Corrupted = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorBlasterSphereOverlay1Corrupted.mat"; public static string matVoidSurvivorCrabCannonCore = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorCrabCannonCore.mat"; public static string matVoidSurvivorCrabCannonExplosion = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorCrabCannonExplosion.mat"; public static string matVoidSurvivorCrabCannonTrail = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorCrabCannonTrail.mat"; public static string matVoidSurvivorRepulse1 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorRepulse1.mat"; public static string matVoidSurvivorRepulse2 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorRepulse2.mat"; public static string matVoidSurvivorSuppressBeam1 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorSuppressBeam1.mat"; public static string matVoidSurvivorSuppressBeam2 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorSuppressBeam2.mat"; public static string matVoidSurvivorSuppressBeam3 = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorSuppressBeam3.mat"; public static string matVoidSurvivorSuppressBeamBillboard = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorSuppressBeamBillboard.mat"; public static string matVoidSurvivorCrushCorruptionSphereOverlay = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorCrushCorruptionSphereOverlay.mat"; public static string matVoidSurvivorCrushHealthSphereOverlay = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorCrushHealthSphereOverlay.mat"; public static string matVoidSurvivorVentBillboard = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorVentBillboard.mat"; public static string matVoidSurvivorVentCoreBillboard = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorVentCoreBillboard.mat"; public static string matVoidSurvivorVentFog = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorVentFog.mat"; public static string matVoidBlinkBillboard = "RoR2/DLC1/VoidSurvivor/matVoidBlinkBillboard.mat"; public static string matVoidBlinkBodyOverlay = "RoR2/DLC1/VoidSurvivor/matVoidBlinkBodyOverlay.mat"; public static string matVoidBlinkPortal = "RoR2/DLC1/VoidSurvivor/matVoidBlinkPortal.mat"; public static string matVoidBlinkSphereOverlay = "RoR2/DLC1/VoidSurvivor/matVoidBlinkSphereOverlay.mat"; public static string matVoidBlinkSwimOverlay = "RoR2/DLC1/VoidSurvivor/matVoidBlinkSwimOverlay.mat"; public static string matVoidBlinkTrail = "RoR2/DLC1/VoidSurvivor/matVoidBlinkTrail.mat"; public static string matVoidBlinkBillboardCorrupted = "RoR2/DLC1/VoidSurvivor/matVoidBlinkBillboardCorrupted.mat"; public static string matVoidBlinkBodyOverlayCorrupted = "RoR2/DLC1/VoidSurvivor/matVoidBlinkBodyOverlayCorrupted.mat"; public static string matVoidBlinkSwimOverlayCorrupted = "RoR2/DLC1/VoidSurvivor/matVoidBlinkSwimOverlayCorrupted.mat"; public static string matVoidBlinkTrailCorrupted = "RoR2/DLC1/VoidSurvivor/matVoidBlinkTrailCorrupted.mat"; public static string matVoidSurvivorAltColossus = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorAltColossus.mat"; public static string matVoidSurvivorAltColossusHead = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorAltColossusHead.mat"; public static string matVoidSurvivorAltFlesh = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorAltFlesh.mat"; public static string matVoidSurvivorAltHead = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorAltHead.mat"; public static string matVoidSurvivorAltMetal = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorAltMetal.mat"; public static string matVoidSurvivorPod = "RoR2/DLC1/VoidSurvivor/matVoidSurvivorPod.mat"; public static string matEntryBurnVoid = "RoR2/DLC1/VoidSurvivor/matEntryBurnVoid.mat"; public static string matVoidPodGooLarge = "RoR2/DLC1/VoidSurvivor/matVoidPodGooLarge.mat"; public static string matVoidPodGooSmall = "RoR2/DLC1/VoidSurvivor/matVoidPodGooSmall.mat"; public static string matVoidPodImpactDecal = "RoR2/DLC1/VoidSurvivor/matVoidPodImpactDecal.mat"; public static string matVoidPodSplatDots = "RoR2/DLC1/VoidSurvivor/matVoidPodSplatDots.mat"; public static string matVoidPodSteam = "RoR2/DLC1/VoidSurvivor/matVoidPodSteam.mat"; public static string matVoidPodStreaks = "RoR2/DLC1/VoidSurvivor/matVoidPodStreaks.mat"; public static string matVoidSplatAreanIndicator = "RoR2/DLC1/VoidSurvivor/matVoidSplatAreanIndicator.mat"; public static string matVoidmetalTrim = "RoR2/DLC1/Common/matVoidmetalTrim.mat"; public static string FakePointLight7 = "RoR2/DLC1/Common/VFX/FakePointLight.mat"; public static string matOmniHitspark1GenericAdditive = "RoR2/DLC1/Common/VFX/matOmniHitspark1GenericAdditive.mat"; public static string matNullifierBlackholeZone = "RoR2/DLC1/Common/Void/matNullifierBlackholeZone.mat"; public static string matNullifierBlackholeZoneAreaIndicator = "RoR2/DLC1/Common/Void/matNullifierBlackholeZoneAreaIndicator.mat"; public static string matNullifierDistortionLight = "RoR2/DLC1/Common/Void/matNullifierDistortionLight.mat"; public static string matNullifierDonutEdge = "RoR2/DLC1/Common/Void/matNullifierDonutEdge.mat"; public static string matNullifierEnergyCore = "RoR2/DLC1/Common/Void/matNullifierEnergyCore.mat"; public static string matNullifierFogParticle = "RoR2/DLC1/Common/Void/matNullifierFogParticle.mat"; public static string matNullifierFogSmokeParticle = "RoR2/DLC1/Common/Void/matNullifierFogSmokeParticle.mat"; public static string matNullifierFractureFront = "RoR2/DLC1/Common/Void/matNullifierFractureFront.mat"; public static string matNullifierFractureParticles = "RoR2/DLC1/Common/Void/matNullifierFractureParticles.mat"; public static string matNullifierFracturePortalFull = "RoR2/DLC1/Common/Void/matNullifierFracturePortalFull.mat"; public static string matNullifierGemFracture = "RoR2/DLC1/Common/Void/matNullifierGemFracture.mat"; public static string matNullifierGemPortal3 = "RoR2/DLC1/Common/Void/matNullifierGemPortal3.mat"; public static string matNullifierLightningSphere = "RoR2/DLC1/Common/Void/matNullifierLightningSphere.mat"; public static string matNullifierSafeWardPillarGlow = "RoR2/DLC1/Common/Void/matNullifierSafeWardPillarGlow.mat"; public static string matNullifierSafeWardPillarStars = "RoR2/DLC1/Common/Void/matNullifierSafeWardPillarStars.mat"; public static string matNullifierSphereFresnelStars = "RoR2/DLC1/Common/Void/matNullifierSphereFresnelStars.mat"; public static string matOmniExplosion1Void = "RoR2/DLC1/Common/Void/matOmniExplosion1Void.mat"; public static string matOmniHitspark1Void = "RoR2/DLC1/Common/Void/matOmniHitspark1Void.mat"; public static string matOmniHitspark2Void = "RoR2/DLC1/Common/Void/matOmniHitspark2Void.mat"; public static string matOmniHitsparkVoid = "RoR2/DLC1/Common/Void/matOmniHitsparkVoid.mat"; public static string matOmniRing1Void = "RoR2/DLC1/Common/Void/matOmniRing1Void.mat"; public static string matEliteMendingAntlers = "RoR2/DLC1/EliteEarth/matEliteMendingAntlers.mat"; public static string matEliteAffixEarthPickup = "RoR2/DLC1/EliteEarth/matEliteAffixEarthPickup.mat"; public static string AffixEarthCore = "RoR2/DLC1/EliteEarth/AffixEarthCore.mat"; public static string matAffixEarthProjectile = "RoR2/DLC1/EliteEarth/matAffixEarthProjectile.mat"; public static string matAffixEarthRings = "RoR2/DLC1/EliteEarth/matAffixEarthRings.mat"; public static string matAffixEarthSphereIndicator = "RoR2/DLC1/EliteEarth/matAffixEarthSphereIndicator.mat"; public static string matAffixEarthTargetBillboard = "RoR2/DLC1/EliteEarth/matAffixEarthTargetBillboard.mat"; public static string matAffixEarthTrail = "RoR2/DLC1/EliteEarth/matAffixEarthTrail.mat"; public static string matAffixEarthTrailBloblets = "RoR2/DLC1/EliteEarth/matAffixEarthTrailBloblets.mat"; public static string matRabbitEars = "RoR2/DLC1/matRabbitEars.mat"; public static string matEliteVoidOverlay = "RoR2/DLC1/EliteVoid/matEliteVoidOverlay.mat"; public static string matEliteVoidParticleReplacement = "RoR2/DLC1/EliteVoid/matEliteVoidParticleReplacement.mat"; public static string matVoidInfestorBillboard = "RoR2/DLC1/EliteVoid/matVoidInfestorBillboard.mat"; public static string matVoidInfestorBlood = "RoR2/DLC1/EliteVoid/matVoidInfestorBlood.mat"; public static string matVoidInfestorDecal = "RoR2/DLC1/EliteVoid/matVoidInfestorDecal.mat"; public static string matVoidInfestorTrail = "RoR2/DLC1/EliteVoid/matVoidInfestorTrail.mat"; public static string matVoidInfestorEyes = "RoR2/DLC1/EliteVoid/matVoidInfestorEyes.mat"; public static string matVoidInfestorFlesh = "RoR2/DLC1/EliteVoid/matVoidInfestorFlesh.mat"; public static string matVoidInfestorMetal = "RoR2/DLC1/EliteVoid/matVoidInfestorMetal.mat"; public static string matBlunderbuss = "RoR2/DLC1/BossHunter/matBlunderbuss.mat"; public static string matBlunderbussDirectional = "RoR2/DLC1/BossHunter/matBlunderbussDirectional.mat"; public static string matBlunderbussPickup = "RoR2/DLC1/BossHunter/matBlunderbussPickup.mat"; public static string matTricorn = "RoR2/DLC1/BossHunter/matTricorn.mat"; public static string matTricornGhostEffect = "RoR2/DLC1/BossHunter/matTricornGhostEffect.mat"; public static string matTricornUsed = "RoR2/DLC1/BossHunter/matTricornUsed.mat"; public static string matGummyCloneDecal = "RoR2/DLC1/GummyClone/matGummyCloneDecal.mat"; public static string matGummyCloneGoo = "RoR2/DLC1/GummyClone/matGummyCloneGoo.mat"; public static string matGummyCloneGooSmall = "RoR2/DLC1/GummyClone/matGummyCloneGooSmall.mat"; public static string matGummyCloneGooSphere = "RoR2/DLC1/GummyClone/matGummyCloneGooSphere.mat"; public static string matGummyCloneInner = "RoR2/DLC1/GummyClone/matGummyCloneInner.mat"; public static string matGummyCloneOuter = "RoR2/DLC1/GummyClone/matGummyCloneOuter.mat"; public static string matGummyClone = "RoR2/DLC1/GummyClone/matGummyClone.mat"; public static string matIrradiatingLaser = "RoR2/DLC1/IrradiatingLaser/matIrradiatingLaser.mat"; public static string matLunarPortalOnUse = "RoR2/DLC1/LunarPortalOnUse/matLunarPortalOnUse.mat"; public static string matMolotov = "RoR2/DLC1/Molotov/matMolotov.mat"; public static string matMolotovDecal = "RoR2/DLC1/Molotov/matMolotovDecal.mat"; public static string matExecutiveCard = "RoR2/DLC1/MultiShopCard/matExecutiveCard.mat"; public static string matVendingMachine = "RoR2/DLC1/VendingMachine/matVendingMachine.mat"; public static string matVendingMachineDirt = "RoR2/DLC1/VendingMachine/matVendingMachineDirt.mat"; public static string matVendingMachineGlass = "RoR2/DLC1/VendingMachine/matVendingMachineGlass.mat"; public static string matVendingMachineAreaIndicatorInner = "RoR2/DLC1/VendingMachine/matVendingMachineAreaIndicatorInner.mat"; public static string matVendingMachineAreaIndicatorOuter = "RoR2/DLC1/VendingMachine/matVendingMachineAreaIndicatorOuter.mat"; public static string matVendingMachineLaser = "RoR2/DLC1/VendingMachine/matVendingMachineLaser.mat"; public static string matVendingMachineRadiusWarning = "RoR2/DLC1/VendingMachine/matVendingMachineRadiusWarning.mat"; public static string matVendingMachineSlogan = "RoR2/DLC1/VendingMachine/matVendingMachineSlogan.mat"; public static string matVendingMachineSloganParticle = "RoR2/DLC1/VendingMachine/matVendingMachineSloganParticle.mat"; public static string matVendingMachinePickup = "RoR2/DLC1/VendingMachine/matVendingMachinePickup.mat"; public static string matVendingMachineSodaOrb = "RoR2/DLC1/VendingMachine/matVendingMachineSodaOrb.mat"; public static string matDistantPlanetShieldBackdrop = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matDistantPlanetShieldBackdrop.mat"; public static string matDistantPlanetShieldRim = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matDistantPlanetShieldRim.mat"; public static string matDistantPlanetSilhouette = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matDistantPlanetSilhouette.mat"; public static string InfiniteTowerSphereCloseBlownOut = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerSphereCloseBlownOut.mat"; public static string InfiniteTowerSphereCloseCausticShield = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerSphereCloseCausticShield.mat"; public static string InfiniteTowerSphereShieldGrid = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerSphereShieldGrid.mat"; public static string InfiniteTowerSphereShieldWhiteGrid = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerSphereShieldWhiteGrid.mat"; public static string matDistantObjectsInfiniteTower = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matDistant Objects Infinite Tower.mat"; public static string matInfiniteTowerSphereCausticShield = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matInfiniteTowerSphereCausticShield.mat"; public static string matInfiniteTowerSphereShieldDistantCausticFog = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matInfiniteTowerSphereShieldDistantCausticFog.mat"; public static string OuterInfiniteTowerSphereCloseBlownOut = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/OuterInfiniteTowerSphereCloseBlownOut.mat"; public static string OuterInfiniteTowerSphereCloseCausticShield = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/OuterInfiniteTowerSphereCloseCausticShield.mat"; public static string OuterInfiniteTowerSphereShieldGrid = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/OuterInfiniteTowerSphereShieldGrid.mat"; public static string OuterInfiniteTowerSphereShieldWhiteGrid = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/OuterInfiniteTowerSphereShieldWhiteGrid.mat"; public static string matInfiniteTowerEdgeParticlesBrightShards = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matInfiniteTowerEdgeParticlesBrightShards.mat"; public static string matVoidWhale = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matVoidWhale.mat"; public static string matVoidWhaleopt = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matVoidWhale_opt.mat"; public static string matVoidWhaleEyes = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matVoidWhaleEyes.mat"; public static string matTitleLowFogVoid = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matTitleLowFogVoid.mat"; public static string matITSafeWardAreaIndicator1 = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matITSafeWardAreaIndicator1.mat"; public static string matITSafeWardAreaIndicator2 = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matITSafeWardAreaIndicator2.mat"; public static string matITSafeWardIn = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matITSafeWardIn.mat"; public static string matInfiniteTowerBooleanEffect1 = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matInfiniteTowerBooleanEffect1.mat"; public static string matInfiniteTowerBoulderHeavySnow = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matInfiniteTowerBoulderHeavySnow.mat"; public static string matInfiniteTowerSkyboxSphereBrightTop = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matInfiniteTowerSkyboxSphere, Bright Top.mat"; public static string matInfiniteTowerSkyboxSphereScrollingCaustics = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matInfiniteTowerSkyboxSphere, Scrolling Caustics.mat"; public static string matInfiniteTowerTerrain = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matInfiniteTowerTerrain.mat"; public static string matInfiniteTowerTrim = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matInfiniteTowerTrim.mat"; public static string matSkyboxInfiniteTower = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matSkyboxInfiniteTower.mat"; public static string matVoidSunCausticsGenerator = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/matVoidSunCausticsGenerator.mat"; public static string matDeepVoidPortalBackdrop = "RoR2/DLC1/DeepVoidPortal/matDeepVoidPortalBackdrop.mat"; public static string matDeepVoidPortalCenter = "RoR2/DLC1/DeepVoidPortal/matDeepVoidPortalCenter.mat"; public static string matDeepVoidPortalOpaque = "RoR2/DLC1/DeepVoidPortal/matDeepVoidPortalOpaque.mat"; public static string matDeepVoidPortalBatteryBeam = "RoR2/DLC1/DeepVoidPortalBattery/matDeepVoidPortalBatteryBeam.mat"; public static string matVoidSignal = "RoR2/DLC1/DeepVoidPortalBattery/matVoidSignal.mat"; public static string matVoidSignalVoid = "RoR2/DLC1/DeepVoidPortalBattery/matVoidSignalVoid.mat"; public static string matPortalVoid = "RoR2/DLC1/PortalVoid/matPortalVoid.mat"; public static string matPortalVoidCenter = "RoR2/DLC1/PortalVoid/matPortalVoidCenter.mat"; public static string matPortalVoidOverlay = "RoR2/DLC1/PortalVoid/matPortalVoidOverlay.mat"; public static string matVoidSeerLocation = "RoR2/DLC1/PortalVoid/matVoidSeerLocation.mat"; public static string matVoidCampDecal = "RoR2/DLC1/VoidCamp/matVoidCampDecal.mat"; public static string matVoidCampLock = "RoR2/DLC1/VoidCamp/matVoidCampLock.mat"; public static string matVoidCampSphereBackface = "RoR2/DLC1/VoidCamp/matVoidCampSphereBackface.mat"; public static string matVoidCampSphereIntersection = "RoR2/DLC1/VoidCamp/matVoidCampSphereIntersection.mat"; public static string matVoidCampSphereSubtle = "RoR2/DLC1/VoidCamp/matVoidCampSphereSubtle.mat"; public static string matVoidEliteDeathFog = "RoR2/DLC1/VoidCamp/matVoidEliteDeathFog.mat"; public static string matVoidCoinBarrel = "RoR2/DLC1/VoidCoinBarrel/matVoidCoinBarrel.mat"; public static string matVoidCoinBarrelFlag = "RoR2/DLC1/VoidCoinBarrel/matVoidCoinBarrelFlag.mat"; public static string matVoidCoinBarrelRibbon = "RoR2/DLC1/VoidCoinBarrel/matVoidCoinBarrelRibbon.mat"; public static string matVoidFogEmitterGlass = "RoR2/DLC1/matVoidFogEmitterGlass.mat"; public static string matVoidFogEmitterMetal = "RoR2/DLC1/matVoidFogEmitterMetal.mat"; public static string matSuppressorTrailEffect = "RoR2/DLC1/VoidSuppressor/matSuppressorTrailEffect.mat"; public static string matVoidSuppressor = "RoR2/DLC1/VoidSuppressor/matVoidSuppressor.mat"; public static string matVoidSuppressorElectricity = "RoR2/DLC1/VoidSuppressor/matVoidSuppressorElectricity.mat"; public static string matVoidSuppressorEye = "RoR2/DLC1/VoidSuppressor/matVoidSuppressorEye.mat"; public static string matVoidSuppressorEyeOverlay = "RoR2/DLC1/VoidSuppressor/matVoidSuppressorEyeOverlay.mat"; public static string matVoidSuppressorShards = "RoR2/DLC1/VoidSuppressor/matVoidSuppressorShards.mat"; public static string matVoidSuppressorStone = "RoR2/DLC1/VoidSuppressor/matVoidSuppressorStone.mat"; public static string matVoidwardCrabBlack = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabBlack.mat"; public static string matVoidwardCrabBlue = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabBlue.mat"; public static string matVoidwardCrabEyes = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabEyes.mat"; public static string matVoidwardCrabEyesopt = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabEyes_opt.mat"; public static string matVoidwardCrabGold = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabGold.mat"; public static string matVoidwardCrabGreen = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabGreen.mat"; public static string matVoidwardCrabMouth = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabMouth.mat"; public static string matVoidWardCrabOverlay = "RoR2/DLC1/VoidWardCrab/matVoidWardCrabOverlay.mat"; public static string matVoidwardCrabPurple = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabPurple.mat"; public static string matVoidwardCrabRed = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabRed.mat"; public static string matVoidwardCrabWhite = "RoR2/DLC1/VoidWardCrab/matVoidwardCrabWhite.mat"; public static string matCoffee = "RoR2/DLC1/AttackSpeedAndMoveSpeed/matCoffee.mat"; public static string matBearVoid = "RoR2/DLC1/BearVoid/matBearVoid.mat"; public static string matBearVoidFluff = "RoR2/DLC1/BearVoid/matBearVoidFluff.mat"; public static string matBearVoidShield = "RoR2/DLC1/BearVoid/matBearVoidShield.mat"; public static string matBearVoidShieldStars = "RoR2/DLC1/BearVoid/matBearVoidShieldStars.mat"; public static string matTriTipVoid = "RoR2/DLC1/BleedOnHitVoid/matTriTipVoid.mat"; public static string matLightingLongVoid = "RoR2/DLC1/ChainLightningVoid/matLightingLongVoid.mat"; public static string matLightningVoid = "RoR2/DLC1/ChainLightningVoid/matLightningVoid.mat"; public static string matUkuleleVoid = "RoR2/DLC1/ChainLightningVoid/matUkuleleVoid.mat"; public static string matCloverVoid = "RoR2/DLC1/CloverVoid/matCloverVoid.mat"; public static string matCloverVoidEffect = "RoR2/DLC1/CloverVoid/matCloverVoidEffect.mat"; public static string matCloverVoidRing = "RoR2/DLC1/CloverVoid/matCloverVoidRing.mat"; public static string matLaserSight = "RoR2/DLC1/CritDamage/matLaserSight.mat"; public static string matLaserSightLaser = "RoR2/DLC1/CritDamage/matLaserSightLaser.mat"; public static string matCritGlassesVoid = "RoR2/DLC1/CritGlassesVoid/matCritGlassesVoid.mat"; public static string matDroneWeaponsPickup = "RoR2/DLC1/DroneWeapons/matDroneWeaponsPickup.mat"; public static string matBlackholeGalaxyElementalRing = "RoR2/DLC1/ElementalRingVoid/matBlackholeGalaxyElementalRing.mat"; public static string matBlackholeGalaxyElementalRingSmaller = "RoR2/DLC1/ElementalRingVoid/matBlackholeGalaxyElementalRingSmaller.mat"; public static string matVoidRing = "RoR2/DLC1/ElementalRingVoid/matVoidRing.mat"; public static string matVoidRingGlow = "RoR2/DLC1/ElementalRingVoid/matVoidRingGlow.mat"; public static string matVoidRingRunes = "RoR2/DLC1/ElementalRingVoid/matVoidRingRunes.mat"; public static string matFuelCellVoid = "RoR2/DLC1/EquipmentMagazineVoid/matFuelCellVoid.mat"; public static string matWilloWispVoid = "RoR2/DLC1/ExplodeOnDeathVoid/matWilloWispVoid.mat"; public static string matWilloWispVoidEye = "RoR2/DLC1/ExplodeOnDeathVoid/matWilloWispVoidEye.mat"; public static string matHippoVoid = "RoR2/DLC1/ExtraLifeVoid/matHippoVoid.mat"; public static string matHippoVoidEye = "RoR2/DLC1/ExtraLifeVoid/matHippoVoidEye.mat"; public static string matHippoVoidFX = "RoR2/DLC1/ExtraLifeVoid/matHippoVoidFX.mat"; public static string matDelicateWatch = "RoR2/DLC1/FragileDamageBonus/matDelicateWatch.mat"; public static string matDelicateWatchProc = "RoR2/DLC1/FragileDamageBonus/matDelicateWatchProc.mat"; public static string texShippingRequestForm = "RoR2/DLC1/FreeChest/texShippingRequestForm.mat"; public static string matGoldOrbTrail = "RoR2/DLC1/GoldOnHurt/matGoldOrbTrail.mat"; public static string matRollOfPennies = "RoR2/DLC1/GoldOnHurt/matRollOfPennies.mat"; public static string matLunarShoulderNature = "RoR2/DLC1/HalfAttackSpeedHalfCooldowns/matLunarShoulderNature.mat"; public static string matHalfSpeedDoubleHealth = "RoR2/DLC1/HalfSpeedDoubleHealth/matHalfSpeedDoubleHealth.mat"; public static string matLunarShoulderStone = "RoR2/DLC1/HalfSpeedDoubleHealth/matLunarShoulderStone.mat"; public static string matLunarShoulderStoneParticle = "RoR2/DLC1/HalfSpeedDoubleHealth/matLunarShoulderStoneParticle.mat"; public static string matHealingPotionCorkLiquid = "RoR2/DLC1/HealingPotion/matHealingPotionCorkLiquid.mat"; public static string matHealingPotionGlass = "RoR2/DLC1/HealingPotion/matHealingPotionGlass.mat"; public static string matHealingPotionGoo = "RoR2/DLC1/HealingPotion/matHealingPotionGoo.mat"; public static string matImmuneToDebuffSprite = "RoR2/DLC1/ImmuneToDebuff/matImmuneToDebuffSprite.mat"; public static string matRaincoat = "RoR2/DLC1/ImmuneToDebuff/matRaincoat.mat"; public static string matLunarSunProjectile = "RoR2/DLC1/LunarSun/matLunarSunProjectile.mat"; public static string matLunarSunProjectileBackdrop = "RoR2/DLC1/LunarSun/matLunarSunProjectileBackdrop.mat"; public static string matLunarSunProjectileTrail = "RoR2/DLC1/LunarSun/matLunarSunProjectileTrail.mat"; public static string matSunHeadNeck = "RoR2/DLC1/LunarSun/matSunHeadNeck.mat"; public static string matSunHeadPickup = "RoR2/DLC1/LunarSun/matSunHeadPickup.mat"; public static string matLunarWings = "RoR2/DLC1/LunarWings/matLunarWings.mat"; public static string matLunarWingsGlow = "RoR2/DLC1/LunarWings/matLunarWingsGlow.mat"; public static string matLunarWingsParticleStone = "RoR2/DLC1/LunarWings/matLunarWingsParticleStone.mat"; public static string matDefenseNucleus = "RoR2/DLC1/MinorConstructOnKill/matDefenseNucleus.mat"; public static string matEnergyShieldVoid = "RoR2/DLC1/MissileVoid/matEnergyShieldVoid.mat"; public static string matMissileVoid = "RoR2/DLC1/MissileVoid/matMissileVoid.mat"; public static string matMissileVoidFlare = "RoR2/DLC1/MissileVoid/matMissileVoidFlare.mat"; public static string matMissileVoidTrail = "RoR2/DLC1/MissileVoid/matMissileVoidTrail.mat"; public static string MissileLauncherVoid = "RoR2/DLC1/MissileVoid/MissileLauncherVoid.mat"; public static string matTrimSheetConstructionICBM = "RoR2/DLC1/MoreMissile/matTrimSheetConstructionICBM.mat"; public static string matGrappleHook = "RoR2/DLC1/MoveSpeedOnKill/matGrappleHook.mat"; public static string matGrappleHookFX = "RoR2/DLC1/MoveSpeedOnKill/matGrappleHookFX.mat"; public static string matMushroomVoid = "RoR2/DLC1/MushroomVoid/matMushroomVoid.mat"; public static string matMushroomVoidSpore = "RoR2/DLC1/MushroomVoid/matMushroomVoidSpore.mat"; public static string matOpalShield = "RoR2/DLC1/OutOfCombatArmor/matOpalShield.mat"; public static string matOpalShieldBillboard = "RoR2/DLC1/OutOfCombatArmor/matOpalShieldBillboard.mat"; public static string matOpalShieldConsumed = "RoR2/DLC1/OutOfCombatArmor/matOpalShieldConsumed.mat"; public static string matOpalShieldFlashConsumed = "RoR2/DLC1/OutOfCombatArmor/matOpalShieldFlashConsumed.mat"; public static string matOpalShieldScrolling = "RoR2/DLC1/OutOfCombatArmor/matOpalShieldScrolling.mat"; public static string matOddlyShapedOpal = "RoR2/DLC1/OutOfCombatArmor/matOddlyShapedOpal.mat"; public static string matScorpion = "RoR2/DLC1/PermanentDebuffOnHit/matScorpion.mat"; public static string matScorpionVFX = "RoR2/DLC1/PermanentDebuffOnHit/matScorpionVFX.mat"; public static string matShuriken = "RoR2/DLC1/PrimarySkillShuriken/matShuriken.mat"; public static string matShurikenAfterImage = "RoR2/DLC1/PrimarySkillShuriken/matShurikenAfterImage.mat"; public static string matShurikenAttack = "RoR2/DLC1/PrimarySkillShuriken/matShurikenAttack.mat"; public static string matShurikenOutline = "RoR2/DLC1/PrimarySkillShuriken/matShurikenOutline.mat"; public static string matShurikenSwing = "RoR2/DLC1/PrimarySkillShuriken/matShurikenSwing.mat"; public static string matShurikenTrail = "RoR2/DLC1/PrimarySkillShuriken/matShurikenTrail.mat"; public static string matBottledChaos = "RoR2/DLC1/RandomEquipmentTrigger/matBottledChaos.mat"; public static string matBottledChaosFXBottle = "RoR2/DLC1/RandomEquipmentTrigger/matBottledChaosFXBottle.mat"; public static string matBottledChaosTrail = "RoR2/DLC1/RandomEquipmentTrigger/matBottledChaosTrail.mat"; public static string matDomino = "RoR2/DLC1/RandomlyLunar/matDomino.mat"; public static string RegenerationScrapExplosionGoo = "RoR2/DLC1/RegeneratingScrap/RegenerationScrapExplosionGoo.mat"; public static string RegenerationScrapExplosionGooDot = "RoR2/DLC1/RegeneratingScrap/RegenerationScrapExplosionGooDot.mat"; public static string matRegeneratingScrapBox = "RoR2/DLC1/RegeneratingScrap/matRegeneratingScrapBox.mat"; public static string matRegeneratingScrapGoo = "RoR2/DLC1/RegeneratingScrap/matRegeneratingScrapGoo.mat"; public static string matScrapVoidCore = "RoR2/DLC1/ScrapVoid/matScrapVoidCore.mat"; public static string matScrapVoidCoreGlow = "RoR2/DLC1/ScrapVoid/matScrapVoidCoreGlow.mat"; public static string matScrapVoidCoreGreen = "RoR2/DLC1/ScrapVoid/matScrapVoidCoreGreen.mat"; public static string matScrapVoidCoreRed = "RoR2/DLC1/ScrapVoid/matScrapVoidCoreRed.mat"; public static string matScrapVoidCoreWhite = "RoR2/DLC1/ScrapVoid/matScrapVoidCoreWhite.mat"; public static string matScrapVoidMetal = "RoR2/DLC1/ScrapVoid/matScrapVoidMetal.mat"; public static string BaubleVoid = "RoR2/DLC1/SlowOnHitVoid/BaubleVoid.mat"; public static string BaubleVoidMetal = "RoR2/DLC1/SlowOnHitVoid/BaubleVoidMetal.mat"; public static string matGasTank = "RoR2/DLC1/StrengthenBurn/matGasTank.mat"; public static string matStrongerBurn = "RoR2/DLC1/StrengthenBurn/matStrongerBurn.mat"; public static string matKeyVoid = "RoR2/DLC1/TreasureCacheVoid/matKeyVoid.mat"; public static string matCacheVoidExplosion = "RoR2/DLC1/TreasureCacheVoid/matCacheVoidExplosion.mat"; public static string matLockboxVoidEgg = "RoR2/DLC1/TreasureCacheVoid/matLockboxVoidEgg.mat"; public static string matLockboxVoidRocks = "RoR2/DLC1/TreasureCacheVoid/matLockboxVoidRocks.mat"; public static string matSubThorax = "RoR2/DLC1/matSubThorax.mat"; public static string protoGrey1 = "RoR2/DLC1/protoGrey1.mat"; public static string protoGrey2 = "RoR2/DLC1/protoGrey2.mat"; public static string protoGrey3 = "RoR2/DLC1/protoGrey3.mat"; public static string protoWhite = "RoR2/DLC1/protoWhite.mat"; public static string FacingLeaves3unchanging = "RoR2/DLC1/ancientloft/FacingLeaves_3unchanging.mat"; public static string FrondsAL = "RoR2/DLC1/ancientloft/Fronds_AL.mat"; public static string FrondsITAL = "RoR2/DLC1/ancientloft/Fronds_ITAL.mat"; public static string Leaves2unchanging = "RoR2/DLC1/ancientloft/Leaves_2unchanging.mat"; public static string Leaves022 = "RoR2/DLC1/ancientloft/Leaves_0.mat"; public static string Leaves0opt5_Alt = "RoR2/DLC1/ancientloft/Leaves_0_opt.mat"; public static string matALwater = "RoR2/DLC1/ancientloft/matALwater.mat"; public static string matAncientLoftBoulder = "RoR2/DLC1/ancientloft/matAncientLoft_Boulder.mat"; public static string matAncientLoftBoulderopt = "RoR2/DLC1/ancientloft/matAncientLoft_Boulder_opt.mat"; public static string matAncientLoftCircleArchwayGreen = "RoR2/DLC1/ancientloft/matAncientLoft_CircleArchwayGreen.mat"; public static string matAncientLoftCircleArchwayGreenopt = "RoR2/DLC1/ancientloft/matAncientLoft_CircleArchwayGreen_opt.mat"; public static string matAncientLoftCloud = "RoR2/DLC1/ancientloft/matAncientLoft_Cloud.mat"; public static string matAncientLoftCloudopt = "RoR2/DLC1/ancientloft/matAncientLoft_Cloud_opt.mat"; public static string matAncientLoftCloudFloor = "RoR2/DLC1/ancientloft/matAncientLoft_CloudFloor.mat"; public static string matAncientLoftCloudFlooropt = "RoR2/DLC1/ancientloft/matAncientLoft_CloudFloor_opt.mat"; public static string matAncientLoftDimondPattern = "RoR2/DLC1/ancientloft/matAncientLoft_DimondPattern.mat"; public static string matAncientLoftDimondPatternopt = "RoR2/DLC1/ancientloft/matAncientLoft_DimondPattern_opt.mat"; public static string matAncientLoftDistantTemple = "RoR2/DLC1/ancientloft/matAncientLoft_DistantTemple.mat"; public static string matAncientLoftDistantTempleopt = "RoR2/DLC1/ancientloft/matAncientLoft_DistantTemple_opt.mat"; public static string matAncientLoftEnvParticle = "RoR2/DLC1/ancientloft/matAncientLoft_EnvParticle.mat"; public static string matAncientLoftEnvParticleopt = "RoR2/DLC1/ancientloft/matAncientLoft_EnvParticle_opt.mat"; public static string matAncientLoftFloor = "RoR2/DLC1/ancientloft/matAncientLoft_Floor.mat"; public static string matAncientLoftFlooropt = "RoR2/DLC1/ancientloft/matAncientLoft_Floor_opt.mat"; public static string matAncientLoftFoam = "RoR2/DLC1/ancientloft/matAncientLoft_Foam.mat"; public static string matAncientLoftLilyPad = "RoR2/DLC1/ancientloft/matAncientLoft_LilyPad.mat"; public static string matAncientLoftRim = "RoR2/DLC1/ancientloft/matAncientLoft_Rim.mat"; public static string matAncientLoftSplash = "RoR2/DLC1/ancientloft/matAncientLoft_Splash.mat"; public static string matAncientLoftStoneSurface = "RoR2/DLC1/ancientloft/matAncientLoft_StoneSurface.mat"; public static string matAncientLoftStoneSurfaceopt = "RoR2/DLC1/ancientloft/matAncientLoft_StoneSurface_opt.mat"; public static string matAncientLoftSun = "RoR2/DLC1/ancientloft/matAncientLoft_Sun.mat"; public static string matAncientLoftSunCloud = "RoR2/DLC1/ancientloft/matAncientLoft_SunCloud.mat"; public static string matAncientLoftSunCloudopt = "RoR2/DLC1/ancientloft/matAncientLoft_SunCloud_opt.mat"; public static string matAncientLoftTemple = "RoR2/DLC1/ancientloft/matAncientLoft_Temple.mat"; public static string matAncientLoftTempleopt = "RoR2/DLC1/ancientloft/matAncientLoft_Temple_opt.mat"; public static string matAncientLoftTempleDecal2 = "RoR2/DLC1/ancientloft/matAncientLoft_TempleDecal2.mat"; public static string matAncientLoftTempleDecal2opt = "RoR2/DLC1/ancientloft/matAncientLoft_TempleDecal2_opt.mat"; public static string matAncientLoftTempleDecal3 = "RoR2/DLC1/ancientloft/matAncientLoft_TempleDecal3.mat"; public static string matAncientLoftTempleDecal3opt = "RoR2/DLC1/ancientloft/matAncientLoft_TempleDecal3_opt.mat"; public static string matAncientLoftTempleProjected = "RoR2/DLC1/ancientloft/matAncientLoft_TempleProjected.mat"; public static string matAncientLoftTempleProjectedopt = "RoR2/DLC1/ancientloft/matAncientLoft_TempleProjected_opt.mat"; public static string matAncientLoftTerrain = "RoR2/DLC1/ancientloft/matAncientLoft_Terrain.mat"; public static string matAncientLoftTerrainopt = "RoR2/DLC1/ancientloft/matAncientLoft_Terrain_opt.mat"; public static string matAncientLoftTrail = "RoR2/DLC1/ancientloft/matAncientLoft_Trail.mat"; public static string matAncientLoftVine = "RoR2/DLC1/ancientloft/matAncientLoft_Vine.mat"; public static string matAncientLoftWallsBrickless = "RoR2/DLC1/ancientloft/matAncientLoft_Walls_Brickless.mat"; public static string matAncientLoftWater = "RoR2/DLC1/ancientloft/matAncientLoft_Water.mat"; public static string matAncientLoftWateropt = "RoR2/DLC1/ancientloft/matAncientLoft_Water_opt.mat"; public static string matAncientloftWaterfall = "RoR2/DLC1/ancientloft/matAncientloft_Waterfall.mat"; public static string matAncientloftWaterfallopt = "RoR2/DLC1/ancientloft/matAncientloft_Waterfall_opt.mat"; public static string matAncientLoftWaterfallDistortion = "RoR2/DLC1/ancientloft/matAncientLoft_WaterfallDistortion.mat"; public static string matAncientLoftDeepFog = "RoR2/DLC1/ancientloft/matAncientLoftDeepFog.mat"; public static string matAncientLoftDeepFogopt = "RoR2/DLC1/ancientloft/matAncientLoftDeepFog_opt.mat"; public static string matAncientLoftEndlessHole = "RoR2/DLC1/ancientloft/matAncientLoftEndlessHole.mat"; public static string matAncientLoftEndlessHoleopt = "RoR2/DLC1/ancientloft/matAncientLoftEndlessHole_opt.mat"; public static string matBazaarSeerAncientloft = "RoR2/DLC1/ancientloft/matBazaarSeerAncientloft.mat"; public static string matSkyboxAncientLoft = "RoR2/DLC1/ancientloft/matSkyboxAncientLoft.mat"; public static string matBazaarSeerVoidstage = "RoR2/DLC1/matBazaarSeerVoidstage.mat"; public static string matGauntletExitPortalGem = "RoR2/DLC1/gauntlets/matGauntletExitPortalGem.mat"; public static string mVoidRaidPortalBeams = "RoR2/DLC1/gauntlets/mVoidRaidPortalBeams.mat"; public static string mVoidRaidPortalCenter = "RoR2/DLC1/gauntlets/mVoidRaidPortalCenter.mat"; public static string mVoidRaidPortalCenterDistortion = "RoR2/DLC1/gauntlets/mVoidRaidPortalCenterDistortion.mat"; public static string mVoidRaidPortalChunkDistortion = "RoR2/DLC1/gauntlets/mVoidRaidPortalChunkDistortion.mat"; public static string mVoidRaidPortalEdge = "RoR2/DLC1/gauntlets/mVoidRaidPortalEdge.mat"; public static string mVoidRaidPortalEdgeDistortion = "RoR2/DLC1/gauntlets/mVoidRaidPortalEdgeDistortion.mat"; public static string matGTpebbleLight = "RoR2/DLC1/gauntlets/matGTpebbleLight.mat"; public static string matVoidGauntletWater = "RoR2/DLC1/gauntlets/matVoidGauntletWater.mat"; public static string matGauntletSkyboxSphereBrightTop = "RoR2/DLC1/gauntlets/matGauntletSkyboxSphere, Bright Top.mat"; public static string matGauntletSkyboxSphereScrollingCaustics = "RoR2/DLC1/gauntlets/matGauntletSkyboxSphere, Scrolling Caustics.mat"; public static string matGTVoidMetal = "RoR2/DLC1/gauntlets/matGTVoidMetal.mat"; public static string matGTVoidTerrain = "RoR2/DLC1/gauntlets/matGTVoidTerrain.mat"; public static string Leaves0AncientLoftInfiniteTower = "RoR2/DLC1/itancientloft/Leaves_0AncientLoftInfiniteTower.mat"; public static string Leaves0AncientLoftInfiniteToweropt = "RoR2/DLC1/itancientloft/Leaves_0AncientLoftInfiniteTower_opt.mat"; public static string FacingLeaves3unchangingInfiniteTower = "RoR2/DLC1/itancientloft/FacingLeaves_3unchangingInfiniteTower.mat"; public static string Leaves2unchangingInfiniteTower = "RoR2/DLC1/itancientloft/Leaves_2unchangingInfiniteTower.mat"; public static string matAncientLoftBoulderInfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_BoulderInfiniteTower.mat"; public static string matAncientLoftCircleArchwayGreenInfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_CircleArchwayGreenInfiniteTower.mat"; public static string matAncientLoftDimondPatternInfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_DimondPatternInfiniteTower.mat"; public static string matAncientLoftFloorInfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_FloorInfiniteTower.mat"; public static string matAncientLoftTempleDecal2InfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_TempleDecal2InfiniteTower.mat"; public static string matAncientLoftTempleDecal3InfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_TempleDecal3InfiniteTower.mat"; public static string matAncientLoftTempleInfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_TempleInfiniteTower.mat"; public static string matAncientLoftTempleProjectedInfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_TempleProjectedInfiniteTower.mat"; public static string matAncientLoftTerrainInfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_TerrainInfiniteTower.mat"; public static string matAncientLoftTrailInfiniteTower = "RoR2/DLC1/itancientloft/matAncientLoft_TrailInfiniteTower.mat"; public static string matBbRuinGlowy1InfiniteTower = "RoR2/DLC1/itancientloft/matBbRuinGlowy1InfiniteTower.mat"; public static string matBbRuinGlowyInfiniteTower = "RoR2/DLC1/itancientloft/matBbRuinGlowyInfiniteTower.mat"; public static string Leaves021_Alt = "RoR2/DLC1/itancientloft/Leaves_0.mat"; public static string Leaves0opt15_Alt = "RoR2/DLC1/itancientloft/Leaves_0_opt.mat"; public static string matDCBoulderInfiniteTower = "RoR2/DLC1/itdampcave/matDCBoulderInfiniteTower.mat"; public static string matDCHeatventInfiniteTower = "RoR2/DLC1/itdampcave/matDCHeatventInfiniteTower.mat"; public static string matDCPebbleInfiniteTower = "RoR2/DLC1/itdampcave/matDCPebbleInfiniteTower.mat"; public static string matDCSimpleGrassInfiniteTower = "RoR2/DLC1/itdampcave/matDCSimpleGrassInfiniteTower.mat"; public static string matDCStalagmiteInfiniteTower = "RoR2/DLC1/itdampcave/matDCStalagmiteInfiniteTower.mat"; public static string matDCTerrainFloorInfiniteTower = "RoR2/DLC1/itdampcave/matDCTerrainFloorInfiniteTower.mat"; public static string matDCTerrainGiantColumnsInfiniteTower = "RoR2/DLC1/itdampcave/matDCTerrainGiantColumnsInfiniteTower.mat"; public static string matDCTerrainSmallColumnInfiniteTower = "RoR2/DLC1/itdampcave/matDCTerrainSmallColumnInfiniteTower.mat"; public static string matDCTerrainWallsInfiniteTower = "RoR2/DLC1/itdampcave/matDCTerrainWallsInfiniteTower.mat"; public static string matTrimSheetLemurianMetalLightInfiniteTower = "RoR2/DLC1/itdampcave/matTrimSheetLemurianMetalLightInfiniteTower.mat"; public static string matTrimSheetLemurianRuinsHeavyInfiniteTower = "RoR2/DLC1/itdampcave/matTrimSheetLemurianRuinsHeavyInfiniteTower.mat"; public static string matTrimSheetLemurianRuinsInfiniteTower = "RoR2/DLC1/itdampcave/matTrimSheetLemurianRuinsInfiniteTower.mat"; public static string matTrimSheetLemurianRuinsLightInfiniteTower = "RoR2/DLC1/itdampcave/matTrimSheetLemurianRuinsLightInfiniteTower.mat"; public static string matFWGlacierChunkInfiniteTower = "RoR2/DLC1/itfrozenwall/matFWGlacierChunkInfiniteTower.mat"; public static string matFWIciclesInfiniteTower = "RoR2/DLC1/itfrozenwall/matFWIciclesInfiniteTower.mat"; public static string matFWSimpleGrassInfiniteTower = "RoR2/DLC1/itfrozenwall/matFWSimpleGrassInfiniteTower.mat"; public static string matFWSnowyIcePillarsInfiniteTower = "RoR2/DLC1/itfrozenwall/matFWSnowyIcePillarsInfiniteTower.mat"; public static string matFwTerrainCliffsInfiniteTower = "RoR2/DLC1/itfrozenwall/matFwTerrainCliffsInfiniteTower.mat"; public static string matFwTerrainDistantInfiniteTower = "RoR2/DLC1/itfrozenwall/matFwTerrainDistantInfiniteTower.mat"; public static string matFwTerrainFloorInfiniteTower = "RoR2/DLC1/itfrozenwall/matFwTerrainFloorInfiniteTower.mat"; public static string matGPGrassInfiniteTower = "RoR2/DLC1/itgolemplains/matGPGrassInfiniteTower.mat"; public static string matGPBoulderHeavyMossInfiniteTower = "RoR2/DLC1/itgolemplains/matGPBoulderHeavyMossInfiniteTower.mat"; public static string matGPBoulderMossyProjectedInfiniteTower = "RoR2/DLC1/itgolemplains/matGPBoulderMossyProjectedInfiniteTower.mat"; public static string matGPTerrainBlenderInfiniteTower = "RoR2/DLC1/itgolemplains/matGPTerrainBlenderInfiniteTower.mat"; public static string matGPTerrainHeavyMossInfiniteTower = "RoR2/DLC1/itgolemplains/matGPTerrainHeavyMossInfiniteTower.mat"; public static string matGPTerrainInfiniteTower = "RoR2/DLC1/itgolemplains/matGPTerrainInfiniteTower.mat"; public static string matTrimSheetMossyProjectedHugeInfiniteTower = "RoR2/DLC1/itgolemplains/matTrimSheetMossyProjectedHugeInfiniteTower.mat"; public static string matTrimSheetMossyRuinsProjectedHugeInfiniteTower = "RoR2/DLC1/itgolemplains/matTrimSheetMossyRuinsProjectedHugeInfiniteTower.mat"; public static string matTrimSheetMossyRuinsProjectedInfiniteTower = "RoR2/DLC1/itgolemplains/matTrimSheetMossyRuinsProjectedInfiniteTower.mat"; public static string matTrimSheetMossyRuinsProjectedLightInfiniteTower = "RoR2/DLC1/itgolemplains/matTrimSheetMossyRuinsProjectedLightInfiniteTower.mat"; public static string matEelSkeleton2InfiniteTower = "RoR2/DLC1/itgoolake/matEelSkeleton2InfiniteTower.mat"; public static string matEelSkeletonInfiniteTower = "RoR2/DLC1/itgoolake/matEelSkeletonInfiniteTower.mat"; public static string matGlFlagInfiniteTower = "RoR2/DLC1/itgoolake/matGlFlagInfiniteTower.mat"; public static string matGlFlagpoleInfiniteTower = "RoR2/DLC1/itgoolake/matGlFlagpoleInfiniteTower.mat"; public static string matGLRibbonInfiniteTower = "RoR2/DLC1/itgoolake/matGLRibbonInfiniteTower.mat"; public static string matGlSimpleGrassInfiniteTower = "RoR2/DLC1/itgoolake/matGlSimpleGrassInfiniteTower.mat"; public static string matGooLakeGrateInfiniteTower = "RoR2/DLC1/itgoolake/matGooLakeGrateInfiniteTower.mat"; public static string matGoolakeInfiniteTower = "RoR2/DLC1/itgoolake/matGoolakeInfiniteTower.mat"; public static string matGoolakeRocksInfiniteTower = "RoR2/DLC1/itgoolake/matGoolakeRocksInfiniteTower.mat"; public static string matGoolakeStoneStructsInfiniteTower = "RoR2/DLC1/itgoolake/matGoolakeStoneStructsInfiniteTower.mat"; public static string matGoolakeStoneTrimInfiniteTower = "RoR2/DLC1/itgoolake/matGoolakeStoneTrimInfiniteTower.mat"; public static string matGoolakeStoneTrimLightSandInfiniteTower = "RoR2/DLC1/itgoolake/matGoolakeStoneTrimLightSandInfiniteTower.mat"; public static string matGoolakeStoneTrimSandyInfiniteTower = "RoR2/DLC1/itgoolake/matGoolakeStoneTrimSandyInfiniteTower.mat"; public static string matGoolakeTerrainInfiniteTower = "RoR2/DLC1/itgoolake/matGoolakeTerrainInfiniteTower.mat"; public static string matGooWaterfallInfiniteTower = "RoR2/DLC1/itgoolake/matGooWaterfallInfiniteTower.mat"; public static string matITGooLakeGooOrbit = "RoR2/DLC1/itgoolake/matITGooLakeGooOrbit.mat"; public static string matConstellationAcrid = "RoR2/DLC1/itmoon/matConstellationAcrid.mat"; public static string matConstellationScav = "RoR2/DLC1/itmoon/matConstellationScav.mat"; public static string matConstellationShard = "RoR2/DLC1/itmoon/matConstellationShard.mat"; public static string matConstellationShellBlue = "RoR2/DLC1/itmoon/matConstellationShellBlue.mat"; public static string matConstellationShellPurple = "RoR2/DLC1/itmoon/matConstellationShellPurple.mat"; public static string matConstellationShellYellow = "RoR2/DLC1/itmoon/matConstellationShellYellow.mat"; public static string matConstellationStar = "RoR2/DLC1/itmoon/matConstellationStar.mat"; public static string matConstellationTrinkets = "RoR2/DLC1/itmoon/matConstellationTrinkets.mat"; public static string matSMRockBridgeInfiniteTower = "RoR2/DLC1/itskymeadow/matSMRockBridgeInfiniteTower.mat"; public static string matSMRockInfiniteTower = "RoR2/DLC1/itskymeadow/matSMRockInfiniteTower.mat"; public static string matSMSpikeBridgeInfinitetower = "RoR2/DLC1/itskymeadow/matSMSpikeBridgeInfinitetower.mat"; public static string matSMTerrainInfiniteTower = "RoR2/DLC1/itskymeadow/matSMTerrainInfiniteTower.mat"; public static string matSMVineInfiniteTower = "RoR2/DLC1/itskymeadow/matSMVineInfiniteTower.mat"; public static string matTrimSheetMeadowRuinsProjectedHeavyInfiniteTower = "RoR2/DLC1/itskymeadow/matTrimSheetMeadowRuinsProjectedHeavyInfiniteTower.mat"; public static string matTrimSheetMeadowRuinsProjectedInfiniteTower = "RoR2/DLC1/itskymeadow/matTrimSheetMeadowRuinsProjectedInfiniteTower.mat"; public static string Fronds0LOD013 = "RoR2/DLC1/itskymeadow/Fronds_0_LOD0.mat"; public static string Fronds0LOD0opt19 = "RoR2/DLC1/itskymeadow/Fronds_0_LOD0_opt.mat"; public static string BillboardDuoInfiniteTower = "RoR2/DLC1/itskymeadow/Billboard, DuoInfiniteTower.mat"; public static string BillboardInfiniteTower = "RoR2/DLC1/itskymeadow/BillboardInfiniteTower.mat"; public static string BranchesInfiniteTower0LOD0 = "RoR2/DLC1/itskymeadow/BranchesInfiniteTower_0_LOD0.mat"; public static string FrondsInfiniteTower1LOD0 = "RoR2/DLC1/itskymeadow/FrondsInfiniteTower_1_LOD0.mat"; public static string FacingLeavesInfiniteTower1LOD0 = "RoR2/DLC1/itskymeadow/FacingLeavesInfiniteTower_1_LOD0.mat"; public static string FacingLeavesInfiniteTower1LOD0opt = "RoR2/DLC1/itskymeadow/FacingLeavesInfiniteTower_1_LOD0_opt.mat"; public static string LeavesInfiniteTower0LOD0 = "RoR2/DLC1/itskymeadow/LeavesInfiniteTower_0_LOD0.mat"; public static string LeavesInfiniteTower0LOD0opt = "RoR2/DLC1/itskymeadow/LeavesInfiniteTower_0_LOD0_opt.mat"; public static string matChestPromoRailGunner = "RoR2/DLC1/matChestPromoRailGunner.mat"; public static string matDarknessFog = "RoR2/DLC1/snowyforest/matDarknessFog.mat"; public static string matDarknessFogopt = "RoR2/DLC1/snowyforest/matDarknessFog_opt.mat"; public static string matSFAqueduct = "RoR2/DLC1/snowyforest/matSFAqueduct.mat"; public static string matSFAqueductopt = "RoR2/DLC1/snowyforest/matSFAqueduct_opt.mat"; public static string matSFAurora = "RoR2/DLC1/snowyforest/matSFAurora.mat"; public static string matSFAuroraopt = "RoR2/DLC1/snowyforest/matSFAurora_opt.mat"; public static string matSFBlockades = "RoR2/DLC1/snowyforest/matSFBlockades.mat"; public static string matSFBlockadesopt = "RoR2/DLC1/snowyforest/matSFBlockades_opt.mat"; public static string matSFBox = "RoR2/DLC1/snowyforest/matSFBox.mat"; public static string matSFBoxopt = "RoR2/DLC1/snowyforest/matSFBox_opt.mat"; public static string matSFBranch = "RoR2/DLC1/snowyforest/matSFBranch.mat"; public static string matSFBush = "RoR2/DLC1/snowyforest/matSFBush.mat"; public static string matSFCausticsGenerator = "RoR2/DLC1/snowyforest/matSFCausticsGenerator.mat"; public static string matSFCentertree = "RoR2/DLC1/snowyforest/matSFCentertree.mat"; public static string matSFCentertreeopt = "RoR2/DLC1/snowyforest/matSFCentertree_opt.mat"; public static string matSFDistantGround = "RoR2/DLC1/snowyforest/matSFDistantGround.mat"; public static string matSFDistantGroundopt = "RoR2/DLC1/snowyforest/matSFDistantGround_opt.mat"; public static string matSFFireStaticYellowLarge = "RoR2/DLC1/snowyforest/matSFFireStaticYellowLarge.mat"; public static string matSFGeyser = "RoR2/DLC1/snowyforest/matSFGeyser.mat"; public static string matSFGodray = "RoR2/DLC1/snowyforest/matSFGodray.mat"; public static string matSFGodrayopt = "RoR2/DLC1/snowyforest/matSFGodray_opt.mat"; public static string matSFGodrayParticles = "RoR2/DLC1/snowyforest/matSFGodrayParticles.mat"; public static string matSFGrass = "RoR2/DLC1/snowyforest/matSFGrass.mat"; public static string matSFGround = "RoR2/DLC1/snowyforest/matSFGround.mat"; public static string matSFGroundopt = "RoR2/DLC1/snowyforest/matSFGround_opt.mat"; public static string matSFIce = "RoR2/DLC1/snowyforest/matSFIce.mat"; public static string matSFIceopt = "RoR2/DLC1/snowyforest/matSFIce_opt.mat"; public static string matSFLeaves = "RoR2/DLC1/snowyforest/matSFLeaves.mat"; public static string matSFPortalCard = "RoR2/DLC1/snowyforest/matSFPortalCard.mat"; public static string matSFPortalCardopt = "RoR2/DLC1/snowyforest/matSFPortalCard_opt.mat"; public static string matSFSap = "RoR2/DLC1/snowyforest/matSFSap.mat"; public static string matSFSapopt = "RoR2/DLC1/snowyforest/matSFSap_opt.mat"; public static string matSFSnowRocks = "RoR2/DLC1/snowyforest/matSFSnowRocks.mat"; public static string matSFSnowRocksopt = "RoR2/DLC1/snowyforest/matSFSnowRocks_opt.mat"; public static string matSFSnowTrees = "RoR2/DLC1/snowyforest/matSFSnowTrees.mat"; public static string matSFSnowTreesopt = "RoR2/DLC1/snowyforest/matSFSnowTrees_opt.mat"; public static string matSFTreering = "RoR2/DLC1/snowyforest/matSFTreering.mat"; public static string matSFTreeringopt = "RoR2/DLC1/snowyforest/matSFTreering_opt.mat"; public static string matSnowyForestHumanStonework = "RoR2/DLC1/snowyforest/matSnowyForestHumanStonework.mat"; public static string matSnowyForestHumanStoneworkopt = "RoR2/DLC1/snowyforest/matSnowyForestHumanStonework_opt.mat"; public static string matTrimSheetSnowyRuinsProjectedHeavy = "RoR2/DLC1/snowyforest/matTrimSheetSnowyRuinsProjectedHeavy.mat"; public static string matTrimSheetSnowyRuinsProjectedHeavyopt = "RoR2/DLC1/snowyforest/matTrimSheetSnowyRuinsProjectedHeavy_opt.mat"; public static string matBazaarSeerSnowyforest = "RoR2/DLC1/snowyforest/matBazaarSeerSnowyforest.mat"; public static string matSkyboxSF = "RoR2/DLC1/snowyforest/matSkyboxSF.mat"; public static string matRescueshipBrokenSnowy = "RoR2/DLC1/snowyforest/matRescueshipBrokenSnowy.mat"; public static string matRescueshipBrokenSnowyopt = "RoR2/DLC1/snowyforest/matRescueshipBrokenSnowy_opt.mat"; public static string matSPBgWater = "RoR2/DLC1/sulfurpools/matSPBgWater.mat"; public static string matSPBgWateropt = "RoR2/DLC1/sulfurpools/matSPBgWater_opt.mat"; public static string matSPCloseLowFog = "RoR2/DLC1/sulfurpools/matSPCloseLowFog.mat"; public static string matSPCloseLowFogopt = "RoR2/DLC1/sulfurpools/matSPCloseLowFog_opt.mat"; public static string matSPCoralEmi = "RoR2/DLC1/sulfurpools/matSPCoralEmi.mat"; public static string matSPCoralEmiopt = "RoR2/DLC1/sulfurpools/matSPCoralEmi_opt.mat"; public static string matSPCoralString = "RoR2/DLC1/sulfurpools/matSPCoralString.mat"; public static string matSPCoralStringLightopt = "RoR2/DLC1/sulfurpools/matSPCoralStringLight_opt.mat"; public static string matSPCrystal = "RoR2/DLC1/sulfurpools/matSPCrystal.mat"; public static string matSPCrystalopt = "RoR2/DLC1/sulfurpools/matSPCrystal_opt.mat"; public static string matSPDistantLowFog = "RoR2/DLC1/sulfurpools/matSPDistantLowFog.mat"; public static string matSPDistantLowFogopt = "RoR2/DLC1/sulfurpools/matSPDistantLowFog_opt.mat"; public static string matSPDistantMountainClouds = "RoR2/DLC1/sulfurpools/matSPDistantMountainClouds.mat"; public static string matSPDistantMountainCloudsopt = "RoR2/DLC1/sulfurpools/matSPDistantMountainClouds_opt.mat"; public static string matSPDistantVolcanoCloud = "RoR2/DLC1/sulfurpools/matSPDistantVolcanoCloud.mat"; public static string matSPDistantVolcanoCloudopt = "RoR2/DLC1/sulfurpools/matSPDistantVolcanoCloud_opt.mat"; public static string matSPEnvPoolSmoke = "RoR2/DLC1/sulfurpools/matSPEnvPoolSmoke.mat"; public static string matSPEnvPoolSmokeopt = "RoR2/DLC1/sulfurpools/matSPEnvPoolSmoke_opt.mat"; public static string matSPEnvSmoke = "RoR2/DLC1/sulfurpools/matSPEnvSmoke.mat"; public static string matSPEnvSmokeopt = "RoR2/DLC1/sulfurpools/matSPEnvSmoke_opt.mat"; public static string matSPEnvSmokeScreen = "RoR2/DLC1/sulfurpools/matSPEnvSmokeScreen.mat"; public static string matSPEnvSmokeScreenopt = "RoR2/DLC1/sulfurpools/matSPEnvSmokeScreen_opt.mat"; public static string matSPGrass = "RoR2/DLC1/sulfurpools/matSPGrass.mat"; public static string matSPGrassopt = "RoR2/DLC1/sulfurpools/matSPGrass_opt.mat"; public static string matSPGrassEmi = "RoR2/DLC1/sulfurpools/matSPGrassEmi.mat"; public static string matSPGrassEmiopt = "RoR2/DLC1/sulfurpools/matSPGrassEmi_opt.mat"; public static string matSPGround = "RoR2/DLC1/sulfurpools/matSPGround.mat"; public static string matSPGroundopt = "RoR2/DLC1/sulfurpools/matSPGround_opt.mat"; public static string matSPMoss = "RoR2/DLC1/sulfurpools/matSPMoss.mat"; public static string matSPMountain = "RoR2/DLC1/sulfurpools/matSPMountain.mat"; public static string matSPMountainopt = "RoR2/DLC1/sulfurpools/matSPMountain_opt.mat"; public static string matSPMountainDistant = "RoR2/DLC1/sulfurpools/matSPMountainDistant.mat"; public static string matSPMountainDistantopt = "RoR2/DLC1/sulfurpools/matSPMountainDistant_opt.mat"; public static string matSPPortalCard = "RoR2/DLC1/sulfurpools/matSPPortalCard.mat"; public static string matSPPortalCardopt = "RoR2/DLC1/sulfurpools/matSPPortalCard_opt.mat"; public static string matSPProps = "RoR2/DLC1/sulfurpools/matSPProps.mat"; public static string matSPPropsopt = "RoR2/DLC1/sulfurpools/matSPProps_opt.mat"; public static string matSPSphere = "RoR2/DLC1/sulfurpools/matSPSphere.mat"; public static string matSPSphereopt = "RoR2/DLC1/sulfurpools/matSPSphere_opt.mat"; public static string matSPTallGrass = "RoR2/DLC1/sulfurpools/matSPTallGrass.mat"; public static string matSPTallGrassopt = "RoR2/DLC1/sulfurpools/matSPTallGrass_opt.mat"; public static string matSPVine = "RoR2/DLC1/sulfurpools/matSPVine.mat"; public static string matSPVineopt = "RoR2/DLC1/sulfurpools/matSPVine_opt.mat"; public static string matSPWaterBlue = "RoR2/DLC1/sulfurpools/matSPWaterBlue.mat"; public static string matSPWaterBlueopt = "RoR2/DLC1/sulfurpools/matSPWaterBlue_opt.mat"; public static string matSPWaterGreen = "RoR2/DLC1/sulfurpools/matSPWaterGreen.mat"; public static string matSPWaterGreenopt = "RoR2/DLC1/sulfurpools/matSPWaterGreen_opt.mat"; public static string matSPWaterRed = "RoR2/DLC1/sulfurpools/matSPWaterRed.mat"; public static string matSPWaterRedopt = "RoR2/DLC1/sulfurpools/matSPWaterRed_opt.mat"; public static string matSPWaterYellow = "RoR2/DLC1/sulfurpools/matSPWaterYellow.mat"; public static string matSPWaterYellowopt = "RoR2/DLC1/sulfurpools/matSPWaterYellow_opt.mat"; public static string SFStinkyFlies = "RoR2/DLC1/sulfurpools/SFStinkyFlies.mat"; public static string SFStinkyFliesopt = "RoR2/DLC1/sulfurpools/SFStinkyFlies_opt.mat"; public static string matBazaarSeerSulfurPools = "RoR2/DLC1/sulfurpools/matBazaarSeerSulfurPools.mat"; public static string matSkyboxSP = "RoR2/DLC1/sulfurpools/matSkyboxSP.mat"; public static string matCapturedPlantOrb = "RoR2/DLC1/voidoutro/matCapturedPlantOrb.mat"; public static string matCapturedPlantOrbInner = "RoR2/DLC1/voidoutro/matCapturedPlantOrbInner.mat"; public static string matCapturedPlantPlant = "RoR2/DLC1/voidoutro/matCapturedPlantPlant.mat"; public static string matCrispyEdgeRing = "RoR2/DLC1/voidoutro/matCrispyEdgeRing.mat"; public static string matNullifierDummy = "RoR2/DLC1/voidoutro/matNullifierDummy.mat"; public static string matVoidMegaCrabDummy = "RoR2/DLC1/voidoutro/matVoidMegaCrabDummy.mat"; public static string matVoidRaidCrabEyeDeactivated = "RoR2/DLC1/voidoutro/matVoidRaidCrabEyeDeactivated.mat"; public static string matFireStaticVoidOutroEyePurple = "RoR2/DLC1/voidoutro/matFireStaticVoidOutroEyePurple.mat"; public static string matVoidRaidCrabEyeBlue = "RoR2/DLC1/voidoutro/matVoidRaidCrabEyeBlue.mat"; public static string matVoidRaidCrabEyeOverlay1BLUE = "RoR2/DLC1/voidoutro/matVoidRaidCrabEyeOverlay1BLUE.mat"; public static string matVoidRaidCrabEyeOverlay2BLUE = "RoR2/DLC1/voidoutro/matVoidRaidCrabEyeOverlay2BLUE.mat"; public static string matVoidRaidCrabEyeOverlay3BLUE = "RoR2/DLC1/voidoutro/matVoidRaidCrabEyeOverlay3BLUE.mat"; public static string matVoidRaidCrabEyeBlueOutroLOD = "RoR2/DLC1/voidoutro/matVoidRaidCrabEyeBlueOutroLOD.mat"; public static string matMoonVoidEndFresnel = "RoR2/DLC1/voidoutro/matMoonVoidEndFresnel.mat"; public static string matMoonVoidEndMaterial = "RoR2/DLC1/voidoutro/matMoonVoidEndMaterial.mat"; public static string matVoidOutroEggMetal = "RoR2/DLC1/voidoutro/matVoidOutroEggMetal.mat"; public static string matVoidOutroEggshell = "RoR2/DLC1/voidoutro/matVoidOutroEggshell.mat"; public static string matVoidOutroGiantField = "RoR2/DLC1/voidoutro/matVoidOutroGiantField.mat"; public static string matVoidRaidCrabEggRim = "RoR2/DLC1/voidoutro/matVoidRaidCrabEggRim.mat"; public static string matAncientLoftTempleRaidBoss = "RoR2/DLC1/voidraid/matAncientLoft_TempleRaidBoss.mat"; public static string matAncientLoftTerrainRaidBoss = "RoR2/DLC1/voidraid/matAncientLoft_TerrainRaidBoss.mat"; public static string matDCSkyboxVoidRaid = "RoR2/DLC1/voidraid/matDCSkyboxVoidRaid.mat"; public static string matDCTerrainWallsRaidBoss = "RoR2/DLC1/voidraid/matDCTerrainWallsRaidBoss.mat"; public static string matVoidRaidDCAsteroid = "RoR2/DLC1/voidraid/matVoidRaidDCAsteroid.mat"; public static string matGPTerrainHeavyMossRaid = "RoR2/DLC1/voidraid/matGPTerrainHeavyMossRaid.mat"; public static string matGPTerrainRaidBoss = "RoR2/DLC1/voidraid/matGPTerrainRaidBoss.mat"; public static string matGPTerrainRaidBossMode2 = "RoR2/DLC1/voidraid/matGPTerrainRaidBossMode2.mat"; public static string matGPWaterVoidRaid = "RoR2/DLC1/voidraid/matGPWaterVoidRaid.mat"; public static string matRaidVoidGPAsteroidInner = "RoR2/DLC1/voidraid/matRaidVoidGPAsteroidInner.mat"; public static string matRaidVoidGPAsteroidOuter = "RoR2/DLC1/voidraid/matRaidVoidGPAsteroidOuter.mat"; public static string matVoidMetalTrimGrassyVertexColorsOnlyRaidBoss = "RoR2/DLC1/voidraid/matVoidMetalTrimGrassyVertexColorsOnlyRaidBoss.mat"; public static string matRaidCenterGlowSwirl = "RoR2/DLC1/voidraid/matRaidCenterGlowSwirl.mat"; public static string matRaidCenterSwirl1 = "RoR2/DLC1/voidraid/matRaidCenterSwirl1.mat"; public static string matRaidCenterSwirl2 = "RoR2/DLC1/voidraid/matRaidCenterSwirl2.mat"; public static string matRaidCenterSwirl3 = "RoR2/DLC1/voidraid/matRaidCenterSwirl3.mat"; public static string mat2DPlanetBase = "RoR2/DLC1/voidraid/mat2DPlanetBase.mat"; public static string mat2DPlanetEarth = "RoR2/DLC1/voidraid/mat2DPlanetEarth.mat"; public static string mat2DPlanetEgg = "RoR2/DLC1/voidraid/mat2DPlanetEgg.mat"; public static string mat2DPlanetFrostbite = "RoR2/DLC1/voidraid/mat2DPlanetFrostbite.mat"; public static string mat2DPlanetFrozen = "RoR2/DLC1/voidraid/mat2DPlanetFrozen.mat"; public static string mat2DPlanetGreyStreak = "RoR2/DLC1/voidraid/mat2DPlanetGreyStreak.mat"; public static string mat2DPlanetMoon = "RoR2/DLC1/voidraid/mat2DPlanetMoon.mat"; public static string mat2DPlanetPurpleMoon = "RoR2/DLC1/voidraid/mat2DPlanetPurpleMoon.mat"; public static string mat2DPlanetRings = "RoR2/DLC1/voidraid/mat2DPlanetRings.mat"; public static string mat2DPlanetSecretMars = "RoR2/DLC1/voidraid/mat2DPlanetSecretMars.mat"; public static string mat2DPlanetStar = "RoR2/DLC1/voidraid/mat2DPlanetStar.mat"; public static string mat2DPlanetStretchedEarth = "RoR2/DLC1/voidraid/mat2DPlanetStretchedEarth.mat"; public static string mat2DPlanetZ = "RoR2/DLC1/voidraid/mat2DPlanetZ.mat"; public static string matVoidRaidAsteroidsSheet = "RoR2/DLC1/voidraid/matVoidRaidAsteroidsSheet.mat"; public static string matVoidRaidPlanetOpaqueBase = "RoR2/DLC1/voidraid/matVoidRaidPlanetOpaqueBase.mat"; public static string matVoidRaidPlanetSharedShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetSharedShell.mat"; public static string matVoidRaid2DPlanets = "RoR2/DLC1/voidraid/matVoidRaid2DPlanets.mat"; public static string matVoidRaid2DPlanetTethers = "RoR2/DLC1/voidraid/matVoidRaid2DPlanetTethers.mat"; public static string matVoidRaidPlanetAcid = "RoR2/DLC1/voidraid/matVoidRaidPlanetAcid.mat"; public static string matVoidRaidPlanetAcidFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetAcidFX.mat"; public static string matVoidRaidPlanetAcidRing = "RoR2/DLC1/voidraid/matVoidRaidPlanetAcidRing.mat"; public static string matVoidRaidPlanetAcidShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetAcidShell.mat"; public static string matVoidRaidPlanetOceanic = "RoR2/DLC1/voidraid/matVoidRaidPlanetOceanic.mat"; public static string matVoidRaidPlanetOceanicFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetOceanicFX.mat"; public static string matVoidRaidPlanetOceanicShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetOceanicShell.mat"; public static string matVoidRaidPlanetBlueMarble = "RoR2/DLC1/voidraid/matVoidRaidPlanetBlueMarble.mat"; public static string matVoidRaidPlanetBlueMarbleFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetBlueMarbleFX.mat"; public static string matVoidRaidPlanetBlueMarbleShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetBlueMarbleShell.mat"; public static string matVoidRaidPlanetEvilCrater = "RoR2/DLC1/voidraid/matVoidRaidPlanetEvilCrater.mat"; public static string matVoidRaidPlanetEvilCraterFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetEvilCraterFX.mat"; public static string matVoidRaidPlanetEvilCraterShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetEvilCraterShell.mat"; public static string matVoidRaidPlanetGreenMarble = "RoR2/DLC1/voidraid/matVoidRaidPlanetGreenMarble.mat"; public static string matVoidRaidPlanetGreenMarbleFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetGreenMarbleFX.mat"; public static string matVoidRaidPlanetGreenMarbleShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetGreenMarbleShell.mat"; public static string matVoidRaidPlanetMars = "RoR2/DLC1/voidraid/matVoidRaidPlanetMars.mat"; public static string matVoidRaidPlanetMarsFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetMarsFX.mat"; public static string matVoidRaidPlanetMarsRing = "RoR2/DLC1/voidraid/matVoidRaidPlanetMarsRing.mat"; public static string matVoidRaidPlanetMarsShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetMarsShell.mat"; public static string matVoidRaidPlanetPinkVomit = "RoR2/DLC1/voidraid/matVoidRaidPlanetPinkVomit.mat"; public static string matVoidRaidPlanetPinkVomitFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetPinkVomitFX.mat"; public static string matVoidRaidPlanetPinkVomitShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetPinkVomitShell.mat"; public static string matVoidRaidPlanetPurpleCrater = "RoR2/DLC1/voidraid/matVoidRaidPlanetPurpleCrater.mat"; public static string matVoidRaidPlanetPurpleCraterFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetPurpleCraterFX.mat"; public static string matVoidRaidPlanetPurpleCraterMoon = "RoR2/DLC1/voidraid/matVoidRaidPlanetPurpleCraterMoon.mat"; public static string matVoidRaidPlanetPurpleCraterMoonShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetPurpleCraterMoonShell.mat"; public static string matVoidRaidPlanetPurpleCraterShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetPurpleCraterShell.mat"; public static string matVoidRaidPlanetPurpleWave = "RoR2/DLC1/voidraid/matVoidRaidPlanetPurpleWave.mat"; public static string matVoidRaidPlanetPurpleWaveFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetPurpleWaveFX.mat"; public static string matVoidRaidPlanetPurpleWaveShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetPurpleWaveShell.mat"; public static string matVoidRaidPlanetSmallBlue = "RoR2/DLC1/voidraid/matVoidRaidPlanetSmallBlue.mat"; public static string matVoidRaidPlanetSmallBlueFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetSmallBlueFX.mat"; public static string matVoidRaidPlanetSmallBlueShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetSmallBlueShell.mat"; public static string matVoidRaidPlanetVomitWave = "RoR2/DLC1/voidraid/matVoidRaidPlanetVomitWave.mat"; public static string matVoidRaidPlanetVomitWaveFX = "RoR2/DLC1/voidraid/matVoidRaidPlanetVomitWaveFX.mat"; public static string matVoidRaidPlanetVomitWaveShell = "RoR2/DLC1/voidraid/matVoidRaidPlanetVomitWaveShell.mat"; public static string matBbTerrainVoidRaid = "RoR2/DLC1/voidraid/matBbTerrainVoidRaid.mat"; public static string matVoidWaterDiorama = "RoR2/DLC1/voidraid/matVoidWaterDiorama.mat"; public static string matVoidRaidTerrain = "RoR2/DLC1/voidraid/matVoidRaidTerrain.mat"; public static string Leaves015 = "RoR2/DLC1/voidraid/Leaves_0.mat"; public static string Leaves0opt12 = "RoR2/DLC1/voidraid/Leaves_0_opt.mat"; public static string matRaidVoidDecalLarge = "RoR2/DLC1/voidraid/matRaidVoidDecalLarge.mat"; public static string matRaidVoidDecalSmall = "RoR2/DLC1/voidraid/matRaidVoidDecalSmall.mat"; public static string matShootingStarTrail = "RoR2/DLC1/voidraid/matShootingStarTrail.mat"; public static string matVoidraidCameraDustBig = "RoR2/DLC1/voidraid/matVoidraidCameraDustBig.mat"; public static string matVoidraidRain = "RoR2/DLC1/voidraid/matVoidraidRain.mat"; public static string matVoidRaidstageSkybox1 = "RoR2/DLC1/voidraid/matVoidRaidstageSkybox1.mat"; public static string matVoidRaidstageSkybox2 = "RoR2/DLC1/voidraid/matVoidRaidstageSkybox2.mat"; public static string matVoidRaidstageSkyboxLightning = "RoR2/DLC1/voidraid/matVoidRaidstageSkyboxLightning.mat"; public static string matVoidRaidstageSkyboxPlanets1 = "RoR2/DLC1/voidraid/matVoidRaidstageSkyboxPlanets1.mat"; public static string matVoidRaidstageSkyboxPlanets2 = "RoR2/DLC1/voidraid/matVoidRaidstageSkyboxPlanets2.mat"; public static string matVoidRaidstageSkyboxStarry1 = "RoR2/DLC1/voidraid/matVoidRaidstageSkyboxStarry1.mat"; public static string matVoidRaidstageSkyboxStarry1Sparse = "RoR2/DLC1/voidraid/matVoidRaidstageSkyboxStarry1Sparse.mat"; public static string matVoidRaidstageSkyboxStarry2 = "RoR2/DLC1/voidraid/matVoidRaidstageSkyboxStarry2.mat"; public static string matVoidRaidstageSkyboxStarry3 = "RoR2/DLC1/voidraid/matVoidRaidstageSkyboxStarry3.mat"; public static string matVoidStageDustHuge1 = "RoR2/DLC1/voidraid/matVoidStageDustHuge 1.mat"; public static string matSkyboxVoid = "RoR2/DLC1/voidstage/matSkyboxVoid.mat"; public static string matSkyboxVoidStage = "RoR2/DLC1/voidstage/matSkyboxVoidStage.mat"; public static string matVoidCurrent = "RoR2/DLC1/voidstage/matVoidCurrent.mat"; public static string matVoidCurrentopt = "RoR2/DLC1/voidstage/matVoidCurrent_opt.mat"; public static string matVoidStageDarkSun = "RoR2/DLC1/voidstage/matVoidStageDarkSun.mat"; public static string matVoidStageDarkSunBackdrop = "RoR2/DLC1/voidstage/matVoidStageDarkSunBackdrop.mat"; public static string matVoidStageDarkSunSucc = "RoR2/DLC1/voidstage/matVoidStageDarkSunSucc.mat"; public static string matVoidStageDarkSunSuccopt = "RoR2/DLC1/voidstage/matVoidStageDarkSunSucc_opt.mat"; public static string matVoidStageDustHuge = "RoR2/DLC1/voidstage/matVoidStageDustHuge.mat"; public static string matVoidStageDustHugeopt = "RoR2/DLC1/voidstage/matVoidStageDustHuge_opt.mat"; public static string matVoidStageFogFloor = "RoR2/DLC1/voidstage/matVoidStageFogFloor.mat"; public static string matVoidStageLowFog = "RoR2/DLC1/voidstage/matVoidStageLowFog.mat"; public static string matVoidStageParticle = "RoR2/DLC1/voidstage/matVoidStageParticle.mat"; public static string matVoidStageParticleopt = "RoR2/DLC1/voidstage/matVoidStageParticle_opt.mat"; public static string matVoidStageSkyboxSphereBrightTop = "RoR2/DLC1/voidstage/matVoidStageSkyboxSphere, Bright Top.mat"; public static string matVoidStageSkyboxSphereBrightTopopt = "RoR2/DLC1/voidstage/matVoidStageSkyboxSphere, Bright Top_opt.mat"; public static string matVoidStageSkyboxSphereScrollingCaustics = "RoR2/DLC1/voidstage/matVoidStageSkyboxSphere, Scrolling Caustics.mat"; public static string matVoidStageSkyboxSphereScrollingCausticsopt = "RoR2/DLC1/voidstage/matVoidStageSkyboxSphere, Scrolling Caustics_opt.mat"; public static string matVoidAsteroid = "RoR2/DLC1/voidstage/matVoidAsteroid.mat"; public static string matVoidAsteroidopt = "RoR2/DLC1/voidstage/matVoidAsteroid_opt.mat"; public static string matVoidBlackSunMoon = "RoR2/DLC1/voidstage/matVoidBlackSunMoon.mat"; public static string matVoidBoostPadFX = "RoR2/DLC1/voidstage/matVoidBoostPadFX.mat"; public static string matVoidBoostPadFXopt = "RoR2/DLC1/voidstage/matVoidBoostPadFX_opt.mat"; public static string matVoidBoostPath = "RoR2/DLC1/voidstage/matVoidBoostPath.mat"; public static string matVoidBoostPathopt = "RoR2/DLC1/voidstage/matVoidBoostPath_opt.mat"; public static string matVoidBubble = "RoR2/DLC1/voidstage/matVoidBubble.mat"; public static string matVoidBubbleBase = "RoR2/DLC1/voidstage/matVoidBubbleBase.mat"; public static string matVoidBubbleBaseopt = "RoR2/DLC1/voidstage/matVoidBubbleBase_opt.mat"; public static string matVoidCoralPlatformMagenta = "RoR2/DLC1/voidstage/matVoidCoralPlatformMagenta.mat"; public static string matVoidCoralPlatformMagentaopt = "RoR2/DLC1/voidstage/matVoidCoralPlatformMagenta_opt.mat"; public static string matVoidCoralPlatformOrange = "RoR2/DLC1/voidstage/matVoidCoralPlatformOrange.mat"; public static string matVoidCoralPlatformOrangeopt = "RoR2/DLC1/voidstage/matVoidCoralPlatformOrange_opt.mat"; public static string matVoidCoralPlatformPurple = "RoR2/DLC1/voidstage/matVoidCoralPlatformPurple.mat"; public static string matVoidCoralPlatformPurpleopt = "RoR2/DLC1/voidstage/matVoidCoralPlatformPurple_opt.mat"; public static string matVoidCoralPlatformRed = "RoR2/DLC1/voidstage/matVoidCoralPlatformRed.mat"; public static string matVoidCoralPlatformRedopt = "RoR2/DLC1/voidstage/matVoidCoralPlatformRed_opt.mat"; public static string matVoidCrystal = "RoR2/DLC1/voidstage/matVoidCrystal.mat"; public static string matVoidDecal = "RoR2/DLC1/voidstage/matVoidDecal.mat"; public static string matVoidDistantCard = "RoR2/DLC1/voidstage/matVoidDistantCard.mat"; public static string matVoidDistantCard2 = "RoR2/DLC1/voidstage/matVoidDistantCard2.mat"; public static string matVoidEnergy = "RoR2/DLC1/voidstage/matVoidEnergy.mat"; public static string matVoidFoam = "RoR2/DLC1/voidstage/matVoidFoam.mat"; public static string matVoidOverhang = "RoR2/DLC1/voidstage/matVoidOverhang.mat"; public static string matVoidOverhangopt = "RoR2/DLC1/voidstage/matVoidOverhang_opt.mat"; public static string matVoidPillarSet = "RoR2/DLC1/voidstage/matVoidPillarSet.mat"; public static string matVoidPlanets = "RoR2/DLC1/voidstage/matVoidPlanets.mat"; public static string matVoidPlatform = "RoR2/DLC1/voidstage/matVoidPlatform.mat"; public static string matVoidPortalCard = "RoR2/DLC1/voidstage/matVoidPortalCard.mat"; public static string matVoidScroll = "RoR2/DLC1/voidstage/matVoidScroll.mat"; public static string matVoidSmallMoon = "RoR2/DLC1/voidstage/matVoidSmallMoon.mat"; public static string matVoidStrongPurpleEmission = "RoR2/DLC1/voidstage/matVoidStrongPurpleEmission.mat"; public static string matVoidSun = "RoR2/DLC1/voidstage/matVoidSun.mat"; public static string matVoidTerrain = "RoR2/DLC1/voidstage/matVoidTerrain.mat"; public static string matVoidTerrainopt = "RoR2/DLC1/voidstage/matVoidTerrain_opt.mat"; public static string matVoidTerrainDistant = "RoR2/DLC1/voidstage/matVoidTerrainDistant.mat"; public static string matVoidTerrainDistantopt = "RoR2/DLC1/voidstage/matVoidTerrainDistant_opt.mat"; public static string matVoidTrim = "RoR2/DLC1/voidstage/matVoidTrim.mat"; public static string matVoidTrimopt = "RoR2/DLC1/voidstage/matVoidTrim_opt.mat"; public static string matVoidWater1 = "RoR2/DLC1/voidstage/matVoidWater1.mat"; public static string matVoidWater1opt = "RoR2/DLC1/voidstage/matVoidWater1_opt.mat"; public static string matVoidWater2 = "RoR2/DLC1/voidstage/matVoidWater2.mat"; public static string matVoidWater2opt = "RoR2/DLC1/voidstage/matVoidWater2_opt.mat"; public static string matVoidWater3 = "RoR2/DLC1/voidstage/matVoidWater3.mat"; public static string matVoidWater3opt = "RoR2/DLC1/voidstage/matVoidWater3_opt.mat"; public static string matVoidWater4 = "RoR2/DLC1/voidstage/matVoidWater4.mat"; public static string matVoidWater4opt = "RoR2/DLC1/voidstage/matVoidWater4_opt.mat"; public static string matVoidWater5 = "RoR2/DLC1/voidstage/matVoidWater5.mat"; public static string matVoidWater5opt = "RoR2/DLC1/voidstage/matVoidWater5_opt.mat"; public static string matVoidCoral = "RoR2/DLC1/voidstage/matVoidCoral.mat"; public static string matVoidCoralopt = "RoR2/DLC1/voidstage/matVoidCoral_opt.mat"; public static string matVoidFlatCoral = "RoR2/DLC1/voidstage/matVoidFlatCoral.mat"; public static string matVoidFlatCoralopt = "RoR2/DLC1/voidstage/matVoidFlatCoral_opt.mat"; public static string matVoidGrass = "RoR2/DLC1/voidstage/matVoidGrass.mat"; public static string matVoidTallGrass = "RoR2/DLC1/voidstage/matVoidTallGrass.mat"; public static string matVoidTallGrassopt = "RoR2/DLC1/voidstage/matVoidTallGrass_opt.mat"; public static string matVoidMetalTrimGrassy = "RoR2/DLC1/voidstage/matVoidMetalTrimGrassy.mat"; public static string matVoidMetalTrimGrassyopt = "RoR2/DLC1/voidstage/matVoidMetalTrimGrassy_opt.mat"; public static string matVoidMetalTrimGrassyMatchDirt = "RoR2/DLC1/voidstage/matVoidMetalTrimGrassyMatchDirt.mat"; public static string matVoidMetalTrimGrassyMatchDirtopt = "RoR2/DLC1/voidstage/matVoidMetalTrimGrassyMatchDirt_opt.mat"; public static string matVoidMetalTrimGrassyVertexColorsOnly = "RoR2/DLC1/voidstage/matVoidMetalTrimGrassyVertexColorsOnly.mat"; public static string matVoidMetalTrimGrassyVertexColorsOnlyopt = "RoR2/DLC1/voidstage/matVoidMetalTrimGrassyVertexColorsOnly_opt.mat"; public static string matUIIconVoidTransformation = "RoR2/DLC1/UI/matUIIconVoidTransformation.mat"; public static string matChefDisplayDecal = "RoR2/DLC2/Chef/matChefDisplayDecal.mat"; public static string matChefDisplayFire = "RoR2/DLC2/Chef/matChefDisplayFire.mat"; public static string matGlazeBall = "RoR2/DLC2/Chef/matGlazeBall.mat"; public static string matChefAlt = "RoR2/DLC2/Chef/matChefAlt.mat"; public static string matChefAltAccessories = "RoR2/DLC2/Chef/matChefAltAccessories.mat"; public static string matChefAltIceBox = "RoR2/DLC2/Chef/matChefAltIceBox.mat"; public static string matChef = "RoR2/DLC2/Chef/matChef.mat"; public static string matChefAlwaysOnTop = "RoR2/DLC2/Chef/matChef_AlwaysOnTop.mat"; public static string matChefCleaver = "RoR2/DLC2/Chef/matChef_Cleaver.mat"; public static string matChefIceBox = "RoR2/DLC2/Chef/matChefIceBox.mat"; public static string matChefFoodGlow = "RoR2/DLC2/Chef/Buffs/matChefFoodGlow.mat"; public static string matChefKebob = "RoR2/DLC2/Chef/Buffs/matChefKebob.mat"; public static string matPizzaSlice = "RoR2/DLC2/Chef/Buffs/matPizzaSlice.mat"; public static string matSakeNigiri = "RoR2/DLC2/Chef/Buffs/matSakeNigiri.mat"; public static string matTurkeyLeg = "RoR2/DLC2/Chef/Buffs/matTurkeyLeg.mat"; public static string matChefFrostDebuffOverlay = "RoR2/DLC2/Chef/Buffs/matChefFrostDebuffOverlay.mat"; public static string matChefOiledDebuffOverlay = "RoR2/DLC2/Chef/Buffs/matChefOiledDebuffOverlay.mat"; public static string matChefCleaverGhost1 = "RoR2/DLC2/Chef/matChefCleaverGhost1.mat"; public static string matChefCleaverGhost1Charged = "RoR2/DLC2/Chef/matChefCleaverGhost1Charged.mat"; public static string matChefCleaverGhost2 = "RoR2/DLC2/Chef/matChefCleaverGhost2.mat"; public static string matChefCleaverGhost3 = "RoR2/DLC2/Chef/matChefCleaverGhost3.mat"; public static string matChefCleaverGhost4 = "RoR2/DLC2/Chef/matChefCleaverGhost4.mat"; public static string matChefCleaverGhostSphereGlow = "RoR2/DLC2/Chef/matChefCleaverGhostSphereGlow.mat"; public static string matChefDiceEnhancedGhost1 = "RoR2/DLC2/Chef/matChefDiceEnhancedGhost1.mat"; public static string matChefDiceEnhancedGhost2 = "RoR2/DLC2/Chef/matChefDiceEnhancedGhost2.mat"; public static string matChefIceBoxBoostedStormCloud = "RoR2/DLC2/Chef/matChefIceBoxBoostedStormCloud.mat"; public static string matChefIceBoxIce = "RoR2/DLC2/Chef/matChefIceBoxIce.mat"; public static string matChefSecondaryFrostVFX = "RoR2/DLC2/Chef/matChefSecondaryFrostVFX.mat"; public static string matChefSecondaryFrostVFX2 = "RoR2/DLC2/Chef/matChefSecondaryFrostVFX2.mat"; public static string matChefSecondarySnowflakeVFX = "RoR2/DLC2/Chef/matChefSecondarySnowflakeVFX.mat"; public static string matBoostedFireballCore = "RoR2/DLC2/Chef/matBoostedFireballCore.mat"; public static string matBoostedSearFireballFlame = "RoR2/DLC2/Chef/matBoostedSearFireballFlame.mat"; public static string matChefSecondaryFlameVFX1 = "RoR2/DLC2/Chef/matChefSecondaryFlameVFX1.mat"; public static string matChefSecondaryFlameVFX2 = "RoR2/DLC2/Chef/matChefSecondaryFlameVFX2.mat"; public static string matChefSecondaryFlameVFX3 = "RoR2/DLC2/Chef/matChefSecondaryFlameVFX3.mat"; public static string matChefSecondaryFlameVFX4 = "RoR2/DLC2/Chef/matChefSecondaryFlameVFX4.mat"; public static string matChefSecondaryFlameVFX5 = "RoR2/DLC2/Chef/matChefSecondaryFlameVFX5.mat"; public static string matChefGlazeGhost1 = "RoR2/DLC2/Chef/matChefGlazeGhost1.mat"; public static string matChefGlazeGhost2 = "RoR2/DLC2/Chef/matChefGlazeGhost2.mat"; public static string matChefGlazeGhost3 = "RoR2/DLC2/Chef/matChefGlazeGhost3.mat"; public static string matChefGlazeImpactEffect1 = "RoR2/DLC2/Chef/matChefGlazeImpactEffect1.mat"; public static string matChefGlazeImpactEffect2 = "RoR2/DLC2/Chef/matChefGlazeImpactEffect2.mat"; public static string matChefGlazeImpactEffect3 = "RoR2/DLC2/Chef/matChefGlazeImpactEffect3.mat"; public static string matChefGlazeImpactEffect4 = "RoR2/DLC2/Chef/matChefGlazeImpactEffect4.mat"; public static string matChefGlazeImpactEffect5 = "RoR2/DLC2/Chef/matChefGlazeImpactEffect5.mat"; public static string matYesChefFrostWave = "RoR2/DLC2/Chef/matYesChefFrostWave.mat"; public static string matYesChefHeatWave = "RoR2/DLC2/Chef/matYesChefHeatWave.mat"; public static string matYesChefOverlay = "RoR2/DLC2/Chef/matYesChefOverlay.mat"; public static string matYesChefOverlayFrost = "RoR2/DLC2/Chef/matYesChefOverlayFrost.mat"; public static string matYesChefSteamVFX1 = "RoR2/DLC2/Chef/matYesChefSteamVFX1.mat"; public static string matChefTenderizeSpikes1 = "RoR2/DLC2/Chef/matChefTenderizeSpikes1.mat"; public static string matChefUtilityImpactFoodGreen = "RoR2/DLC2/Chef/matChefUtilityImpactFoodGreen.mat"; public static string matChefUtilityImpactFoodRed = "RoR2/DLC2/Chef/matChefUtilityImpactFoodRed.mat"; public static string matChefUtilityImpactVFX3 = "RoR2/DLC2/Chef/matChefUtilityImpactVFX3.mat"; public static string matChefUtilityImpactVFX4 = "RoR2/DLC2/Chef/matChefUtilityImpactVFX4.mat"; public static string matChefUtilityStartEndVFX1 = "RoR2/DLC2/Chef/matChefUtilityStartEndVFX1.mat"; public static string matChefOilBubble = "RoR2/DLC2/Chef/matChefOilBubble.mat"; public static string matChefOilDecal = "RoR2/DLC2/Chef/matChefOilDecal.mat"; public static string matChefOilFrozenDecal = "RoR2/DLC2/Chef/matChefOilFrozenDecal.mat"; public static string matChefOilPoolFire = "RoR2/DLC2/Chef/matChefOilPoolFire.mat"; public static string matChefOilPoolFireBoosted = "RoR2/DLC2/Chef/matChefOilPoolFireBoosted.mat"; public static string matChefOilPoolFireDecal = "RoR2/DLC2/Chef/matChefOilPoolFireDecal.mat"; public static string matChefOilPoolFireDecalBoosted = "RoR2/DLC2/Chef/matChefOilPoolFireDecalBoosted.mat"; public static string matChefOilPoolFrozen = "RoR2/DLC2/Chef/matChefOilPoolFrozen.mat"; public static string matChefOilSpillSpinWind = "RoR2/DLC2/Chef/matChefOilSpillSpinWind.mat"; public static string matChildDespawnCore = "RoR2/DLC2/Child/matChildDespawnCore.mat"; public static string matChild = "RoR2/DLC2/Child/matChild.mat"; public static string matChildChargeDonut = "RoR2/DLC2/Child/matChildChargeDonut.mat"; public static string matChildChargeSphere = "RoR2/DLC2/Child/matChildChargeSphere.mat"; public static string matChildStarCore = "RoR2/DLC2/Child/matChildStarCore.mat"; public static string matChildStarGlow = "RoR2/DLC2/Child/matChildStarGlow.mat"; public static string matChildFrolicSpark = "RoR2/DLC2/Child/matChildFrolicSpark.mat"; public static string matFSFloorDecal = "RoR2/DLC2/FalseSon/matFSFloorDecal.mat"; public static string matFalseSonCratePod1 = "RoR2/DLC2/FalseSon/matFalseSonCratePod1.mat"; public static string matFalseSonCratePod2 = "RoR2/DLC2/FalseSon/matFalseSonCratePod2.mat"; public static string matFalseSonCratePod3 = "RoR2/DLC2/FalseSon/matFalseSonCratePod3.mat"; public static string matFalseSonCratePod4 = "RoR2/DLC2/FalseSon/matFalseSonCratePod4.mat"; public static string matFalseSonCratePodGroundImpact1 = "RoR2/DLC2/FalseSon/matFalseSonCratePodGroundImpact1.mat"; public static string matFalseSon = "RoR2/DLC2/FalseSon/matFalseSon.mat"; public static string matFalseSonCloth = "RoR2/DLC2/FalseSon/matFalseSonCloth.mat"; public static string matFalseSonCore = "RoR2/DLC2/FalseSon/matFalseSonCore.mat"; public static string matFalseSonEye = "RoR2/DLC2/FalseSon/matFalseSonEye.mat"; public static string matFalseSonChargedSwingEnergy = "RoR2/DLC2/FalseSon/matFalseSonChargedSwingEnergy.mat"; public static string matFalseSonSwingLightning = "RoR2/DLC2/FalseSon/matFalseSonSwingLightning.mat"; public static string matFalseSonLightningIndicatorMonster = "RoR2/DLC2/FalseSon/matFalseSonLightningIndicatorMonster.mat"; public static string matFalseSonLightningIndicatorPlayer = "RoR2/DLC2/FalseSon/matFalseSonLightningIndicatorPlayer.mat"; public static string matFalseSonLaserTracerRing = "RoR2/DLC2/FalseSon/matFalseSonLaserTracerRing.mat"; public static string matFalseSonMeridiansWillAreaIndicatorRim = "RoR2/DLC2/FalseSon/matFalseSonMeridiansWillAreaIndicatorRim.mat"; public static string matFalseSonMeridiansWillOverlay = "RoR2/DLC2/FalseSon/matFalseSonMeridiansWillOverlay.mat"; public static string matFalseSonRock = "RoR2/DLC2/FalseSon/matFalseSonRock.mat"; public static string matMeridiansWillLightningDecal = "RoR2/DLC2/FalseSon/matMeridiansWillLightningDecal.mat"; public static string matFalseSonAlt = "RoR2/DLC2/FalseSon/matFalseSonAlt.mat"; public static string matFalseSonClothAlt = "RoR2/DLC2/FalseSon/matFalseSonClothAlt.mat"; public static string matLunarGazeChargeEffect1 = "RoR2/DLC2/FalseSonBoss/matLunarGazeChargeEffect1.mat"; public static string matLunarGazeChargeRay = "RoR2/DLC2/FalseSonBoss/matLunarGazeChargeRay.mat"; public static string matLunarGazeFireLaser1 = "RoR2/DLC2/FalseSonBoss/matLunarGazeFireLaser1.mat"; public static string matLunarGazeFireLaser2 = "RoR2/DLC2/FalseSonBoss/matLunarGazeFireLaser2.mat"; public static string matLunarGazeFireLaser3 = "RoR2/DLC2/FalseSonBoss/matLunarGazeFireLaser3.mat"; public static string matLunarGazeFireLaser4 = "RoR2/DLC2/FalseSonBoss/matLunarGazeFireLaser4.mat"; public static string matLunarGazeFireLaser5 = "RoR2/DLC2/FalseSonBoss/matLunarGazeFireLaser5.mat"; public static string matPrimeDevastatorChargeVFX1 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorChargeVFX1.mat"; public static string matPrimeDevastatorChargeVFX2 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorChargeVFX2.mat"; public static string matPrimeDevastatorChargeVFX3 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorChargeVFX3.mat"; public static string matPrimeDevastatorChargeVFX4 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorChargeVFX4.mat"; public static string matPrimeDevastatorLightningTether1 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorLightningTether1.mat"; public static string matPrimeDevastatorLightningTether2 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorLightningTether2.mat"; public static string matPrimeDevastatorProjectileGhost1 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorProjectileGhost1.mat"; public static string matPrimeDevastatorProjectileGhost2 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorProjectileGhost2.mat"; public static string matPrimeDevastatorProjectileGhost3 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorProjectileGhost3.mat"; public static string matPrimeDevastatorProjectileGhost4 = "RoR2/DLC2/FalseSonBoss/matPrimeDevastatorProjectileGhost4.mat"; public static string matLunarGazePlusChargeEffect1 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusChargeEffect1.mat"; public static string matLunarGazePlusChargeEffect2 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusChargeEffect2.mat"; public static string matLunarGazePlusChargeEffect3 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusChargeEffect3.mat"; public static string matLunarGazePlusChargeLaser1 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusChargeLaser1.mat"; public static string matLunarGazePlusFireLaser1 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser1.mat"; public static string matLunarGazePlusFireLaser10 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser10.mat"; public static string matLunarGazePlusFireLaser11 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser11.mat"; public static string matLunarGazePlusFireLaser12 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser12.mat"; public static string matLunarGazePlusFireLaser2 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser2.mat"; public static string matLunarGazePlusFireLaser3 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser3.mat"; public static string matLunarGazePlusFireLaser4 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser4.mat"; public static string matLunarGazePlusFireLaser6 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser6.mat"; public static string matLunarGazePlusFireLaser7 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser7.mat"; public static string matLunarGazePlusFireLaser8 = "RoR2/DLC2/FalseSonBoss/matLunarGazePlusFireLaser8.mat"; public static string matFalseSonBossPhase01 = "RoR2/DLC2/FalseSonBoss/matFalseSonBossPhase01.mat"; public static string matFalseSonBossPhase02 = "RoR2/DLC2/FalseSonBoss/matFalseSonBossPhase02.mat"; public static string matFalseSonBossPhase03 = "RoR2/DLC2/FalseSonBoss/matFalseSonBossPhase03.mat"; public static string matFalseSonBossSpawnWrap = "RoR2/DLC2/FalseSonBoss/matFalseSonBossSpawnWrap.mat"; public static string matFalseSonFissurePillarGhost1 = "RoR2/DLC2/FalseSonBoss/matFalseSonFissurePillarGhost1.mat"; public static string matFalseSonFissurePillarGhost2 = "RoR2/DLC2/FalseSonBoss/matFalseSonFissurePillarGhost2.mat"; public static string matFalseSonFissurePillarGhost3 = "RoR2/DLC2/FalseSonBoss/matFalseSonFissurePillarGhost3.mat"; public static string matFalseSonFissurePillarGhost4 = "RoR2/DLC2/FalseSonBoss/matFalseSonFissurePillarGhost4.mat"; public static string matFalseSonFissurePillarGhost5 = "RoR2/DLC2/FalseSonBoss/matFalseSonFissurePillarGhost5.mat"; public static string matFissureSlamDecal = "RoR2/DLC2/FalseSonBoss/matFissureSlamDecal.mat"; public static string matFissureSlamExplosion1 = "RoR2/DLC2/FalseSonBoss/matFissureSlamExplosion1.mat"; public static string matFissureSlamFistEffect2 = "RoR2/DLC2/FalseSonBoss/matFissureSlamFistEffect2.mat"; public static string matFissureSlamImpactIndicator = "RoR2/DLC2/FalseSonBoss/matFissureSlamImpactIndicator.mat"; public static string matFissureSlamPredictionEffect1 = "RoR2/DLC2/FalseSonBoss/matFissureSlamPredictionEffect1.mat"; public static string matFissureSlamSwingEffect1 = "RoR2/DLC2/FalseSonBoss/matFissureSlamSwingEffect1.mat"; public static string matFissureSlamSwingEffect2 = "RoR2/DLC2/FalseSonBoss/matFissureSlamSwingEffect2.mat"; public static string matFSBLunarRain = "RoR2/DLC2/FalseSonBoss/matFSBLunarRain.mat"; public static string matFSBLunarRainCrystal = "RoR2/DLC2/FalseSonBoss/matFSBLunarRainCrystal.mat"; public static string matLunarRainCrack = "RoR2/DLC2/FalseSonBoss/matLunarRainCrack.mat"; public static string matLunarRainExplosionAoE = "RoR2/DLC2/FalseSonBoss/matLunarRainExplosionAoE.mat"; public static string matLunarRainSummonVFX1 = "RoR2/DLC2/FalseSonBoss/matLunarRainSummonVFX1.mat"; public static string matLunarRainSummonVFX2 = "RoR2/DLC2/FalseSonBoss/matLunarRainSummonVFX2.mat"; public static string matLunarRainSummonVFX3 = "RoR2/DLC2/FalseSonBoss/matLunarRainSummonVFX3.mat"; public static string matTaintedOffering1 = "RoR2/DLC2/FalseSonBoss/matTaintedOffering1.mat"; public static string matChargeTriLaser1 = "RoR2/DLC2/Halcyonite/matChargeTriLaser1.mat"; public static string matChargeTriLaser2 = "RoR2/DLC2/Halcyonite/matChargeTriLaser2.mat"; public static string matExplosionTriLaser1 = "RoR2/DLC2/Halcyonite/matExplosionTriLaser1.mat"; public static string matExplosionTriLaser2 = "RoR2/DLC2/Halcyonite/matExplosionTriLaser2.mat"; public static string matHaIcyoniteIdleGlow1 = "RoR2/DLC2/Halcyonite/matHaIcyoniteIdleGlow1.mat"; public static string matHaIcyoniteIdleGlow2 = "RoR2/DLC2/Halcyonite/matHaIcyoniteIdleGlow2.mat"; public static string matHaIcyoniteIdleGlow3 = "RoR2/DLC2/Halcyonite/matHaIcyoniteIdleGlow3.mat"; public static string matLaserTriLaser1 = "RoR2/DLC2/Halcyonite/matLaserTriLaser1.mat"; public static string matMuzzleflashTriLaser1 = "RoR2/DLC2/Halcyonite/matMuzzleflashTriLaser1.mat"; public static string matMuzzleflashTriLaser2 = "RoR2/DLC2/Halcyonite/matMuzzleflashTriLaser2.mat"; public static string matTracerTriLaser1 = "RoR2/DLC2/Halcyonite/matTracerTriLaser1.mat"; public static string matHalcyonite = "RoR2/DLC2/Halcyonite/matHalcyonite.mat"; public static string matGoldenSwipeHalcyoniteVFX1 = "RoR2/DLC2/Halcyonite/matGoldenSwipeHalcyoniteVFX1.mat"; public static string matGoldenSwipeHalcyoniteVFX2 = "RoR2/DLC2/Halcyonite/matGoldenSwipeHalcyoniteVFX2.mat"; public static string matGoldenSwipeHalcyoniteVFX3 = "RoR2/DLC2/Halcyonite/matGoldenSwipeHalcyoniteVFX3.mat"; public static string matWhirlWindHalcyoniteGhost1 = "RoR2/DLC2/Halcyonite/matWhirlWindHalcyoniteGhost1.mat"; public static string matScorchlingDeathLavaDecal = "RoR2/DLC2/Scorchling/matScorchlingDeathLavaDecal.mat"; public static string matBreachPileDecal = "RoR2/DLC2/Scorchling/matBreachPileDecal.mat"; public static string matScorchling = "RoR2/DLC2/Scorchling/matScorchling.mat"; public static string matScorchlingBreachPile = "RoR2/DLC2/Scorchling/matScorchlingBreachPile.mat"; public static string matLavaCrack = "RoR2/DLC2/Scorchling/matLavaCrack.mat"; public static string matLavaRay = "RoR2/DLC2/Scorchling/matLavaRay.mat"; public static string matScorchlingMagma = "RoR2/DLC2/Scorchling/matScorchlingMagma.mat"; public static string matLavaBombHeatOrbIndicator = "RoR2/DLC2/Scorchling/matLavaBombHeatOrbIndicator.mat"; public static string matSeekerDisplayRay = "RoR2/DLC2/Seeker/matSeekerDisplayRay.mat"; public static string matSeeker = "RoR2/DLC2/Seeker/matSeeker.mat"; public static string matSeekerGlass = "RoR2/DLC2/Seeker/matSeekerGlass.mat"; public static string matSeekerLotus = "RoR2/DLC2/Seeker/matSeekerLotus.mat"; public static string matSeekerAlt = "RoR2/DLC2/Seeker/matSeekerAlt.mat"; public static string matSeekerAltCloth = "RoR2/DLC2/Seeker/matSeekerAltCloth.mat"; public static string matSpiritPunchDistortRay = "RoR2/DLC2/Seeker/matSpiritPunchDistortRay.mat"; public static string matSpiritPunchDust = "RoR2/DLC2/Seeker/matSpiritPunchDust.mat"; public static string matSpiritPunchFist = "RoR2/DLC2/Seeker/matSpiritPunchFist.mat"; public static string matSpiritPunchFistFresnel = "RoR2/DLC2/Seeker/matSpiritPunchFistFresnel.mat"; public static string matSpiritPunchFistTendrilsOpaque = "RoR2/DLC2/Seeker/matSpiritPunchFistTendrilsOpaque.mat"; public static string matSpiritPunchFistWavesOpaque = "RoR2/DLC2/Seeker/matSpiritPunchFistWavesOpaque.mat"; public static string matSpiritPunchSoftRay = "RoR2/DLC2/Seeker/matSpiritPunchSoftRay.mat"; public static string matSpiritPunchSphereFresnel = "RoR2/DLC2/Seeker/matSpiritPunchSphereFresnel.mat"; public static string matSpiritPunchSphereOpaque = "RoR2/DLC2/Seeker/matSpiritPunchSphereOpaque.mat"; public static string matSpiritPunchSplashOpaque = "RoR2/DLC2/Seeker/matSpiritPunchSplashOpaque.mat"; public static string matSpiritPunchSwirls = "RoR2/DLC2/Seeker/matSpiritPunchSwirls.mat"; public static string matSpiritPunchTendrils = "RoR2/DLC2/Seeker/matSpiritPunchTendrils.mat"; public static string matSoulSpiralFinalHit = "RoR2/DLC2/Seeker/matSoulSpiralFinalHit.mat"; public static string matSoulSpiralWhirlWindStreak = "RoR2/DLC2/Seeker/matSoulSpiralWhirlWindStreak.mat"; public static string matUnseenHandAreaIndicator = "RoR2/DLC2/Seeker/matUnseenHandAreaIndicator.mat"; public static string matUnseenHandBurstWave = "RoR2/DLC2/Seeker/matUnseenHandBurstWave.mat"; public static string matUnseenHandPortalEdge = "RoR2/DLC2/Seeker/matUnseenHandPortalEdge.mat"; public static string matUnseenHandStarFlash = "RoR2/DLC2/Seeker/matUnseenHandStarFlash.mat"; public static string matUnseenHandVerticalIndicator = "RoR2/DLC2/Seeker/matUnseenHandVerticalIndicator.mat"; public static string matUnseenHandVerticalWall = "RoR2/DLC2/Seeker/matUnseenHandVerticalWall.mat"; public static string matUnseenHandVerticalWallRay = "RoR2/DLC2/Seeker/matUnseenHandVerticalWallRay.mat"; public static string matAllyImpactSphereFresnel = "RoR2/DLC2/Seeker/matAllyImpactSphereFresnel.mat"; public static string matImpactLotus = "RoR2/DLC2/Seeker/matImpactLotus.mat"; public static string matPalmBlastChargedFresnel = "RoR2/DLC2/Seeker/matPalmBlastChargedFresnel.mat"; public static string matPalmBlastChargedSplashOpaque = "RoR2/DLC2/Seeker/matPalmBlastChargedSplashOpaque.mat"; public static string matPalmBlastChargedSwirls = "RoR2/DLC2/Seeker/matPalmBlastChargedSwirls.mat"; public static string matPalmBlastHand = "RoR2/DLC2/Seeker/matPalmBlastHand.mat"; public static string matPalmBlastHandCharged = "RoR2/DLC2/Seeker/matPalmBlastHandCharged.mat"; public static string matSeeker7thGateLotus = "RoR2/DLC2/Seeker/matSeeker7thGateLotus.mat"; public static string matSeekerMeditateRangeIndicator = "RoR2/DLC2/Seeker/matSeekerMeditateRangeIndicator.mat"; public static string matSeekerMeditateRing = "RoR2/DLC2/Seeker/matSeekerMeditateRing.mat"; public static string matSeekerSpecialFlare = "RoR2/DLC2/Seeker/matSeekerSpecialFlare.mat"; public static string matSoulSurgeOverlay = "RoR2/DLC2/Seeker/matSoulSurgeOverlay.mat"; public static string matSeekerCycloneMeshEffect = "RoR2/DLC2/Seeker/matSeekerCycloneMeshEffect.mat"; public static string matSojournBright = "RoR2/DLC2/Seeker/SojournVehicle/matSojournBright.mat"; public static string matSojournFlash = "RoR2/DLC2/Seeker/SojournVehicle/matSojournFlash.mat"; public static string matSojournGlow = "RoR2/DLC2/Seeker/SojournVehicle/matSojournGlow.mat"; public static string matSojournTendrils = "RoR2/DLC2/Seeker/SojournVehicle/matSojournTendrils.mat"; public static string matSojournTrail = "RoR2/DLC2/Seeker/SojournVehicle/matSojournTrail.mat"; public static string matSeekerLotusTimer = "RoR2/DLC2/Seeker/matSeekerLotusTimer.mat"; public static string matEliteAffixAurelionitePickup = "RoR2/DLC2/Elites/EliteAurelionite/matEliteAffixAurelionitePickup.mat"; public static string matEliteAurelioniteAffixDisplay = "RoR2/DLC2/Elites/EliteAurelionite/matEliteAurelioniteAffixDisplay.mat"; public static string matEliteAurelioniteAffixOverlay = "RoR2/DLC2/Elites/EliteAurelionite/matEliteAurelioniteAffixOverlay.mat"; public static string matGildedFillupGold = "RoR2/DLC2/Elites/EliteAurelionite/matGildedFillupGold.mat"; public static string matGildedPillar = "RoR2/DLC2/Elites/EliteAurelionite/matGildedPillar.mat"; public static string matGiledFillupGoldOutline = "RoR2/DLC2/Elites/EliteAurelionite/matGiledFillupGoldOutline.mat"; public static string matPillarDecalCenter = "RoR2/DLC2/Elites/EliteAurelionite/matPillarDecalCenter.mat"; public static string matPillarVeinDecal = "RoR2/DLC2/Elites/EliteAurelionite/matPillarVeinDecal.mat"; public static string matStrikePillarGold = "RoR2/DLC2/Elites/EliteAurelionite/matStrikePillarGold.mat"; public static string matEliteAffixBeadPickup = "RoR2/DLC2/Elites/EliteBead/matEliteAffixBeadPickup.mat"; public static string matEliteBeadFire = "RoR2/DLC2/Elites/EliteBead/matEliteBeadFire.mat"; public static string matEliteBeadSpike = "RoR2/DLC2/Elites/EliteBead/matEliteBeadSpike.mat"; public static string matEliteBeadSpikeCharge = "RoR2/DLC2/Elites/EliteBead/matEliteBeadSpikeCharge.mat"; public static string matEliteBeadSpikeCore = "RoR2/DLC2/Elites/EliteBead/matEliteBeadSpikeCore.mat"; public static string matEliteBeadSpikeProjectile = "RoR2/DLC2/Elites/EliteBead/matEliteBeadSpikeProjectile.mat"; public static string matEliteBeadWard = "RoR2/DLC2/Elites/EliteBead/matEliteBeadWard.mat"; public static string matEliteBeadArmoredOverlay = "RoR2/DLC2/Elites/EliteBead/matEliteBeadArmoredOverlay.mat"; public static string matEliteBeadImpactAbsorbGlow = "RoR2/DLC2/Elites/EliteBead/matEliteBeadImpactAbsorbGlow.mat"; public static string matEliteBeadSpikeDistortion = "RoR2/DLC2/Elites/EliteBead/matEliteBeadSpikeDistortion.mat"; public static string matEliteBeadSpikeGrowthFire = "RoR2/DLC2/Elites/EliteBead/matEliteBeadSpikeGrowthFire.mat"; public static string matEliteBeadSpikeGrowthRing = "RoR2/DLC2/Elites/EliteBead/matEliteBeadSpikeGrowthRing.mat"; public static string matEliteBeadTetherEnd = "RoR2/DLC2/Elites/EliteBead/matEliteBeadTetherEnd.mat"; public static string matEliteBeadTetherLine = "RoR2/DLC2/Elites/EliteBead/matEliteBeadTetherLine.mat"; public static string matEliteBeadTetherLineCharging = "RoR2/DLC2/Elites/EliteBead/matEliteBeadTetherLineCharging.mat"; public static string matLunarRuinCrackle = "RoR2/DLC2/Elites/EliteBead/matLunarRuinCrackle.mat"; public static string matSproutOfLifeBurst1 = "RoR2/DLC2/HealAndRevive/matSproutOfLifeBurst1.mat"; public static string matSproutOfLifeBurst2 = "RoR2/DLC2/HealAndRevive/matSproutOfLifeBurst2.mat"; public static string matSproutOfLifeBurst3 = "RoR2/DLC2/HealAndRevive/matSproutOfLifeBurst3.mat"; public static string matSeedOfLifeCopy = "RoR2/DLC2/HealAndRevive/matSeedOfLife - Copy.mat"; public static string matSeedOfLife = "RoR2/DLC2/HealAndRevive/matSeedOfLife.mat"; public static string matSeedOfLifeGold = "RoR2/DLC2/HealAndRevive/matSeedOfLifeGold.mat"; public static string matSeedOfLifeGreen = "RoR2/DLC2/HealAndRevive/matSeedOfLifeGreen.mat"; public static string matSeedOfLifeLeaf = "RoR2/DLC2/HealAndRevive/matSeedOfLifeLeaf.mat"; public static string matWokCookingVFX1 = "RoR2/DLC2/matWokCookingVFX1.mat"; public static string matWokCookingVFX2 = "RoR2/DLC2/matWokCookingVFX2.mat"; public static string matWokCookingVFX3 = "RoR2/DLC2/matWokCookingVFX3.mat"; public static string matWokCookingVFX4 = "RoR2/DLC2/matWokCookingVFX4.mat"; public static string matWokCookingVFX5 = "RoR2/DLC2/matWokCookingVFX5.mat"; public static string matAurelioniteGeode = "RoR2/DLC2/matAurelioniteGeode.mat"; public static string matGeodeCleanseVFX1 = "RoR2/DLC2/matGeodeCleanseVFX1.mat"; public static string matGeodeIdleVFX1 = "RoR2/DLC2/matGeodeIdleVFX1.mat"; public static string matGeodeShatterVFX1 = "RoR2/DLC2/matGeodeShatterVFX1.mat"; public static string matPMParticle = "RoR2/DLC2/matPMParticle.mat"; public static string matPMPortal = "RoR2/DLC2/matPMPortal.mat"; public static string matPMPortalCenter = "RoR2/DLC2/matPMPortalCenter.mat"; public static string matPMPortalOverlay = "RoR2/DLC2/matPMPortalOverlay.mat"; public static string matPMSeerLocation = "RoR2/DLC2/matPMSeerLocation.mat"; public static string matColossusPortalEffectCenter = "RoR2/DLC2/matColossusPortalEffectCenter.mat"; public static string matColossusPortalEffectEdge = "RoR2/DLC2/matColossusPortalEffectEdge.mat"; public static string matColossusSeerLocation = "RoR2/DLC2/matColossusSeerLocation.mat"; public static string matHalcyoniteShrineCrystalGlow = "RoR2/DLC2/matHalcyoniteShrineCrystalGlow.mat"; public static string matHalcyoniteShrineLightningTrail = "RoR2/DLC2/matHalcyoniteShrineLightningTrail.mat"; public static string matHalcyoniteShrineLines = "RoR2/DLC2/matHalcyoniteShrineLines.mat"; public static string matHalcyoniteShrineSphereBackface = "RoR2/DLC2/matHalcyoniteShrineSphereBackface.mat"; public static string matHalcyoniteShrineSphereLightning = "RoR2/DLC2/matHalcyoniteShrineSphereLightning.mat"; public static string matHalcyoniteShrineStorm = "RoR2/DLC2/matHalcyoniteShrineStorm.mat"; public static string matAurelioniteFragment = "RoR2/DLC2/matAurelioniteFragment.mat"; public static string matHalcyonGoldDecal = "RoR2/DLC2/matHalcyonGoldDecal.mat"; public static string matHalcyoniteShrineBase = "RoR2/DLC2/matHalcyoniteShrineBase.mat"; public static string matHalcyoniteShrineCrystal = "RoR2/DLC2/matHalcyoniteShrineCrystal.mat"; public static string matHalcyoniteShrineDecal = "RoR2/DLC2/matHalcyoniteShrineDecal.mat"; public static string matHalcyoniteShrineGold = "RoR2/DLC2/matHalcyoniteShrineGold.mat"; public static string matPMShrineSymbol = "RoR2/DLC2/matPMShrineSymbol.mat"; public static string matShrineColossusAccess = "RoR2/DLC2/matShrineColossusAccess.mat"; public static string matShrineColossusAccessProngDisabled = "RoR2/DLC2/matShrineColossusAccessProngDisabled.mat"; public static string matRebirthIdleVFX1 = "RoR2/DLC2/matRebirthIdleVFX1.mat"; public static string matRebirthIdleVFX2 = "RoR2/DLC2/matRebirthIdleVFX2.mat"; public static string matRebirthOnRebirthVFX1 = "RoR2/DLC2/matRebirthOnRebirthVFX1.mat"; public static string matRebirthOnRebirthVFX2 = "RoR2/DLC2/matRebirthOnRebirthVFX2.mat"; public static string matRebirthOnRebirthVFX3 = "RoR2/DLC2/matRebirthOnRebirthVFX3.mat"; public static string matShrineofRebirth = "RoR2/DLC2/matShrineofRebirth.mat"; public static string matShrineofRebirthPlaceholder2 = "RoR2/DLC2/matShrineofRebirthPlaceholder2.mat"; public static string matBolsteringLanternRangeIndicator = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/matBolsteringLanternRangeIndicator.mat"; public static string matRageCrystal = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/matRageCrystal.mat"; public static string matRageCrystalGlass = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/matRageCrystalGlass.mat"; public static string matBossMissileSmokePuff = "RoR2/DLC2/Items/BarrageOnBoss/matBossMissileSmokePuff.mat"; public static string matBossMissileTrail = "RoR2/DLC2/Items/BarrageOnBoss/matBossMissileTrail.mat"; public static string matGoldOnStageStartCoinGain1 = "RoR2/DLC2/Items/BarrageOnBoss/matGoldOnStageStartCoinGain1.mat"; public static string matGoldOnStageStartCoinGain2 = "RoR2/DLC2/Items/BarrageOnBoss/matGoldOnStageStartCoinGain2.mat"; public static string matWarbondMissile = "RoR2/DLC2/Items/BarrageOnBoss/matWarbondMissile.mat"; public static string matBarrageOnBossMetal = "RoR2/DLC2/Items/BarrageOnBoss/matBarrageOnBossMetal.mat"; public static string matBarrageOnBossScreen = "RoR2/DLC2/Items/BarrageOnBoss/matBarrageOnBossScreen.mat"; public static string GrowthNectarFlowerGlow = "RoR2/DLC2/Items/BoostAllStats/GrowthNectarFlowerGlow.mat"; public static string matGrowthNecarWreath = "RoR2/DLC2/Items/BoostAllStats/matGrowthNecarWreath.mat"; public static string matGrowthNectar = "RoR2/DLC2/Items/BoostAllStats/matGrowthNectar.mat"; public static string matGrowthNectarGlass = "RoR2/DLC2/Items/BoostAllStats/matGrowthNectarGlass.mat"; public static string matGrowthNectarGlow = "RoR2/DLC2/Items/BoostAllStats/matGrowthNectarGlow.mat"; public static string matGrowthNectarPuffCloud = "RoR2/DLC2/Items/BoostAllStats/matGrowthNectarPuffCloud.mat"; public static string matGrowthNectarPuffRing = "RoR2/DLC2/Items/BoostAllStats/matGrowthNectarPuffRing.mat"; public static string matDelayedDamageIndicator1 = "RoR2/DLC2/Items/DelayedDamage/matDelayedDamageIndicator1.mat"; public static string matDelayedDamageIndicator2 = "RoR2/DLC2/Items/DelayedDamage/matDelayedDamageIndicator2.mat"; public static string matDelayedDamageIndicator3 = "RoR2/DLC2/Items/DelayedDamage/matDelayedDamageIndicator3.mat"; public static string matDelayedDamageShield = "RoR2/DLC2/Items/DelayedDamage/matDelayedDamageShield.mat"; public static string matDelayedDamageShieldShatter = "RoR2/DLC2/Items/DelayedDamage/matDelayedDamageShieldShatter.mat"; public static string matWarpedEchoGreen = "RoR2/DLC2/Items/DelayedDamage/matWarpedEchoGreen.mat"; public static string matWarpedEchoOverheadShield = "RoR2/DLC2/Items/DelayedDamage/matWarpedEchoOverheadShield.mat"; public static string matChanceDoll = "RoR2/DLC2/Items/ExtraShrineItem/matChanceDoll.mat"; public static string matChanceDollSymbol = "RoR2/DLC2/Items/ExtraShrineItem/matChanceDollSymbol.mat"; public static string matChanceDollSymbolSimple = "RoR2/DLC2/Items/ExtraShrineItem/matChanceDollSymbolSimple.mat"; public static string matBeadsEmitter = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/matBeadsEmitter.mat"; public static string matBeadsEnlightenGlow = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/matBeadsEnlightenGlow.mat"; public static string matBeadsEnlightenGlow2 = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/matBeadsEnlightenGlow2.mat"; public static string matBeadsLevelUp = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/matBeadsLevelUp.mat"; public static string matEnlightenedBurst = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/matEnlightenedBurst.mat"; public static string matEnlightenedRing = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/matEnlightenedRing.mat"; public static string matExtraStatsOnLevelUp = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/matExtraStatsOnLevelUp.mat"; public static string colorRedHolo = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/colorRedHolo.mat"; public static string colorRedText = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/colorRedText.mat"; public static string matIncreaseDamaageOnMultiKill = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/matIncreaseDamaageOnMultiKill.mat"; public static string matIncreaseDamageOnMultiKill1 = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/matIncreaseDamageOnMultiKill1.mat"; public static string matIncreaseDamageOnMultiKill2 = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/matIncreaseDamageOnMultiKill2.mat"; public static string matIncreaseDamageOnMultiKill3 = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/matIncreaseDamageOnMultiKill3.mat"; public static string matIncreaseDamageOnMultiKill4 = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/matIncreaseDamageOnMultiKill4.mat"; public static string matIncreaseDamageOnMultiKillHolo = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/matIncreaseDamageOnMultiKillHolo.mat"; public static string matTeleportOnLowHealthIndicator = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/matTeleportOnLowHealthIndicator.mat"; public static string matGoldLaser = "RoR2/DLC2/Items/IncreasePrimaryDamage/matGoldLaser.mat"; public static string matLuminousShotRings = "RoR2/DLC2/Items/IncreasePrimaryDamage/matLuminousShotRings.mat"; public static string matLunimousShot = "RoR2/DLC2/Items/IncreasePrimaryDamage/matLunimousShot.mat"; public static string matIncreasePrimaryDamageImpact1 = "RoR2/DLC2/Items/IncreasePrimaryDamage/matIncreasePrimaryDamageImpact1.mat"; public static string matIncreasePrimaryDamageImpact2 = "RoR2/DLC2/Items/IncreasePrimaryDamage/matIncreasePrimaryDamageImpact2.mat"; public static string matSnorousEcho = "RoR2/DLC2/Items/ItemDropChanceOnKill/matSnorousEcho.mat"; public static string matKnockbackFin = "RoR2/DLC2/Items/KnockBackHitEnemies/matKnockbackFin.mat"; public static string matKnockbackFin1 = "RoR2/DLC2/Items/KnockBackHitEnemies/matKnockbackFin1.mat"; public static string matKnockbackFin2 = "RoR2/DLC2/Items/KnockBackHitEnemies/matKnockbackFin2.mat"; public static string matKnockbackFinDebuffTarget = "RoR2/DLC2/Items/KnockBackHitEnemies/matKnockbackFinDebuffTarget.mat"; public static string matLowerPricedChestsGlow1 = "RoR2/DLC2/Items/LowerPricedChests/matLowerPricedChestsGlow1.mat"; public static string matLowerPricedChestsGlow2 = "RoR2/DLC2/Items/LowerPricedChests/matLowerPricedChestsGlow2.mat"; public static string matLowerPricedChestsGlow3 = "RoR2/DLC2/Items/LowerPricedChests/matLowerPricedChestsGlow3.mat"; public static string matSaleStar = "RoR2/DLC2/Items/LowerPricedChests/matSaleStar.mat"; public static string matRunicFirePuff = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/matRunicFirePuff.mat"; public static string matRunicLens = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/matRunicLens.mat"; public static string matRunicLensGlow = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/matRunicLensGlow.mat"; public static string matRunicLensIndicatorIndicatorWall = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/matRunicLensIndicatorIndicatorWall.mat"; public static string matRunicLensMeteor = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/matRunicLensMeteor.mat"; public static string matRunicLensMeteorStrikeImpactIndicator = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/matRunicLensMeteorStrikeImpactIndicator.mat"; public static string matFireLongStanding = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/matFireLongStanding.mat"; public static string matLongstandingSolitude = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/matLongstandingSolitude.mat"; public static string matOnLevelUpFreeUnlockDroneFlash = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/matOnLevelUpFreeUnlockDroneFlash.mat"; public static string matElusiveAntlers = "RoR2/DLC2/Items/SpeedBoostPickup/matElusiveAntlers.mat"; public static string matElusiveAntlersBuffActive = "RoR2/DLC2/Items/SpeedBoostPickup/matElusiveAntlersBuffActive.mat"; public static string matElusiveAntlersBuffBase = "RoR2/DLC2/Items/SpeedBoostPickup/matElusiveAntlersBuffBase.mat"; public static string matElusiveAntlersBuffGrantedRay = "RoR2/DLC2/Items/SpeedBoostPickup/matElusiveAntlersBuffGrantedRay.mat"; public static string matElusiveAntlersBuffPickupFlame = "RoR2/DLC2/Items/SpeedBoostPickup/matElusiveAntlersBuffPickupFlame.mat"; public static string matElusiveAntlersBuffPickupFlameMinor = "RoR2/DLC2/Items/SpeedBoostPickup/matElusiveAntlersBuffPickupFlameMinor.mat"; public static string matElusiveAntlersPickupSpawn = "RoR2/DLC2/Items/SpeedBoostPickup/matElusiveAntlersPickupSpawn.mat"; public static string matSpeedBoostPickupThorn = "RoR2/DLC2/Items/SpeedBoostPickup/matSpeedBoostPickupThorn.mat"; public static string matSpeedBoostPickupTraill = "RoR2/DLC2/Items/SpeedBoostPickup/matSpeedBoostPickupTraill.mat"; public static string matElectricBoomerang = "RoR2/DLC2/Items/StunAndPierce/matElectricBoomerang.mat"; public static string matElectricBoomerangElectricity = "RoR2/DLC2/Items/StunAndPierce/matElectricBoomerang_Electricity.mat"; public static string matStunAndPierceBoomerangGhost = "RoR2/DLC2/Items/StunAndPierce/matStunAndPierceBoomerangGhost.mat"; public static string matStunAndPierceBoomerangImpact = "RoR2/DLC2/Items/StunAndPierce/matStunAndPierceBoomerangImpact.mat"; public static string matTeleportOnLowHealthOverlay = "RoR2/DLC2/Items/TeleportOnLowHealth/matTeleportOnLowHealthOverlay.mat"; public static string matTeleportOnLowHealthVFX = "RoR2/DLC2/Items/TeleportOnLowHealth/matTeleportOnLowHealthVFX.mat"; public static string matTransmiiterEffect = "RoR2/DLC2/Items/TeleportOnLowHealth/matTransmiiterEffect.mat"; public static string matUnstableTransmitter = "RoR2/DLC2/Items/TeleportOnLowHealth/matUnstableTransmitter.mat"; public static string matNoxiousThornExplosion1 = "RoR2/DLC2/Items/TriggerEnemyDebuffs/matNoxiousThornExplosion1.mat"; public static string matNoxiousThornExplosion2 = "RoR2/DLC2/Items/TriggerEnemyDebuffs/matNoxiousThornExplosion2.mat"; public static string matNoxiousThornExplosion3 = "RoR2/DLC2/Items/TriggerEnemyDebuffs/matNoxiousThornExplosion3.mat"; public static string matNoxiousThornVine = "RoR2/DLC2/Items/TriggerEnemyDebuffs/matNoxiousThornVine.mat"; public static string matNoxiousThorn = "RoR2/DLC2/Items/TriggerEnemyDebuffs/matNoxiousThorn.mat"; public static string Grey = "RoR2/DLC2/Grey.mat"; public static string Orange = "RoR2/DLC2/Orange.mat"; public static string Underground = "RoR2/DLC2/Underground.mat"; public static string matAW1DimondPattern = "RoR2/DLC2/artifactworld01/Assets/matAW1DimondPattern.mat"; public static string matAW1Floor = "RoR2/DLC2/artifactworld01/Assets/matAW1Floor.mat"; public static string matAW1Grass = "RoR2/DLC2/artifactworld01/Assets/matAW1Grass.mat"; public static string matAW1GreenShiny = "RoR2/DLC2/artifactworld01/Assets/matAW1GreenShiny.mat"; public static string matAW1Temple = "RoR2/DLC2/artifactworld01/Assets/matAW1Temple.mat"; public static string matAW1Trimsheet = "RoR2/DLC2/artifactworld01/Assets/matAW1Trimsheet.mat"; public static string matAW1TrimsheetBridges = "RoR2/DLC2/artifactworld01/Assets/matAW1TrimsheetBridges.mat"; public static string matAW1TrimsheetGrass = "RoR2/DLC2/artifactworld01/Assets/matAW1TrimsheetGrass.mat"; public static string matAW1Waterfall = "RoR2/DLC2/artifactworld01/Assets/matAW1Waterfall.mat"; public static string matBazaarSeerAW01 = "RoR2/DLC2/artifactworld01/matBazaarSeerAW01.mat"; public static string matAW2EelSkeleton = "RoR2/DLC2/artifactworld02/Assets/matAW2EelSkeleton.mat"; public static string matAW2Rocks = "RoR2/DLC2/artifactworld02/Assets/matAW2Rocks.mat"; public static string matAW2Sand = "RoR2/DLC2/artifactworld02/Assets/matAW2Sand.mat"; public static string matAW2Terrain = "RoR2/DLC2/artifactworld02/Assets/matAW2Terrain.mat"; public static string matBazaarSeerAW02 = "RoR2/DLC2/artifactworld02/matBazaarSeerAW02.mat"; public static string matTrimsheetGraveyardTempleWhiteAW3 = "RoR2/DLC2/artifactworld03/Assets/matTrimsheetGraveyardTempleWhiteAW3.mat"; public static string matTrimsheetPurpleStoneGrassyAW3 = "RoR2/DLC2/artifactworld03/Assets/matTrimsheetPurpleStoneGrassyAW3.mat"; public static string matTrimsheetPurpleStoneVeryGrassyAW3 = "RoR2/DLC2/artifactworld03/Assets/matTrimsheetPurpleStoneVeryGrassyAW3.mat"; public static string matArtifactPortalCenter18 = "RoR2/DLC2/artifactworld03/matArtifactPortalCenter.mat"; public static string matArtifactPortalCenterDark18 = "RoR2/DLC2/artifactworld03/matArtifactPortalCenterDark.mat"; public static string matArtifactPortalEdge7 = "RoR2/DLC2/artifactworld03/matArtifactPortalEdge.mat"; public static string matArtifactPortalEdgeBackdrop13 = "RoR2/DLC2/artifactworld03/matArtifactPortalEdgeBackdrop.mat"; public static string matArtifactShellDistortion10 = "RoR2/DLC2/artifactworld03/matArtifactShellDistortion.mat"; public static string matArtifactShellExplosionIndicator21 = "RoR2/DLC2/artifactworld03/matArtifactShellExplosionIndicator.mat"; public static string matArtifactShellOverlay12 = "RoR2/DLC2/artifactworld03/matArtifactShellOverlay.mat"; public static string matArtifactShellSolarFlare28 = "RoR2/DLC2/artifactworld03/matArtifactShellSolarFlare.mat"; public static string matArtifactShellSolarFlareProjectile11 = "RoR2/DLC2/artifactworld03/matArtifactShellSolarFlareProjectile.mat"; public static string matArtifactShellTrail0 = "RoR2/DLC2/artifactworld03/matArtifactShellTrail.mat"; public static string matFlareParticle2 = "RoR2/DLC2/artifactworld03/matFlareParticle.mat"; public static string matBazaarSeerAW03 = "RoR2/DLC2/artifactworld03/matBazaarSeerAW03.mat"; public static string matSkyboxArtifactWorld26 = "RoR2/DLC2/artifactworld03/matSkyboxArtifactWorld.mat"; public static string matBHGrass = "RoR2/DLC2/habitat/Assets/matBHGrass.mat"; public static string matBHGrassopt = "RoR2/DLC2/habitat/Assets/matBHGrass_opt.mat"; public static string BHGrassAtlas10 = "RoR2/DLC2/habitat/Assets/BHGrass_Atlas.mat"; public static string Billboard18_Alt = "RoR2/DLC2/habitat/Assets/Billboard.mat"; public static string Leaves0LOD013 = "RoR2/DLC2/habitat/Assets/Leaves_0_LOD0.mat"; public static string matBHDistantTree = "RoR2/DLC2/habitat/Assets/matBHDistantTree.mat"; public static string matBHDistantTreeBillboard = "RoR2/DLC2/habitat/Assets/matBHDistantTree_Billboard.mat"; public static string matBHDistantTreeopt = "RoR2/DLC2/habitat/Assets/matBHDistantTree_opt.mat"; public static string matBHDistantTreeP = "RoR2/DLC2/habitat/Assets/matBHDistantTreeP.mat"; public static string matBHDistantTreePBillboard = "RoR2/DLC2/habitat/Assets/matBHDistantTreeP_Billboard.mat"; public static string matHBSchrubB = "RoR2/DLC2/habitat/Assets/matHBSchrubB.mat"; public static string matHBSchrubBopt = "RoR2/DLC2/habitat/Assets/matHBSchrubB_opt.mat"; public static string matBHDiorama = "RoR2/DLC2/habitat/Assets/matBHDiorama.mat"; public static string matBHDistantLowFog = "RoR2/DLC2/habitat/Assets/matBHDistantLowFog.mat"; public static string matBHDistantMountainClouds = "RoR2/DLC2/habitat/Assets/matBHDistantMountainClouds.mat"; public static string matBHDistantMountainCloudsopt = "RoR2/DLC2/habitat/Assets/matBHDistantMountainClouds_opt.mat"; public static string matBHDistantMountians = "RoR2/DLC2/habitat/Assets/matBHDistantMountians.mat"; public static string matBHDomeTrim = "RoR2/DLC2/habitat/Assets/matBHDomeTrim.mat"; public static string matBHDomeTrimopt = "RoR2/DLC2/habitat/Assets/matBHDomeTrim_opt.mat"; public static string matBHEnvfxLeaves = "RoR2/DLC2/habitat/Assets/matBHEnvfxLeaves.mat"; public static string matBHEnvfxLeavesopt = "RoR2/DLC2/habitat/Assets/matBHEnvfxLeaves_opt.mat"; public static string matBHFlower = "RoR2/DLC2/habitat/Assets/matBHFlower.mat"; public static string matBHFloweropt = "RoR2/DLC2/habitat/Assets/matBHFlower_opt.mat"; public static string matBHFlowerFlow = "RoR2/DLC2/habitat/Assets/matBHFlowerFlow.mat"; public static string matBHFruit = "RoR2/DLC2/habitat/Assets/matBHFruit.mat"; public static string matBHFruitopt = "RoR2/DLC2/habitat/Assets/matBHFruit_opt.mat"; public static string matBHFruitStem = "RoR2/DLC2/habitat/Assets/matBHFruitStem.mat"; public static string matBHFruitStemopt = "RoR2/DLC2/habitat/Assets/matBHFruitStem_opt.mat"; public static string matBHGodray = "RoR2/DLC2/habitat/Assets/matBHGodray.mat"; public static string matBHGodrayopt = "RoR2/DLC2/habitat/Assets/matBHGodray_opt.mat"; public static string matBHHiveBase = "RoR2/DLC2/habitat/Assets/matBHHiveBase.mat"; public static string matBHHiveBaseopt = "RoR2/DLC2/habitat/Assets/matBHHiveBase_opt.mat"; public static string matBHHiveBubble = "RoR2/DLC2/habitat/Assets/matBHHiveBubble.mat"; public static string matBHHiveBubbleopt = "RoR2/DLC2/habitat/Assets/matBHHiveBubble_opt.mat"; public static string matBHLeafSingle = "RoR2/DLC2/habitat/Assets/matBHLeafSingle.mat"; public static string matBHLeafSingleopt = "RoR2/DLC2/habitat/Assets/matBHLeafSingle_opt.mat"; public static string matBHLilyPad = "RoR2/DLC2/habitat/Assets/matBHLilyPad.mat"; public static string matBHLilyPadopt = "RoR2/DLC2/habitat/Assets/matBHLilyPad_opt.mat"; public static string matBHNest = "RoR2/DLC2/habitat/Assets/matBHNest.mat"; public static string matBHNestopt = "RoR2/DLC2/habitat/Assets/matBHNest_opt.mat"; public static string matBHPebble = "RoR2/DLC2/habitat/Assets/matBHPebble.mat"; public static string matBHPebbleopt = "RoR2/DLC2/habitat/Assets/matBHPebble_opt.mat"; public static string matBHPlatformSimple = "RoR2/DLC2/habitat/Assets/matBHPlatformSimple.mat"; public static string matBHPlatformSimpleopt = "RoR2/DLC2/habitat/Assets/matBHPlatformSimple_opt.mat"; public static string matBHPlatformTerrain = "RoR2/DLC2/habitat/Assets/matBHPlatformTerrain.mat"; public static string matBHSilhouette = "RoR2/DLC2/habitat/Assets/matBHSilhouette.mat"; public static string matBHSilhouetteopt = "RoR2/DLC2/habitat/Assets/matBHSilhouette_opt.mat"; public static string matBHSkybox = "RoR2/DLC2/habitat/Assets/matBHSkybox.mat"; public static string matBHTempleTrim = "RoR2/DLC2/habitat/Assets/matBHTempleTrim.mat"; public static string matBHTempleTrimopt = "RoR2/DLC2/habitat/Assets/matBHTempleTrim_opt.mat"; public static string matBHTerrainVines = "RoR2/DLC2/habitat/Assets/matBHTerrainVines.mat"; public static string matBHTerrainVinesopt = "RoR2/DLC2/habitat/Assets/matBHTerrainVines_opt.mat"; public static string matBHWater = "RoR2/DLC2/habitat/Assets/matBHWater.mat"; public static string matBHWateropt = "RoR2/DLC2/habitat/Assets/matBHWater_opt.mat"; public static string matBHWaterfall = "RoR2/DLC2/habitat/Assets/matBHWaterfall.mat"; public static string matBHWaterfallopt = "RoR2/DLC2/habitat/Assets/matBHWaterfall_opt.mat"; public static string matHiveDecal = "RoR2/DLC2/habitat/Assets/matHiveDecal.mat"; public static string matBHSeedPod = "RoR2/DLC2/habitat/Assets/matBHSeedPod.mat"; public static string matBHSeedPodVine = "RoR2/DLC2/habitat/Assets/matBHSeedPodVine.mat"; public static string matBazaarSeerHabitat = "RoR2/DLC2/habitat/matBazaarSeerHabitat.mat"; public static string matBHFallGrassGlow = "RoR2/DLC2/habitatfall/Assets/matBHFallGrassGlow.mat"; public static string matBHFallGrassGlowopt = "RoR2/DLC2/habitatfall/Assets/matBHFallGrassGlow_opt.mat"; public static string matBHFallDistantTree = "RoR2/DLC2/habitatfall/Assets/matBHFallDistantTree.mat"; public static string matBHFallDistantTreeopt = "RoR2/DLC2/habitatfall/Assets/matBHFallDistantTree_opt.mat"; public static string matBHFallDistantTreeBillboard = "RoR2/DLC2/habitatfall/Assets/matBHFallDistantTreeBillboard.mat"; public static string matBHFallShurb = "RoR2/DLC2/habitatfall/Assets/matBHFallShurb.mat"; public static string matBHFallShurbopt = "RoR2/DLC2/habitatfall/Assets/matBHFallShurb_opt.mat"; public static string matBHFallClouds = "RoR2/DLC2/habitatfall/Assets/matBHFallClouds.mat"; public static string matBHFallCloudsopt = "RoR2/DLC2/habitatfall/Assets/matBHFallClouds_opt.mat"; public static string matBHFallDiorama = "RoR2/DLC2/habitatfall/Assets/matBHFallDiorama.mat"; public static string matBHFallDistantMountainClouds = "RoR2/DLC2/habitatfall/Assets/matBHFallDistantMountainClouds.mat"; public static string matBHFallDistantMountainCloudsopt = "RoR2/DLC2/habitatfall/Assets/matBHFallDistantMountainClouds_opt.mat"; public static string matBHFallDomeTrim = "RoR2/DLC2/habitatfall/Assets/matBHFallDomeTrim.mat"; public static string matBHFallDomeTrimopt = "RoR2/DLC2/habitatfall/Assets/matBHFallDomeTrim_opt.mat"; public static string matBHFallEnvfxLeaves = "RoR2/DLC2/habitatfall/Assets/matBHFallEnvfxLeaves.mat"; public static string matBHFallEnvfxLeavesopt = "RoR2/DLC2/habitatfall/Assets/matBHFallEnvfxLeaves_opt.mat"; public static string matBHFallFlower = "RoR2/DLC2/habitatfall/Assets/matBHFallFlower.mat"; public static string matBHFallFloweropt = "RoR2/DLC2/habitatfall/Assets/matBHFallFlower_opt.mat"; public static string matBHFallGodray = "RoR2/DLC2/habitatfall/Assets/matBHFallGodray.mat"; public static string matBHFallHiveBase = "RoR2/DLC2/habitatfall/Assets/matBHFallHiveBase.mat"; public static string matBHFallHiveBaseopt = "RoR2/DLC2/habitatfall/Assets/matBHFallHiveBase_opt.mat"; public static string matBHFallHiveBubble = "RoR2/DLC2/habitatfall/Assets/matBHFallHiveBubble.mat"; public static string matBHFallHiveBubbleopt = "RoR2/DLC2/habitatfall/Assets/matBHFallHiveBubble_opt.mat"; public static string matBHFallHiveDecal = "RoR2/DLC2/habitatfall/Assets/matBHFallHiveDecal.mat"; public static string matBHFallPebble = "RoR2/DLC2/habitatfall/Assets/matBHFallPebble.mat"; public static string matBHFallPebbleopt = "RoR2/DLC2/habitatfall/Assets/matBHFallPebble_opt.mat"; public static string matBHFallPlatformSimple = "RoR2/DLC2/habitatfall/Assets/matBHFallPlatformSimple.mat"; public static string matBHFallPlatformSimpleopt = "RoR2/DLC2/habitatfall/Assets/matBHFallPlatformSimple_opt.mat"; public static string matBHFallPlatformTerrain = "RoR2/DLC2/habitatfall/Assets/matBHFallPlatformTerrain.mat"; public static string matBHFallPlatformTerrainopt = "RoR2/DLC2/habitatfall/Assets/matBHFallPlatformTerrain_opt.mat"; public static string matBHFallShroomDrips = "RoR2/DLC2/habitatfall/Assets/matBHFallShroomDrips.mat"; public static string matBHFallShroomDripsopt = "RoR2/DLC2/habitatfall/Assets/matBHFallShroomDrips_opt.mat"; public static string matBHFallShroomPath = "RoR2/DLC2/habitatfall/Assets/matBHFallShroomPath.mat"; public static string matBHFallShroomPathopt = "RoR2/DLC2/habitatfall/Assets/matBHFallShroomPath_opt.mat"; public static string matBHFallShroomTunnel = "RoR2/DLC2/habitatfall/Assets/matBHFallShroomTunnel.mat"; public static string matBHFallShroomTunnelopt = "RoR2/DLC2/habitatfall/Assets/matBHFallShroomTunnel_opt.mat"; public static string matBHFallSilhouette = "RoR2/DLC2/habitatfall/Assets/matBHFallSilhouette.mat"; public static string matBHFallSilhouetteopt = "RoR2/DLC2/habitatfall/Assets/matBHFallSilhouette_opt.mat"; public static string matBHFallSkybox = "RoR2/DLC2/habitatfall/Assets/matBHFallSkybox.mat"; public static string matBHFallStatueBeam = "RoR2/DLC2/habitatfall/Assets/matBHFallStatueBeam.mat"; public static string matBHFallStatueBeamopt = "RoR2/DLC2/habitatfall/Assets/matBHFallStatueBeam_opt.mat"; public static string matBHFallStatueCrystals = "RoR2/DLC2/habitatfall/Assets/matBHFallStatueCrystals.mat"; public static string matBHFallStatueCrystalsopt = "RoR2/DLC2/habitatfall/Assets/matBHFallStatueCrystals_opt.mat"; public static string matBHFallTempleTrim = "RoR2/DLC2/habitatfall/Assets/matBHFallTempleTrim.mat"; public static string matBHFallTempleTrimopt = "RoR2/DLC2/habitatfall/Assets/matBHFallTempleTrim_opt.mat"; public static string matBHFallTerrainVines = "RoR2/DLC2/habitatfall/Assets/matBHFallTerrainVines.mat"; public static string matBHFallTerrainVinesopt = "RoR2/DLC2/habitatfall/Assets/matBHFallTerrainVines_opt.mat"; public static string matBazaarSeerHabitatFall = "RoR2/DLC2/habitatfall/matBazaarSeerHabitatFall.mat"; public static string matHRChime = "RoR2/DLC2/helminthroost/Assets/matHRChime.mat"; public static string matHRChimeopt = "RoR2/DLC2/helminthroost/Assets/matHRChime_opt.mat"; public static string matHRConatiners = "RoR2/DLC2/helminthroost/Assets/matHRConatiners.mat"; public static string matHRConatinersopt = "RoR2/DLC2/helminthroost/Assets/matHRConatiners_opt.mat"; public static string matHRCrystal = "RoR2/DLC2/helminthroost/Assets/matHRCrystal.mat"; public static string matHRCrystalopt = "RoR2/DLC2/helminthroost/Assets/matHRCrystal_opt.mat"; public static string matHRCrystalRed = "RoR2/DLC2/helminthroost/Assets/matHRCrystalRed.mat"; public static string matHRCrystalRedopt = "RoR2/DLC2/helminthroost/Assets/matHRCrystalRed_opt.mat"; public static string matHREgg = "RoR2/DLC2/helminthroost/Assets/matHREgg.mat"; public static string matHREggopt = "RoR2/DLC2/helminthroost/Assets/matHREgg_opt.mat"; public static string matHRFireBlossom = "RoR2/DLC2/helminthroost/Assets/matHRFireBlossom.mat"; public static string matHRFireBlossomopt = "RoR2/DLC2/helminthroost/Assets/matHRFireBlossom_opt.mat"; public static string matHRFireGrass = "RoR2/DLC2/helminthroost/Assets/matHRFireGrass.mat"; public static string matHRFireGrassopt = "RoR2/DLC2/helminthroost/Assets/matHRFireGrass_opt.mat"; public static string matHRFireStaticRedLArge = "RoR2/DLC2/helminthroost/Assets/matHRFireStaticRedLArge.mat"; public static string matHRFireStaticRedLargeopt = "RoR2/DLC2/helminthroost/Assets/matHRFireStaticRedLarge_opt.mat"; public static string matHRFloorDark = "RoR2/DLC2/helminthroost/Assets/matHRFloorDark.mat"; public static string matHRFloorDarkopt = "RoR2/DLC2/helminthroost/Assets/matHRFloorDark_opt.mat"; public static string matHRFloorLight = "RoR2/DLC2/helminthroost/Assets/matHRFloorLight.mat"; public static string matHRFloorLightopt = "RoR2/DLC2/helminthroost/Assets/matHRFloorLight_opt.mat"; public static string matHRGold = "RoR2/DLC2/helminthroost/Assets/matHRGold.mat"; public static string matHRGoldopt = "RoR2/DLC2/helminthroost/Assets/matHRGold_opt.mat"; public static string matHRLaunchEmmisive = "RoR2/DLC2/helminthroost/Assets/matHRLaunchEmmisive.mat"; public static string matHRLaunchEmmisiveopt = "RoR2/DLC2/helminthroost/Assets/matHRLaunchEmmisive_opt.mat"; public static string matHRLaunchPad = "RoR2/DLC2/helminthroost/Assets/matHRLaunchPad.mat"; public static string matHRLaunchPadopt = "RoR2/DLC2/helminthroost/Assets/matHRLaunchPad_opt.mat"; public static string matHRLaunchPadDistort = "RoR2/DLC2/helminthroost/Assets/matHRLaunchPadDistort.mat"; public static string matHRLava = "RoR2/DLC2/helminthroost/Assets/matHRLava.mat"; public static string matHRLavaopt = "RoR2/DLC2/helminthroost/Assets/matHRLava_opt.mat"; public static string matHRLavaDiorama = "RoR2/DLC2/helminthroost/Assets/matHRLavaDiorama.mat"; public static string matHRLavaWeed = "RoR2/DLC2/helminthroost/Assets/matHRLavaWeed.mat"; public static string matHRLavaWeedopt = "RoR2/DLC2/helminthroost/Assets/matHRLavaWeed_opt.mat"; public static string matHRObsidian = "RoR2/DLC2/helminthroost/Assets/matHRObsidian.mat"; public static string matHRObsidianopt = "RoR2/DLC2/helminthroost/Assets/matHRObsidian_opt.mat"; public static string matHRRocks = "RoR2/DLC2/helminthroost/Assets/matHRRocks.mat"; public static string matHRRocksopt = "RoR2/DLC2/helminthroost/Assets/matHRRocks_opt.mat"; public static string matHRRug = "RoR2/DLC2/helminthroost/Assets/matHRRug.mat"; public static string matHRRugopt = "RoR2/DLC2/helminthroost/Assets/matHRRug_opt.mat"; public static string matHRShrineTable = "RoR2/DLC2/helminthroost/Assets/matHRShrineTable.mat"; public static string matHRShrineTableopt = "RoR2/DLC2/helminthroost/Assets/matHRShrineTable_opt.mat"; public static string matHRSmoke = "RoR2/DLC2/helminthroost/Assets/matHRSmoke.mat"; public static string matHRSmokeopt = "RoR2/DLC2/helminthroost/Assets/matHRSmoke_opt.mat"; public static string matHRTerrain = "RoR2/DLC2/helminthroost/Assets/matHRTerrain.mat"; public static string matHRTerrainopt = "RoR2/DLC2/helminthroost/Assets/matHRTerrain_opt.mat"; public static string matHRTerrainLava = "RoR2/DLC2/helminthroost/Assets/matHRTerrainLava.mat"; public static string matHRTerrainOuter = "RoR2/DLC2/helminthroost/Assets/matHRTerrainOuter.mat"; public static string matHRTerrainOuteropt = "RoR2/DLC2/helminthroost/Assets/matHRTerrainOuter_opt.mat"; public static string matHRTree = "RoR2/DLC2/helminthroost/Assets/matHRTree.mat"; public static string matHRTreeopt = "RoR2/DLC2/helminthroost/Assets/matHRTree_opt.mat"; public static string matHRTreeLeaf = "RoR2/DLC2/helminthroost/Assets/matHRTreeLeaf.mat"; public static string matHRTreeLeafopt = "RoR2/DLC2/helminthroost/Assets/matHRTreeLeaf_opt.mat"; public static string matHRWalls = "RoR2/DLC2/helminthroost/Assets/matHRWalls.mat"; public static string matHRWallsopt = "RoR2/DLC2/helminthroost/Assets/matHRWalls_opt.mat"; public static string matHRWorm = "RoR2/DLC2/helminthroost/Assets/matHRWorm.mat"; public static string matHRWormopt = "RoR2/DLC2/helminthroost/Assets/matHRWorm_opt.mat"; public static string matParticleEmber = "RoR2/DLC2/helminthroost/Assets/matParticleEmber.mat"; public static string matParticleEmberopt = "RoR2/DLC2/helminthroost/Assets/matParticleEmber_opt.mat"; public static string matParticleHRBubble = "RoR2/DLC2/helminthroost/Assets/matParticleHRBubble.mat"; public static string matParticleHRBubbleopt = "RoR2/DLC2/helminthroost/Assets/matParticleHRBubble_opt.mat"; public static string matParticleHREnvEmbers = "RoR2/DLC2/helminthroost/Assets/matParticleHREnvEmbers.mat"; public static string matParticleHREnvEmbersopt = "RoR2/DLC2/helminthroost/Assets/matParticleHREnvEmbers_opt.mat"; public static string matParticleHREnvSmoke = "RoR2/DLC2/helminthroost/Assets/matParticleHREnvSmoke.mat"; public static string matParticleHREnvSmokeopt = "RoR2/DLC2/helminthroost/Assets/matParticleHREnvSmoke_opt.mat"; public static string matSkyboxHelminthGrey = "RoR2/DLC2/helminthroost/Assets/matSkyboxHelminthGrey.mat"; public static string matTracerBright1 = "RoR2/DLC2/helminthroost/Assets/matTracerBright 1.mat"; public static string matHRMoonAtmosphere = "RoR2/DLC2/helminthroost/Assets/matHRMoonAtmosphere.mat"; public static string matHRMoonClouds1 = "RoR2/DLC2/helminthroost/Assets/matHRMoonClouds1.mat"; public static string matHRMoonClouds2 = "RoR2/DLC2/helminthroost/Assets/matHRMoonClouds2.mat"; public static string matHRSkyboxMoon = "RoR2/DLC2/helminthroost/Assets/matHRSkyboxMoon.mat"; public static string matHRLandingPad = "RoR2/DLC2/helminthroost/Assets/matHRLandingPad.mat"; public static string matHRLandingPadParticle = "RoR2/DLC2/helminthroost/Assets/matHRLandingPadParticle.mat"; public static string matBazaarSeerHelminthRoost = "RoR2/DLC2/helminthroost/matBazaarSeerHelminthRoost.mat"; public static string matTLCattails = "RoR2/DLC2/lakes/Assets/matTLCattails.mat"; public static string matTLCotton = "RoR2/DLC2/lakes/Assets/matTLCotton.mat"; public static string matTLGrass = "RoR2/DLC2/lakes/Assets/matTLGrass.mat"; public static string matTLGrassopt = "RoR2/DLC2/lakes/Assets/matTLGrass_opt.mat"; public static string matTLGrassSparseBlue = "RoR2/DLC2/lakes/Assets/matTLGrassSparseBlue.mat"; public static string matTLGrassSparseBlueopt = "RoR2/DLC2/lakes/Assets/matTLGrassSparseBlue_opt.mat"; public static string MatTLGrassSparseGreen = "RoR2/DLC2/lakes/Assets/MatTLGrassSparseGreen.mat"; public static string matTLGrassSparseGreenopt = "RoR2/DLC2/lakes/Assets/matTLGrassSparseGreen_opt.mat"; public static string matTLShrub = "RoR2/DLC2/lakes/Assets/matTLShrub.mat"; public static string matTLShrubopt = "RoR2/DLC2/lakes/Assets/matTLShrub_opt.mat"; public static string matTLVineHanging = "RoR2/DLC2/lakes/Assets/matTLVineHanging.mat"; public static string matTLVineHangingopt = "RoR2/DLC2/lakes/Assets/matTLVineHanging_opt.mat"; public static string matTLCloud = "RoR2/DLC2/lakes/Assets/matTLCloud.mat"; public static string matTLCloudopt = "RoR2/DLC2/lakes/Assets/matTLCloud_opt.mat"; public static string matTLCloudFloor = "RoR2/DLC2/lakes/Assets/matTLCloudFloor.mat"; public static string matTLCloudFlooropt = "RoR2/DLC2/lakes/Assets/matTLCloudFloor_opt.mat"; public static string matTLCont = "RoR2/DLC2/lakes/Assets/matTLCont.mat"; public static string matTLContopt = "RoR2/DLC2/lakes/Assets/matTLCont_opt.mat"; public static string matTLGFlowerBottom = "RoR2/DLC2/lakes/Assets/matTLGFlowerBottom.mat"; public static string matTLGFlowerBottomopt = "RoR2/DLC2/lakes/Assets/matTLGFlowerBottom_opt.mat"; public static string matTLGFlowerSkybox = "RoR2/DLC2/lakes/Assets/matTLGFlowerSkybox.mat"; public static string matTLGFlowerSkyboxopt = "RoR2/DLC2/lakes/Assets/matTLGFlowerSkybox_opt.mat"; public static string matTLGFlowerStem = "RoR2/DLC2/lakes/Assets/matTLGFlowerStem.mat"; public static string matTLGFlowerStemopt = "RoR2/DLC2/lakes/Assets/matTLGFlowerStem_opt.mat"; public static string matTLGFlowerTop = "RoR2/DLC2/lakes/Assets/matTLGFlowerTop.mat"; public static string matTLGFlowerTopopt = "RoR2/DLC2/lakes/Assets/matTLGFlowerTop_opt.mat"; public static string matTLGodray33 = "RoR2/DLC2/lakes/Assets/matTLGodray.mat"; public static string matTLGodrayopt = "RoR2/DLC2/lakes/Assets/matTLGodray_opt.mat"; public static string matTLGVine = "RoR2/DLC2/lakes/Assets/matTLGVine.mat"; public static string matTLGVineopt = "RoR2/DLC2/lakes/Assets/matTLGVine_opt.mat"; public static string matTLGVineLeaf = "RoR2/DLC2/lakes/Assets/matTLGVineLeaf.mat"; public static string matTLGVineLeafopt = "RoR2/DLC2/lakes/Assets/matTLGVineLeaf_opt.mat"; public static string matTLLightOrange = "RoR2/DLC2/lakes/Assets/matTLLightOrange.mat"; public static string matTLLightOrangeopt = "RoR2/DLC2/lakes/Assets/matTLLightOrange_opt.mat"; public static string matTLPlantBase = "RoR2/DLC2/lakes/Assets/matTLPlantBase.mat"; public static string matTLPlantBaseopt = "RoR2/DLC2/lakes/Assets/matTLPlantBase_opt.mat"; public static string matTLPlantJumpBase = "RoR2/DLC2/lakes/Assets/matTLPlantJumpBase.mat"; public static string matTLPlantLeafJump = "RoR2/DLC2/lakes/Assets/matTLPlantLeafJump.mat"; public static string matTLPlantLeafJumpopt = "RoR2/DLC2/lakes/Assets/matTLPlantLeafJump_opt.mat"; public static string matTLRocks = "RoR2/DLC2/lakes/Assets/matTLRocks.mat"; public static string matTLRocksopt = "RoR2/DLC2/lakes/Assets/matTLRocks_opt.mat"; public static string matTLShip = "RoR2/DLC2/lakes/Assets/matTLShip.mat"; public static string matTLShipopt = "RoR2/DLC2/lakes/Assets/matTLShip_opt.mat"; public static string matTLSkybox = "RoR2/DLC2/lakes/Assets/matTLSkybox.mat"; public static string matTLTerrainCliff = "RoR2/DLC2/lakes/Assets/matTLTerrainCliff.mat"; public static string matTLTerrainCliffopt = "RoR2/DLC2/lakes/Assets/matTLTerrainCliff_opt.mat"; public static string matTLTerrainSand = "RoR2/DLC2/lakes/Assets/matTLTerrainSand.mat"; public static string matTLTerrainSandopt = "RoR2/DLC2/lakes/Assets/matTLTerrainSand_opt.mat"; public static string matTLTerrainStone = "RoR2/DLC2/lakes/Assets/matTLTerrainStone.mat"; public static string matTLTerrainStoneopt = "RoR2/DLC2/lakes/Assets/matTLTerrainStone_opt.mat"; public static string matTLWaterDroplet = "RoR2/DLC2/lakes/Assets/matTLWaterDroplet.mat"; public static string matTLWaterDropletopt = "RoR2/DLC2/lakes/Assets/matTLWaterDroplet_opt.mat"; public static string matTLWaterMist = "RoR2/DLC2/lakes/Assets/matTLWaterMist.mat"; public static string matTLWaterMistopt = "RoR2/DLC2/lakes/Assets/matTLWaterMist_opt.mat"; public static string matTLFallingFoam = "RoR2/DLC2/lakes/Assets/matTLFallingFoam.mat"; public static string matTLFallingFoamopt = "RoR2/DLC2/lakes/Assets/matTLFallingFoam_opt.mat"; public static string matTLWater = "RoR2/DLC2/lakes/Assets/matTLWater.mat"; public static string matTLWateropt = "RoR2/DLC2/lakes/Assets/matTLWater_opt.mat"; public static string matTLWaterRed = "RoR2/DLC2/lakes/Assets/matTLWaterRed.mat"; public static string matTLWaterRedopt = "RoR2/DLC2/lakes/Assets/matTLWaterRed_opt.mat"; public static string matTLJumpPadBubble = "RoR2/DLC2/lakes/Assets/matTLJumpPadBubble.mat"; public static string matTLJumpPadBubbleopt = "RoR2/DLC2/lakes/Assets/matTLJumpPadBubble_opt.mat"; public static string matTLPlantJumpBaseopt = "RoR2/DLC2/lakes/Assets/matTLPlantJumpBase_opt.mat"; public static string matBazaarSeerLakes = "RoR2/DLC2/lakes/matBazaarSeerLakes.mat"; public static string matTLCattails32 = "RoR2/DLC2/lakesnight/Assets/matTLCattails.mat"; public static string matTLCattailsopt = "RoR2/DLC2/lakesnight/Assets/matTLCattails_opt.mat"; public static string matBlueGrassDecal = "RoR2/DLC2/lakesnight/Assets/matBlueGrassDecal.mat"; public static string matMushroomFade = "RoR2/DLC2/lakesnight/Assets/matMushroomFade.mat"; public static string matMushroomFadeopt = "RoR2/DLC2/lakesnight/Assets/matMushroomFade_opt.mat"; public static string matTLBugParticle = "RoR2/DLC2/lakesnight/Assets/matTLBugParticle.mat"; public static string matTLBugParticleopt = "RoR2/DLC2/lakesnight/Assets/matTLBugParticle_opt.mat"; public static string matTLCloudNight = "RoR2/DLC2/lakesnight/Assets/matTLCloudNight.mat"; public static string matTLCloudNightNebula = "RoR2/DLC2/lakesnight/Assets/matTLCloudNight_Nebula.mat"; public static string matTLCloudNightNebulaopt = "RoR2/DLC2/lakesnight/Assets/matTLCloudNight_Nebula_opt.mat"; public static string matTLCloudNightopt = "RoR2/DLC2/lakesnight/Assets/matTLCloudNight_opt.mat"; public static string matTLCotton26 = "RoR2/DLC2/lakesnight/Assets/matTLCotton.mat"; public static string matTLFirepit = "RoR2/DLC2/lakesnight/Assets/matTLFirepit.mat"; public static string matTLFirepitopt = "RoR2/DLC2/lakesnight/Assets/matTLFirepit_opt.mat"; public static string matTLFlatDarkPurple = "RoR2/DLC2/lakesnight/Assets/matTLFlatDarkPurple.mat"; public static string matTLFlatDarkPurpleopt = "RoR2/DLC2/lakesnight/Assets/matTLFlatDarkPurple_opt.mat"; public static string matTLFlatPurple = "RoR2/DLC2/lakesnight/Assets/matTLFlatPurple.mat"; public static string matTLFlatPurpleopt = "RoR2/DLC2/lakesnight/Assets/matTLFlatPurple_opt.mat"; public static string matTLGFlowerStemNight = "RoR2/DLC2/lakesnight/Assets/matTLGFlowerStemNight.mat"; public static string matTLGFlowerStemNightopt = "RoR2/DLC2/lakesnight/Assets/matTLGFlowerStemNight_opt.mat"; public static string matTLGFlowerTopNight = "RoR2/DLC2/lakesnight/Assets/matTLGFlowerTopNight.mat"; public static string matTLGFlowerTopNightopt = "RoR2/DLC2/lakesnight/Assets/matTLGFlowerTopNight_opt.mat"; public static string matTLGVineNight = "RoR2/DLC2/lakesnight/Assets/matTLGVineNight.mat"; public static string matTLGVineNightopt = "RoR2/DLC2/lakesnight/Assets/matTLGVineNight_opt.mat"; public static string matTLLightOrange10 = "RoR2/DLC2/lakesnight/Assets/matTLLightOrange.mat"; public static string matTLLightOrangeopt19 = "RoR2/DLC2/lakesnight/Assets/matTLLightOrange_opt.mat"; public static string matTLNightSkybox = "RoR2/DLC2/lakesnight/Assets/matTLNightSkybox.mat"; public static string matTLShroomBase = "RoR2/DLC2/lakesnight/Assets/matTLShroomBase.mat"; public static string matTLShroomBaseopt = "RoR2/DLC2/lakesnight/Assets/matTLShroomBase_opt.mat"; public static string matTLStarrySky = "RoR2/DLC2/lakesnight/Assets/matTLStarrySky.mat"; public static string matTLStarrySkyopt = "RoR2/DLC2/lakesnight/Assets/matTLStarrySky_opt.mat"; public static string matTLTerrainSandNight = "RoR2/DLC2/lakesnight/Assets/matTLTerrainSandNight.mat"; public static string matTLTerrainSandNightopt = "RoR2/DLC2/lakesnight/Assets/matTLTerrainSandNight_opt.mat"; public static string matTLTerrainStoneNight = "RoR2/DLC2/lakesnight/Assets/matTLTerrainStoneNight.mat"; public static string matTLTerrainStoneNightopt = "RoR2/DLC2/lakesnight/Assets/matTLTerrainStoneNight_opt.mat"; public static string matTLWaterDroplet35 = "RoR2/DLC2/lakesnight/Assets/matTLWaterDroplet.mat"; public static string matTLWaterDropletopt34 = "RoR2/DLC2/lakesnight/Assets/matTLWaterDroplet_opt.mat"; public static string matTLWaterDropletDark = "RoR2/DLC2/lakesnight/Assets/matTLWaterDropletDark.mat"; public static string matTLWaterDropletDarkopt = "RoR2/DLC2/lakesnight/Assets/matTLWaterDropletDark_opt.mat"; public static string matTLNRipplesGup = "RoR2/DLC2/lakesnight/Assets/matTLNRipplesGup.mat"; public static string matTLNRipplesGupopt = "RoR2/DLC2/lakesnight/Assets/matTLNRipplesGup_opt.mat"; public static string matTLSlowFallingFoamNight = "RoR2/DLC2/lakesnight/Assets/matTLSlowFallingFoamNight.mat"; public static string matTLSlowFallingFoamNightopt = "RoR2/DLC2/lakesnight/Assets/matTLSlowFallingFoamNight_opt.mat"; public static string matTLSlowWaterFallsNight = "RoR2/DLC2/lakesnight/Assets/matTLSlowWaterFallsNight.mat"; public static string matTLSlowWaterFallsNightopt = "RoR2/DLC2/lakesnight/Assets/matTLSlowWaterFallsNight_opt.mat"; public static string matTLSlowWaterNight = "RoR2/DLC2/lakesnight/Assets/matTLSlowWaterNight.mat"; public static string matTLSlowWaterNightopt = "RoR2/DLC2/lakesnight/Assets/matTLSlowWaterNight_opt.mat"; public static string matTLSlowWaterNightCave = "RoR2/DLC2/lakesnight/Assets/matTLSlowWaterNightCave.mat"; public static string matTLSlowWaterNightCaveopt = "RoR2/DLC2/lakesnight/Assets/matTLSlowWaterNightCave_opt.mat"; public static string matTLWaterFogNight = "RoR2/DLC2/lakesnight/Assets/matTLWaterFogNight.mat"; public static string matTLWaterFogNightopt = "RoR2/DLC2/lakesnight/Assets/matTLWaterFogNight_opt.mat"; public static string matBazaarSeerLakesNight = "RoR2/DLC2/lakesnight/matBazaarSeerLakesNight.mat"; public static string Leaves0LOD04 = "RoR2/DLC2/lemuriantemple/Assets/Leaves_0_LOD0.mat"; public static string Leaves0LOD1 = "RoR2/DLC2/lemuriantemple/Assets/Leaves_0_LOD1.mat"; public static string matLTBlackMetal = "RoR2/DLC2/lemuriantemple/Assets/matLTBlackMetal.mat"; public static string matLTBlackMetalopt = "RoR2/DLC2/lemuriantemple/Assets/matLTBlackMetal_opt.mat"; public static string matLTCacatusNeedle = "RoR2/DLC2/lemuriantemple/Assets/matLTCacatusNeedle.mat"; public static string matLTCacatusNeedleopt = "RoR2/DLC2/lemuriantemple/Assets/matLTCacatusNeedle_opt.mat"; public static string matLTCactus = "RoR2/DLC2/lemuriantemple/Assets/matLTCactus.mat"; public static string matLTCactusopt = "RoR2/DLC2/lemuriantemple/Assets/matLTCactus_opt.mat"; public static string matLTColumnTopper = "RoR2/DLC2/lemuriantemple/Assets/matLTColumnTopper.mat"; public static string matLTColumnTopperopt = "RoR2/DLC2/lemuriantemple/Assets/matLTColumnTopper_opt.mat"; public static string matLTColumnTopperB = "RoR2/DLC2/lemuriantemple/Assets/matLTColumnTopperB.mat"; public static string matLTColumnTopperBopt = "RoR2/DLC2/lemuriantemple/Assets/matLTColumnTopperB_opt.mat"; public static string matLTCrystal = "RoR2/DLC2/lemuriantemple/Assets/matLTCrystal.mat"; public static string matLTCrystalopt = "RoR2/DLC2/lemuriantemple/Assets/matLTCrystal_opt.mat"; public static string matLTFloor = "RoR2/DLC2/lemuriantemple/Assets/matLTFloor.mat"; public static string matLTFlooropt = "RoR2/DLC2/lemuriantemple/Assets/matLTFloor_opt.mat"; public static string matLTGodray11 = "RoR2/DLC2/lemuriantemple/Assets/matLTGodray.mat"; public static string matLTGodrayopt = "RoR2/DLC2/lemuriantemple/Assets/matLTGodray_opt.mat"; public static string matLTGodrayBarrier = "RoR2/DLC2/lemuriantemple/Assets/matLTGodrayBarrier.mat"; public static string matLTGodrayBarrieropt = "RoR2/DLC2/lemuriantemple/Assets/matLTGodrayBarrier_opt.mat"; public static string matLTGodrayDiorama = "RoR2/DLC2/lemuriantemple/Assets/matLTGodrayDiorama.mat"; public static string matLTGoldDecal = "RoR2/DLC2/lemuriantemple/Assets/matLTGoldDecal.mat"; public static string matLTGoldDecalopt = "RoR2/DLC2/lemuriantemple/Assets/matLTGoldDecal_opt.mat"; public static string matLTGrass = "RoR2/DLC2/lemuriantemple/Assets/matLTGrass.mat"; public static string matLTRedRoots = "RoR2/DLC2/lemuriantemple/Assets/matLTRedRoots.mat"; public static string matLTTallGrass = "RoR2/DLC2/lemuriantemple/Assets/matLTTallGrass.mat"; public static string matLTTallGrassopt = "RoR2/DLC2/lemuriantemple/Assets/matLTTallGrass_opt.mat"; public static string matLTTempleTrim = "RoR2/DLC2/lemuriantemple/Assets/matLTTempleTrim.mat"; public static string matLTTempleTrimopt = "RoR2/DLC2/lemuriantemple/Assets/matLTTempleTrim_opt.mat"; public static string matLTTerrain = "RoR2/DLC2/lemuriantemple/Assets/matLTTerrain.mat"; public static string matLTTerrainopt = "RoR2/DLC2/lemuriantemple/Assets/matLTTerrain_opt.mat"; public static string matLTVineHanging = "RoR2/DLC2/lemuriantemple/Assets/matLTVineHanging.mat"; public static string matLTwater = "RoR2/DLC2/lemuriantemple/Assets/matLTwater.mat"; public static string matLTwateropt = "RoR2/DLC2/lemuriantemple/Assets/matLTwater_opt.mat"; public static string matLTwaterfloor = "RoR2/DLC2/lemuriantemple/Assets/matLTwaterfloor.mat"; public static string matLTwaterflooropt = "RoR2/DLC2/lemuriantemple/Assets/matLTwaterfloor_opt.mat"; public static string matLTWaterfoam = "RoR2/DLC2/lemuriantemple/Assets/matLTWaterfoam.mat"; public static string matLTWaterfoamopt = "RoR2/DLC2/lemuriantemple/Assets/matLTWaterfoam_opt.mat"; public static string matBazaarSeerLemurianTemple = "RoR2/DLC2/lemuriantemple/matBazaarSeerLemurianTemple.mat"; public static string matLTSkybox = "RoR2/DLC2/lemuriantemple/matLTSkybox.mat"; public static string Branches0LOD030 = "RoR2/DLC2/meridian/Assets/Branches_0_LOD0.mat"; public static string Branches0LOD117 = "RoR2/DLC2/meridian/Assets/Branches_0_LOD1.mat"; public static string Branches0LOD25 = "RoR2/DLC2/meridian/Assets/Branches_0_LOD2.mat"; public static string Branches1LOD026 = "RoR2/DLC2/meridian/Assets/Branches_1_LOD0.mat"; public static string Branches1LOD136 = "RoR2/DLC2/meridian/Assets/Branches_1_LOD1.mat"; public static string Branches1LOD21 = "RoR2/DLC2/meridian/Assets/Branches_1_LOD2.mat"; public static string Fronds2LOD021 = "RoR2/DLC2/meridian/Assets/Fronds_2_LOD0.mat"; public static string Fronds2LOD124 = "RoR2/DLC2/meridian/Assets/Fronds_2_LOD1.mat"; public static string Fronds2LOD221 = "RoR2/DLC2/meridian/Assets/Fronds_2_LOD2.mat"; public static string matPMWillowBark = "RoR2/DLC2/meridian/Assets/matPMWillowBark.mat"; public static string matPMWillowLeaf = "RoR2/DLC2/meridian/Assets/matPMWillowLeaf.mat"; public static string Fronds1LOD017 = "RoR2/DLC2/meridian/Assets/Fronds_1_LOD0.mat"; public static string Leaves2LOD09 = "RoR2/DLC2/meridian/Assets/Leaves_2_LOD0.mat"; public static string Leaves2LOD11 = "RoR2/DLC2/meridian/Assets/Leaves_2_LOD1.mat"; public static string FacingLeaves1LOD027 = "RoR2/DLC2/meridian/Assets/FacingLeaves_1_LOD0.mat"; public static string FacingLeaves1LOD1 = "RoR2/DLC2/meridian/Assets/FacingLeaves_1_LOD1.mat"; public static string Leaves0LOD014 = "RoR2/DLC2/meridian/Assets/Leaves_0_LOD0.mat"; public static string matPMGoldenLeaf = "RoR2/DLC2/meridian/Assets/matPMGoldenLeaf.mat"; public static string Leaves031 = "RoR2/DLC2/meridian/Assets/Leaves_0.mat"; public static string matPMGrass = "RoR2/DLC2/meridian/Assets/matPMGrass.mat"; public static string matPMCloudBackground = "RoR2/DLC2/meridian/Assets/matPMCloudBackground.mat"; public static string matPMCrownGlow = "RoR2/DLC2/meridian/Assets/matPMCrownGlow.mat"; public static string matPMDiorama = "RoR2/DLC2/meridian/Assets/matPMDiorama.mat"; public static string matPMEnergyDoor = "RoR2/DLC2/meridian/Assets/matPMEnergyDoor.mat"; public static string matPMEnergyDooropt = "RoR2/DLC2/meridian/Assets/matPMEnergyDoor_opt.mat"; public static string matPMFloatingCrystal = "RoR2/DLC2/meridian/Assets/matPMFloatingCrystal.mat"; public static string matPMFloatingCrystalopt = "RoR2/DLC2/meridian/Assets/matPMFloatingCrystal_opt.mat"; public static string matPMGlow = "RoR2/DLC2/meridian/Assets/matPMGlow.mat"; public static string matPMGlowopt = "RoR2/DLC2/meridian/Assets/matPMGlow_opt.mat"; public static string matPMGlowActivate = "RoR2/DLC2/meridian/Assets/matPMGlowActivate.mat"; public static string matPMGlowActivateopt = "RoR2/DLC2/meridian/Assets/matPMGlowActivate_opt.mat"; public static string matPMGold = "RoR2/DLC2/meridian/Assets/matPMGold.mat"; public static string matPMGoldopt = "RoR2/DLC2/meridian/Assets/matPMGold_opt.mat"; public static string matPMGoldenTree = "RoR2/DLC2/meridian/Assets/matPMGoldenTree.mat"; public static string matPMGoldenTreeopt = "RoR2/DLC2/meridian/Assets/matPMGoldenTree_opt.mat"; public static string matPMGoldenTreeLeafGlow = "RoR2/DLC2/meridian/Assets/matPMGoldenTreeLeafGlow.mat"; public static string matPMGoldenTreeLeafGlowopt = "RoR2/DLC2/meridian/Assets/matPMGoldenTreeLeafGlow_opt.mat"; public static string matPMGoldenTreeRay = "RoR2/DLC2/meridian/Assets/matPMGoldenTreeRay.mat"; public static string matPMGoldenTreeRayopt = "RoR2/DLC2/meridian/Assets/matPMGoldenTreeRay_opt.mat"; public static string matPMLaunchingPadBeam = "RoR2/DLC2/meridian/Assets/matPMLaunchingPadBeam.mat"; public static string matPMLaunchPadRing = "RoR2/DLC2/meridian/Assets/matPMLaunchPadRing.mat"; public static string matPMLightBeam = "RoR2/DLC2/meridian/Assets/matPMLightBeam.mat"; public static string matPMLightBeamopt = "RoR2/DLC2/meridian/Assets/matPMLightBeam_opt.mat"; public static string matPMLightBeamActivate = "RoR2/DLC2/meridian/Assets/matPMLightBeamActivate.mat"; public static string matPMLightBeamActivateopt = "RoR2/DLC2/meridian/Assets/matPMLightBeamActivate_opt.mat"; public static string matPMLightning = "RoR2/DLC2/meridian/Assets/matPMLightning.mat"; public static string matPMLightningopt = "RoR2/DLC2/meridian/Assets/matPMLightning_opt.mat"; public static string matPMLightningActivate = "RoR2/DLC2/meridian/Assets/matPMLightningActivate.mat"; public static string matPMLunarGazeEyePhaseThree = "RoR2/DLC2/meridian/Assets/matPMLunarGazeEyePhaseThree.mat"; public static string matPMLunarGazeEyePhaseTwo = "RoR2/DLC2/meridian/Assets/matPMLunarGazeEyePhaseTwo.mat"; public static string matPMRain = "RoR2/DLC2/meridian/Assets/matPMRain.mat"; public static string matPMSconceBeam11 = "RoR2/DLC2/meridian/Assets/matPMSconceBeam.mat"; public static string matPMSconceBeamopt = "RoR2/DLC2/meridian/Assets/matPMSconceBeam_opt.mat"; public static string matPMShrineStone = "RoR2/DLC2/meridian/Assets/matPMShrineStone.mat"; public static string matPMShrineStoneActivate = "RoR2/DLC2/meridian/Assets/matPMShrineStoneActivate.mat"; public static string matPMShrineStoneBell = "RoR2/DLC2/meridian/Assets/matPMShrineStoneBell.mat"; public static string matPMShrineStoneBellopt = "RoR2/DLC2/meridian/Assets/matPMShrineStoneBell_opt.mat"; public static string matPMStatueBrickRed = "RoR2/DLC2/meridian/Assets/matPMStatueBrickRed.mat"; public static string matPMStatueBrickRedopt = "RoR2/DLC2/meridian/Assets/matPMStatueBrickRed_opt.mat"; public static string matPMStatueTrim = "RoR2/DLC2/meridian/Assets/matPMStatueTrim.mat"; public static string matPMStatueTrimopt = "RoR2/DLC2/meridian/Assets/matPMStatueTrim_opt.mat"; public static string matPMStatueTrimRed = "RoR2/DLC2/meridian/Assets/matPMStatueTrimRed.mat"; public static string matPMStatueTrimRedopt = "RoR2/DLC2/meridian/Assets/matPMStatueTrimRed_opt.mat"; public static string matPMStormCloud = "RoR2/DLC2/meridian/Assets/matPMStormCloud.mat"; public static string matPMStormCloudopt = "RoR2/DLC2/meridian/Assets/matPMStormCloud_opt.mat"; public static string matPMTerrainBackground = "RoR2/DLC2/meridian/Assets/matPMTerrainBackground.mat"; public static string matPMTerrainBackgroundopt = "RoR2/DLC2/meridian/Assets/matPMTerrainBackground_opt.mat"; public static string matPMTerrainDirt = "RoR2/DLC2/meridian/Assets/matPMTerrainDirt.mat"; public static string matPMTerrainDirtopt = "RoR2/DLC2/meridian/Assets/matPMTerrainDirt_opt.mat"; public static string matPMTerrainDirtStatue = "RoR2/DLC2/meridian/Assets/matPMTerrainDirtStatue.mat"; public static string matPMTerrainDirtStatueopt = "RoR2/DLC2/meridian/Assets/matPMTerrainDirtStatue_opt.mat"; public static string matPMTerrainPlayZone = "RoR2/DLC2/meridian/Assets/matPMTerrainPlayZone.mat"; public static string matPMTerrainPlayZoneopt = "RoR2/DLC2/meridian/Assets/matPMTerrainPlayZone_opt.mat"; public static string matPMTerrainPlayZoneDark = "RoR2/DLC2/meridian/Assets/matPMTerrainPlayZoneDark.mat"; public static string matPMTerrainPlayZoneDarkopt = "RoR2/DLC2/meridian/Assets/matPMTerrainPlayZoneDark_opt.mat"; public static string matPMTerrainPlayZoneWall = "RoR2/DLC2/meridian/Assets/matPMTerrainPlayZoneWall.mat"; public static string matPMTerrainPlayZoneWallopt = "RoR2/DLC2/meridian/Assets/matPMTerrainPlayZoneWall_opt.mat"; public static string matPMTreeDecal = "RoR2/DLC2/meridian/Assets/matPMTreeDecal.mat"; public static string matPMWater = "RoR2/DLC2/meridian/Assets/matPMWater.mat"; public static string matPMWateropt = "RoR2/DLC2/meridian/Assets/matPMWater_opt.mat"; public static string matTLStormCloudFloor = "RoR2/DLC2/meridian/Assets/matTLStormCloudFloor.mat"; public static string matBazaarSeerMeridian = "RoR2/DLC2/meridian/matBazaarSeerMeridian.mat"; public static string matSkyboxPM = "RoR2/DLC2/meridian/matSkyboxPM.mat"; public static string matSkyboxPMActivate = "RoR2/DLC2/meridian/matSkyboxPMActivate.mat"; public static string matLightningIndicatorWall = "RoR2/DLC2/meridian/DisableSkillsLightning/matLightningIndicatorWall.mat"; public static string matLightningInicator = "RoR2/DLC2/meridian/DisableSkillsLightning/matLightningInicator.mat"; public static string matLightningStrikeImpactEffect1 = "RoR2/DLC2/meridian/DisableSkillsLightning/matLightningStrikeImpactEffect1.mat"; public static string matLightningStrikePredictionEffect1 = "RoR2/DLC2/meridian/DisableSkillsLightning/matLightningStrikePredictionEffect1.mat"; public static string matEventClearedVFX1 = "RoR2/DLC2/meridian/matEventClearedVFX1.mat"; public static string matEventClearedVFX2 = "RoR2/DLC2/meridian/matEventClearedVFX2.mat"; public static string matEventClearedVFX3 = "RoR2/DLC2/meridian/matEventClearedVFX3.mat"; public static string matEventClearedVFX4 = "RoR2/DLC2/meridian/matEventClearedVFX4.mat"; public static string matLunarGazeChargeLightTunnel = "RoR2/DLC2/meridian/matLunarGazeChargeLightTunnel.mat"; public static string matLunarGazeChargeLightTunnelPhase3 = "RoR2/DLC2/meridian/matLunarGazeChargeLightTunnelPhase3.mat"; public static string matMeridianArenaFormDestructVFX1 = "RoR2/DLC2/meridian/matMeridianArenaFormDestructVFX1.mat"; public static string matMeridianArenaFormDestructVFX2 = "RoR2/DLC2/meridian/matMeridianArenaFormDestructVFX2.mat"; public static string matMeridianArenaFormDestructVFX3 = "RoR2/DLC2/meridian/matMeridianArenaFormDestructVFX3.mat"; public static string Fronds0LOD01 = "RoR2/DLC2/village/Assets/Fronds_0_LOD0 1.mat"; public static string Fronds0LOD025 = "RoR2/DLC2/village/Assets/Fronds_0_LOD0.mat"; public static string matLVFernA = "RoR2/DLC2/village/Assets/matLVFernA.mat"; public static string matLVFernB = "RoR2/DLC2/village/Assets/matLVFernB.mat"; public static string matLVFernBopt = "RoR2/DLC2/village/Assets/matLVFernB_opt.mat"; public static string matLVFernC = "RoR2/DLC2/village/Assets/matLVFernC.mat"; public static string matLVFernCopt = "RoR2/DLC2/village/Assets/matLVFernC_opt.mat"; public static string matLVGrass = "RoR2/DLC2/village/Assets/matLVGrass.mat"; public static string matLVGrassopt = "RoR2/DLC2/village/Assets/matLVGrass_opt.mat"; public static string matLVArc = "RoR2/DLC2/village/Assets/matLVArc.mat"; public static string matLVArcopt = "RoR2/DLC2/village/Assets/matLVArc_opt.mat"; public static string matLVArcFar = "RoR2/DLC2/village/Assets/matLVArcFar.mat"; public static string matLVArcFaropt = "RoR2/DLC2/village/Assets/matLVArcFar_opt.mat"; public static string matLVArcFloors = "RoR2/DLC2/village/Assets/matLVArcFloors.mat"; public static string matLVArcFloorsopt = "RoR2/DLC2/village/Assets/matLVArcFloors_opt.mat"; public static string matLVChime = "RoR2/DLC2/village/Assets/matLVChime.mat"; public static string matLVChimeopt = "RoR2/DLC2/village/Assets/matLVChime_opt.mat"; public static string matLVCloudA = "RoR2/DLC2/village/Assets/matLVCloudA.mat"; public static string matLVCloudAopt = "RoR2/DLC2/village/Assets/matLVCloudA_opt.mat"; public static string matLVCloudB = "RoR2/DLC2/village/Assets/matLVCloudB.mat"; public static string matLVCloudBopt = "RoR2/DLC2/village/Assets/matLVCloudB_opt.mat"; public static string matLVFlyingGrass = "RoR2/DLC2/village/Assets/matLVFlyingGrass.mat"; public static string matLVFlyingGrassopt = "RoR2/DLC2/village/Assets/matLVFlyingGrass_opt.mat"; public static string matLVFogDeep = "RoR2/DLC2/village/Assets/matLVFogDeep.mat"; public static string matLVFogDeepopt = "RoR2/DLC2/village/Assets/matLVFogDeep_opt.mat"; public static string matLVGlassEgg = "RoR2/DLC2/village/Assets/matLVGlassEgg.mat"; public static string matLVGlassEggopt = "RoR2/DLC2/village/Assets/matLVGlassEgg_opt.mat"; public static string matLVLunarSpikes = "RoR2/DLC2/village/Assets/matLVLunarSpikes.mat"; public static string matLVLunarSpikesopt = "RoR2/DLC2/village/Assets/matLVLunarSpikes_opt.mat"; public static string matLVRocks = "RoR2/DLC2/village/Assets/matLVRocks.mat"; public static string matLVRocksopt = "RoR2/DLC2/village/Assets/matLVRocks_opt.mat"; public static string matLVRope = "RoR2/DLC2/village/Assets/matLVRope.mat"; public static string matLVRopeopt = "RoR2/DLC2/village/Assets/matLVRope_opt.mat"; public static string matLVSand = "RoR2/DLC2/village/Assets/matLVSand.mat"; public static string matLVSandopt = "RoR2/DLC2/village/Assets/matLVSand_opt.mat"; public static string matLVSkybox = "RoR2/DLC2/village/Assets/matLVSkybox.mat"; public static string matLVStormClouds = "RoR2/DLC2/village/Assets/matLVStormClouds.mat"; public static string matLVStormCloudsopt = "RoR2/DLC2/village/Assets/matLVStormClouds_opt.mat"; public static string matLVTerrain = "RoR2/DLC2/village/Assets/matLVTerrain.mat"; public static string matLVTerrainopt = "RoR2/DLC2/village/Assets/matLVTerrain_opt.mat"; public static string matLVTerrainFar = "RoR2/DLC2/village/Assets/matLVTerrainFar.mat"; public static string matLVTerrainFaropt = "RoR2/DLC2/village/Assets/matLVTerrainFar_opt.mat"; public static string matBazaarSeerVillage = "RoR2/DLC2/village/matBazaarSeerVillage.mat"; public static string matLVNightHangingVines = "RoR2/DLC2/villagenight/Assets/matLVNight_HangingVines.mat"; public static string matLVNightHangingVinesopt = "RoR2/DLC2/villagenight/Assets/matLVNight_HangingVines_opt.mat"; public static string matLVNightGrass = "RoR2/DLC2/villagenight/Assets/matLVNightGrass.mat"; public static string matLVNightGrassopt = "RoR2/DLC2/villagenight/Assets/matLVNightGrass_opt.mat"; public static string matLVNightValleyLily = "RoR2/DLC2/villagenight/Assets/matLVNightValleyLily.mat"; public static string matLVNightValleyLilyopt = "RoR2/DLC2/villagenight/Assets/matLVNightValleyLily_opt.mat"; public static string matLVNightVines = "RoR2/DLC2/villagenight/Assets/matLVNightVines.mat"; public static string matLVGlassEggNight = "RoR2/DLC2/villagenight/Assets/matLVGlassEggNight.mat"; public static string matLVGlassEggNightopt = "RoR2/DLC2/villagenight/Assets/matLVGlassEggNight_opt.mat"; public static string matLVLunarSpikesNight = "RoR2/DLC2/villagenight/Assets/matLVLunarSpikesNight.mat"; public static string matLVLunarSpikesNightopt = "RoR2/DLC2/villagenight/Assets/matLVLunarSpikesNight_opt.mat"; public static string matLVNBrazierChain = "RoR2/DLC2/villagenight/Assets/matLVNBrazierChain.mat"; public static string matLVNBrazierChainopt = "RoR2/DLC2/villagenight/Assets/matLVNBrazierChain_opt.mat"; public static string matLVNightArc = "RoR2/DLC2/villagenight/Assets/matLVNightArc.mat"; public static string matLVNightArcopt = "RoR2/DLC2/villagenight/Assets/matLVNightArc_opt.mat"; public static string matLVNightArcFloors = "RoR2/DLC2/villagenight/Assets/matLVNightArcFloors.mat"; public static string matLVNightArcFloorsopt = "RoR2/DLC2/villagenight/Assets/matLVNightArcFloors_opt.mat"; public static string matLVnightCloudA = "RoR2/DLC2/villagenight/Assets/matLVnightCloudA.mat"; public static string matLVnightCloudAopt = "RoR2/DLC2/villagenight/Assets/matLVnightCloudA_opt.mat"; public static string matLVnightCloudB = "RoR2/DLC2/villagenight/Assets/matLVnightCloudB.mat"; public static string matLVnightCloudBopt = "RoR2/DLC2/villagenight/Assets/matLVnightCloudB_opt.mat"; public static string matLVNightEnvSmoke = "RoR2/DLC2/villagenight/Assets/matLVNightEnvSmoke.mat"; public static string matLVNightEnvSmokeopt = "RoR2/DLC2/villagenight/Assets/matLVNightEnvSmoke_opt.mat"; public static string matLVNightFogDeep = "RoR2/DLC2/villagenight/Assets/matLVNightFogDeep.mat"; public static string matLVNightFogDeepopt = "RoR2/DLC2/villagenight/Assets/matLVNightFogDeep_opt.mat"; public static string matLVNightLowFog = "RoR2/DLC2/villagenight/Assets/matLVNightLowFog.mat"; public static string matLVNightLowFogopt = "RoR2/DLC2/villagenight/Assets/matLVNightLowFog_opt.mat"; public static string matLVNightMoon = "RoR2/DLC2/villagenight/Assets/matLVNightMoon.mat"; public static string matLVNightMoonopt = "RoR2/DLC2/villagenight/Assets/matLVNightMoon_opt.mat"; public static string matLVNightMoonGlare = "RoR2/DLC2/villagenight/Assets/matLVNightMoonGlare.mat"; public static string matLVNightMoonGlareopt = "RoR2/DLC2/villagenight/Assets/matLVNightMoonGlare_opt.mat"; public static string matLVnightSkybox = "RoR2/DLC2/villagenight/Assets/matLVnightSkybox.mat"; public static string matLVnightSkyboxopt = "RoR2/DLC2/villagenight/Assets/matLVnightSkybox_opt.mat"; public static string matLVNightTerrain = "RoR2/DLC2/villagenight/Assets/matLVNightTerrain.mat"; public static string matLVNightTerrainopt = "RoR2/DLC2/villagenight/Assets/matLVNightTerrain_opt.mat"; public static string matLVNightTerrainFar = "RoR2/DLC2/villagenight/Assets/matLVNightTerrainFar.mat"; public static string matLVNightTerrainFaropt = "RoR2/DLC2/villagenight/Assets/matLVNightTerrainFar_opt.mat"; public static string matLVNightWater = "RoR2/DLC2/villagenight/Assets/matLVNightWater.mat"; public static string matLVNightWateropt = "RoR2/DLC2/villagenight/Assets/matLVNightWater_opt.mat"; public static string matLVNStars = "RoR2/DLC2/villagenight/Assets/matLVNStars.mat"; public static string matLVNStarsopt = "RoR2/DLC2/villagenight/Assets/matLVNStars_opt.mat"; public static string matLVRocksopt27 = "RoR2/DLC2/villagenight/Assets/matLVRocks_opt.mat"; public static string matBazaarSeerVillagenight = "RoR2/DLC2/villagenight/matBazaarSeerVillagenight.mat"; public static string matShrineBossSymbolPrestige = "RoR2/DLC3/matShrineBossSymbolPrestige.mat"; public static string matShrineBossSymbolPrestigeopt = "RoR2/DLC3/matShrineBossSymbolPrestige_opt.mat"; public static string MatDefectiveUnit1 = "RoR2/DLC3/DefectiveUnit/MatDefectiveUnit 1.mat"; public static string matDefectiveUnit = "RoR2/DLC3/DefectiveUnit/matDefectiveUnit.mat"; public static string matDefectiveUnitLightningSphere = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitLightningSphere.mat"; public static string matDefectiveUnitOverlaySpawn = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitOverlay_Spawn.mat"; public static string matDefectiveUnitSmokeRings = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitSmokeRings.mat"; public static string matDefectiveUnitSphereExplosion = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitSphereExplosion.mat"; public static string matDefectiveUnitAoECylinder = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitAoECylinder.mat"; public static string matDefectiveUnitAoECylinder2 = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitAoECylinder2.mat"; public static string matDefectiveUnitDenialSphereEnergy = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitDenialSphereEnergy.mat"; public static string matDefectiveUnitDenialSphereNoise = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitDenialSphereNoise.mat"; public static string matDefectiveUnitDetonateSphereBurst = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitDetonateSphereBurst.mat"; public static string matDefectiveUnitDetonateSphereEnergy = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitDetonateSphereEnergy.mat"; public static string matDefectiveUnitDetonateSphereEnergyPers = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitDetonateSphereEnergyPers.mat"; public static string matDefectiveUnitDetonateSphereNoise = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitDetonateSphereNoise.mat"; public static string matDefectiveUnitDetonateSpherePulse = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitDetonateSpherePulse.mat"; public static string matDefectiveUnitNullifyPulse = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitNullifyPulse.mat"; public static string matDefectiveUnitNullifySpherePulse = "RoR2/DLC3/DefectiveUnit/matDefectiveUnitNullifySpherePulse.mat"; public static string matDenialParticleSoftGlow = "RoR2/DLC3/DefectiveUnit/matDenialParticleSoftGlow.mat"; public static string matDenialSparks = "RoR2/DLC3/DefectiveUnit/matDenialSparks.mat"; public static string matDenialSparkStreaks = "RoR2/DLC3/DefectiveUnit/matDenialSparkStreaks.mat"; public static string matDetonateDebuffRing = "RoR2/DLC3/DefectiveUnit/matDetonateDebuffRing.mat"; public static string matDetonateParticleSoftGlow = "RoR2/DLC3/DefectiveUnit/matDetonateParticleSoftGlow.mat"; public static string matDetonateSolusRings = "RoR2/DLC3/DefectiveUnit/matDetonateSolusRings.mat"; public static string matNullifyParticleSoftGlow = "RoR2/DLC3/DefectiveUnit/matNullifyParticleSoftGlow.mat"; public static string matDestructibleSpawnerBlastRing = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerBlastRing.mat"; public static string matDestructibleSpawnerBlastWave = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerBlastWave.mat"; public static string matDestructibleSpawnerChainVisuals = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerChainVisuals.mat"; public static string matDestructibleSpawnerDistortion = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerDistortion.mat"; public static string matDestructibleSpawnerMushroomCloud = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerMushroomCloud.mat"; public static string matDestructibleSpawnerMushroomCloudRing = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerMushroomCloudRing.mat"; public static string matDestructibleSpawnerSparks = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerSparks.mat"; public static string matDestructibleSpawnerSpawnDynamite = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerSpawnDynamite.mat"; public static string matDestructibleSpawnerSpawnRing = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerSpawnRing.mat"; public static string matDestructibleSpawnerStreaks = "RoR2/DLC3/DestructibleSpawner/matDestructibleSpawnerStreaks.mat"; public static string matDistructibleSpawnerBlastRing = "RoR2/DLC3/DestructibleSpawner/matDistructibleSpawnerBlastRing.mat"; public static string matDrifterBagAlt = "RoR2/DLC3/Drifter/matDrifterBagAlt.mat"; public static string matDrifterBodyAlt = "RoR2/DLC3/Drifter/matDrifterBodyAlt.mat"; public static string matDrifter = "RoR2/DLC3/Drifter/matDrifter.mat"; public static string matDrifterArcVisual = "RoR2/DLC3/Drifter/matDrifterArcVisual.mat"; public static string matDrifterAreaIndicatorRim = "RoR2/DLC3/Drifter/matDrifterAreaIndicatorRim.mat"; public static string matDrifterStickyBomb = "RoR2/DLC3/Drifter/matDrifterStickyBomb.mat"; public static string matDrone2Broken = "RoR2/DLC3/Drifter/matDrone2Broken.mat"; public static string matDroneBrokenGeneric1 = "RoR2/DLC3/Drifter/matDroneBrokenGeneric 1.mat"; public static string matHANDBroken = "RoR2/DLC3/Drifter/matHANDBroken.mat"; public static string matSkull = "RoR2/DLC3/Drifter/matSkull.mat"; public static string matSquidInvert = "RoR2/DLC3/Drifter/matSquidInvert.mat"; public static string JunkTrimSheet = "RoR2/DLC3/Drifter/JunkTrimSheet.mat"; public static string matDrifterCleanUpJunkProjectileTrail = "RoR2/DLC3/Drifter/matDrifterCleanUpJunkProjectileTrail.mat"; public static string matDrifterJunkOutline = "RoR2/DLC3/Drifter/matDrifterJunkOutline.mat"; public static string matDrifterJunkProjectileExpTrail = "RoR2/DLC3/Drifter/matDrifterJunkProjectileExpTrail.mat"; public static string matDrifterJunkProjectileTrail = "RoR2/DLC3/Drifter/matDrifterJunkProjectileTrail.mat"; public static string matDrifterJunkTrailOrbit = "RoR2/DLC3/Drifter/matDrifterJunkTrailOrbit.mat"; public static string matDrifterJunkTrailProjectile = "RoR2/DLC3/Drifter/matDrifterJunkTrailProjectile.mat"; public static string matDrifterJunkTrailProjectileExplosive = "RoR2/DLC3/Drifter/matDrifterJunkTrailProjectileExplosive.mat"; public static string matJumpCube = "RoR2/DLC3/Drifter/matJumpCube.mat"; public static string matJunkCubeTrail = "RoR2/DLC3/Drifter/matJunkCubeTrail.mat"; public static string matTinkerWaveGrid = "RoR2/DLC3/Drifter/matTinkerWaveGrid.mat"; public static string matTinkerWaveIntersection = "RoR2/DLC3/Drifter/matTinkerWaveIntersection.mat"; public static string matTinkerWaveRim = "RoR2/DLC3/Drifter/matTinkerWaveRim.mat"; public static string matTrimSheetTinkerDevice = "RoR2/DLC3/Drifter/matTrimSheetTinkerDevice.mat"; public static string matDrifterBluntForceCenterImpact = "RoR2/DLC3/Drifter/matDrifterBluntForceCenterImpact.mat"; public static string matDrifterBluntForceHitSpark = "RoR2/DLC3/Drifter/matDrifterBluntForceHitSpark.mat"; public static string matDrifterBluntForceImpactSphere = "RoR2/DLC3/Drifter/matDrifterBluntForceImpactSphere.mat"; public static string matDrifterBluntForceSlamRadial = "RoR2/DLC3/Drifter/matDrifterBluntForceSlamRadial.mat"; public static string matDrifterBluntForceSlamSwing = "RoR2/DLC3/Drifter/matDrifterBluntForceSlamSwing.mat"; public static string matDrifterBluntForceStreakImpact = "RoR2/DLC3/Drifter/matDrifterBluntForceStreakImpact.mat"; public static string matDrifterBluntForceSWImpact = "RoR2/DLC3/Drifter/matDrifterBluntForceSWImpact.mat"; public static string matDrifterBluntForceSWImpact02 = "RoR2/DLC3/Drifter/matDrifterBluntForceSWImpact02.mat"; public static string matDrifterBluntForceSwing = "RoR2/DLC3/Drifter/matDrifterBluntForceSwing.mat"; public static string matDrifterCleanUpBulletSphere = "RoR2/DLC3/Drifter/matDrifterCleanUpBulletSphere.mat"; public static string matDrifterCleanUpExpDistortion = "RoR2/DLC3/Drifter/matDrifterCleanUpExpDistortion.mat"; public static string matDrifterCleanUpExplosionFire = "RoR2/DLC3/Drifter/matDrifterCleanUpExplosionFire.mat"; public static string matDrifterCleanUpExplosionSW = "RoR2/DLC3/Drifter/matDrifterCleanUpExplosionSW.mat"; public static string matDrifterCleanUpFlash = "RoR2/DLC3/Drifter/matDrifterCleanUpFlash.mat"; public static string matDrifterCleanUpHitSWImpact = "RoR2/DLC3/Drifter/matDrifterCleanUpHitSWImpact.mat"; public static string matDrifterCleanupMuzzleExpDistortion = "RoR2/DLC3/Drifter/matDrifterCleanupMuzzleExpDistortion.mat"; public static string matDrifterCleanUpRingBurst = "RoR2/DLC3/Drifter/matDrifterCleanUpRingBurst.mat"; public static string matDrifterCleanUpSWRing = "RoR2/DLC3/Drifter/matDrifterCleanUpSWRing.mat"; public static string matDrifterCleanUpSWRings = "RoR2/DLC3/Drifter/matDrifterCleanUpSWRings.mat"; public static string matDrifterInvulnerability = "RoR2/DLC3/Drifter/matDrifterInvulnerability.mat"; public static string matDrifterJunkCubeDarkStreaks = "RoR2/DLC3/Drifter/matDrifterJunkCubeDarkStreaks.mat"; public static string matDrifterJunkCubeDistortion = "RoR2/DLC3/Drifter/matDrifterJunkCubeDistortion.mat"; public static string matDrifterJunkCubeDust = "RoR2/DLC3/Drifter/matDrifterJunkCubeDust.mat"; public static string matDrifterJunkCubeDustCloudImp = "RoR2/DLC3/Drifter/matDrifterJunkCubeDustCloudImp.mat"; public static string matDrifterJunkCubeExpSphere = "RoR2/DLC3/Drifter/matDrifterJunkCubeExpSphere.mat"; public static string matDrifterJunkCubeLightStreaks = "RoR2/DLC3/Drifter/matDrifterJunkCubeLightStreaks.mat"; public static string matDrifterJunkCubeShockWave = "RoR2/DLC3/Drifter/matDrifterJunkCubeShockWave.mat"; public static string matDrifterJunkExpTrials = "RoR2/DLC3/Drifter/matDrifterJunkExpTrials.mat"; public static string matDrifterJunkPadShockwave = "RoR2/DLC3/Drifter/matDrifterJunkPadShockwave.mat"; public static string matDrifterSuffocateImpDust = "RoR2/DLC3/Drifter/matDrifterSuffocateImpDust.mat"; public static string matDrifterSuffocateSWImpact = "RoR2/DLC3/Drifter/matDrifterSuffocateSWImpact.mat"; public static string matDrifterSuffocateSwing = "RoR2/DLC3/Drifter/matDrifterSuffocateSwing.mat"; public static string matDrifterSuffocateSwing02 = "RoR2/DLC3/Drifter/matDrifterSuffocateSwing02.mat"; public static string matDrifterTornadoCenterImpact = "RoR2/DLC3/Drifter/matDrifterTornadoCenterImpact.mat"; public static string matDrifterTornadoDustStreakHuge = "RoR2/DLC3/Drifter/matDrifterTornadoDustStreakHuge.mat"; public static string matDrifterTornadoDustStreaksLarge = "RoR2/DLC3/Drifter/matDrifterTornadoDustStreaksLarge.mat"; public static string matDrifterTornadoGroundStreaks = "RoR2/DLC3/Drifter/matDrifterTornadoGroundStreaks.mat"; public static string matDrifterTornadoImpact = "RoR2/DLC3/Drifter/matDrifterTornadoImpact.mat"; public static string matDrifterTornadoRingImpact = "RoR2/DLC3/Drifter/matDrifterTornadoRingImpact.mat"; public static string matDrifterTornadoStreaks01 = "RoR2/DLC3/Drifter/matDrifterTornadoStreaks_01.mat"; public static string matDrifterTornadoStreaks02 = "RoR2/DLC3/Drifter/matDrifterTornadoStreaks_02.mat"; public static string matDrifterTornadoStreaks03 = "RoR2/DLC3/Drifter/matDrifterTornadoStreaks_03.mat"; public static string matDrifterTornadoStreaksDistortion = "RoR2/DLC3/Drifter/matDrifterTornadoStreaksDistortion.mat"; public static string matDroneTechDiffuse = "RoR2/DLC3/Drone Tech/matDroneTechDiffuse.mat"; public static string matDroneTechGlowAlt1 = "RoR2/DLC3/Drone Tech/matDroneTechGlowAlt1.mat"; public static string matDroneTechGlowAlt2 = "RoR2/DLC3/Drone Tech/matDroneTechGlowAlt2.mat"; public static string matDroneTechGlowAlt3 = "RoR2/DLC3/Drone Tech/matDroneTechGlowAlt3.mat"; public static string matDroneTechGlowAlt4 = "RoR2/DLC3/Drone Tech/matDroneTechGlowAlt4.mat"; public static string matDroneTech = "RoR2/DLC3/Drone Tech/matDroneTech.mat"; public static string matDroneTechAccesories = "RoR2/DLC3/Drone Tech/matDroneTechAccesories.mat"; public static string matDroneTechBraceScreen = "RoR2/DLC3/Drone Tech/matDroneTechBraceScreen.mat"; public static string matDroneTechScreen = "RoR2/DLC3/Drone Tech/matDroneTechScreen.mat"; public static string matDroneTechSignal1 = "RoR2/DLC3/Drone Tech/matDroneTechSignal 1.mat"; public static string matDroneTechSignal = "RoR2/DLC3/Drone Tech/matDroneTechSignal.mat"; public static string Dronetechbodymtl = "RoR2/DLC3/Drone Tech/Dronetech_body_mtl.mat"; public static string Dronetechglow1 = "RoR2/DLC3/Drone Tech/Dronetech_glow1.mat"; public static string Dronetechglow2 = "RoR2/DLC3/Drone Tech/Dronetech_glow2.mat"; public static string Dronetechglow3 = "RoR2/DLC3/Drone Tech/Dronetech_glow3.mat"; public static string Dronetechglow4 = "RoR2/DLC3/Drone Tech/Dronetech_glow4.mat"; public static string matDroneball = "RoR2/DLC3/Drone Tech/matDroneball.mat"; public static string matDroneballInner = "RoR2/DLC3/Drone Tech/matDroneballInner.mat"; public static string matNanoBombExplosion = "RoR2/DLC3/Drone Tech/matNanoBombExplosion.mat"; public static string matNanoBombFire = "RoR2/DLC3/Drone Tech/matNanoBombFire.mat"; public static string matNanoBombHitspark01 = "RoR2/DLC3/Drone Tech/matNanoBombHitspark01.mat"; public static string matNanoBombImpRing = "RoR2/DLC3/Drone Tech/matNanoBombImpRing.mat"; public static string matNanoBombMuzzleRing = "RoR2/DLC3/Drone Tech/matNanoBombMuzzleRing.mat"; public static string matNanoBombSWRing01 = "RoR2/DLC3/Drone Tech/matNanoBombSWRing01.mat"; public static string matNanoBombSWRing02 = "RoR2/DLC3/Drone Tech/matNanoBombSWRing02.mat"; public static string matNanoGrenadePixelTrail2 = "RoR2/DLC3/Drone Tech/matNanoGrenadePixelTrail 2.mat"; public static string matNanoGrenadePixelTrail = "RoR2/DLC3/Drone Tech/matNanoGrenadePixelTrail.mat"; public static string matNanoSeekerPixelTrail = "RoR2/DLC3/Drone Tech/matNanoSeekerPixelTrail.mat"; public static string matNanoSeekerTrail = "RoR2/DLC3/Drone Tech/matNanoSeekerTrail.mat"; public static string matDroneTechSplatterDirectionalAlt = "RoR2/DLC3/Drone Tech/matDroneTechSplatterDirectionalAlt.mat"; public static string matDroneTechSplatterOpaqueTrailAlt = "RoR2/DLC3/Drone Tech/matDroneTechSplatterOpaqueTrailAlt.mat"; public static string matNanoPistolAOE = "RoR2/DLC3/Drone Tech/matNanoPistolAOE.mat"; public static string matNanoPistolAOE02 = "RoR2/DLC3/Drone Tech/matNanoPistolAOE_02.mat"; public static string matNanoPistolAOEBloom = "RoR2/DLC3/Drone Tech/matNanoPistolAOEBloom.mat"; public static string matNanoPistolAOEShockwave = "RoR2/DLC3/Drone Tech/matNanoPistolAOEShockwave.mat"; public static string matNanoPistolAOEShockwave02 = "RoR2/DLC3/Drone Tech/matNanoPistolAOEShockwave02.mat"; public static string matNanoPistolBeamTrail = "RoR2/DLC3/Drone Tech/matNanoPistolBeamTrail.mat"; public static string matNanoPistolCharge = "RoR2/DLC3/Drone Tech/matNanoPistolCharge.mat"; public static string matNanoPistolChargeTrail = "RoR2/DLC3/Drone Tech/matNanoPistolChargeTrail.mat"; public static string matNanoPistolChunks = "RoR2/DLC3/Drone Tech/matNanoPistolChunks.mat"; public static string matNanoPistolImpRing = "RoR2/DLC3/Drone Tech/matNanoPistolImpRing.mat"; public static string matNanoPistolImpRing2 = "RoR2/DLC3/Drone Tech/matNanoPistolImpRing2.mat"; public static string matNanoPistolMuzzlePixel = "RoR2/DLC3/Drone Tech/matNanoPistolMuzzlePixel.mat"; public static string matNanoPistolMuzzleRing = "RoR2/DLC3/Drone Tech/matNanoPistolMuzzleRing.mat"; public static string matNanoPistolMuzzleStreaks = "RoR2/DLC3/Drone Tech/matNanoPistolMuzzleStreaks.mat"; public static string matNanoPistolTracerHead = "RoR2/DLC3/Drone Tech/matNanoPistolTracerHead.mat"; public static string matNanoPistolTrail = "RoR2/DLC3/Drone Tech/matNanoPistolTrail.mat"; public static string matShockCoreGreen = "RoR2/DLC3/Drone Tech/matShockCoreGreen.mat"; public static string matShockTrailGreen = "RoR2/DLC3/Drone Tech/matShockTrailGreen.mat"; public static string matCommandCleanupDroneVacuumStreaks = "RoR2/DLC3/Drone Tech/matCommandCleanupDroneVacuumStreaks.mat"; public static string matCommandCleanupSwirls = "RoR2/DLC3/Drone Tech/matCommandCleanupSwirls.mat"; public static string matHealGlow = "RoR2/DLC3/Drone Tech/matHealGlow.mat"; public static string matNanoFireTrail = "RoR2/DLC3/Drone Tech/matNanoFireTrail.mat"; public static string matNanoFlamethrower = "RoR2/DLC3/Drone Tech/matNanoFlamethrower.mat"; public static string matJailerDroneShockwaveGreen = "RoR2/DLC3/Drone Tech/matJailerDroneShockwaveGreen.mat"; public static string matJailerTether = "RoR2/DLC3/Drone Tech/matJailerTether.mat"; public static string matJunkBallGlow = "RoR2/DLC3/Drone Tech/matJunkBallGlow.mat"; public static string matNanoMissileFlare = "RoR2/DLC3/Drone Tech/matNanoMissileFlare.mat"; public static string matDroneTechAttackSignal = "RoR2/DLC3/Drone Tech/matDroneTechAttackSignal.mat"; public static string matDroneTechHealSignal = "RoR2/DLC3/Drone Tech/matDroneTechHealSignal.mat"; public static string matDroneTechRecallSignal = "RoR2/DLC3/Drone Tech/matDroneTechRecallSignal.mat"; public static string matNanoPistolAOE011 = "RoR2/DLC3/Drone Tech/matNanoPistolAOE_01 1.mat"; public static string matNanoPistolImpRing21 = "RoR2/DLC3/Drone Tech/matNanoPistolImpRing2 1.mat"; public static string matNanoSeekerPixelTrail1 = "RoR2/DLC3/Drone Tech/matNanoSeekerPixelTrail 1.mat"; public static string matDroneBallAoEBackface = "RoR2/DLC3/Drone Tech/matDroneBallAoEBackface.mat"; public static string matDroneBallGlowInner = "RoR2/DLC3/Drone Tech/matDroneBallGlowInner.mat"; public static string matDroneBallTrail = "RoR2/DLC3/Drone Tech/matDroneBallTrail.mat"; public static string matDroneTechSwarmAOEIndicator1 = "RoR2/DLC3/Drone Tech/matDroneTechSwarmAOE_Indicator 1.mat"; public static string matDroneTechSwarmAOEIndicator2 = "RoR2/DLC3/Drone Tech/matDroneTechSwarmAOE_Indicator 2.mat"; public static string matDroneTechSwarmAOEIndicator23 = "RoR2/DLC3/Drone Tech/matDroneTechSwarmAOE_Indicator2.mat"; public static string matRoboBallParticleBillboard1 = "RoR2/DLC3/Drone Tech/matRoboBallParticleBillboard 1.mat"; public static string matRoboBallParticleBillboard1b = "RoR2/DLC3/Drone Tech/matRoboBallParticleBillboard 1b.mat"; public static string matRoboBallParticleRingHuge1 = "RoR2/DLC3/Drone Tech/matRoboBallParticleRingHuge 1.mat"; public static string matToolbot1 = "RoR2/DLC3/Drone Tech/matToolbot 1.mat"; public static string matDroneTechSwarmAOEDecal = "RoR2/DLC3/Drone Tech/matDroneTechSwarmAOE_Decal.mat"; public static string matDroneTechSwarmAOEIndicator = "RoR2/DLC3/Drone Tech/matDroneTechSwarmAOE_Indicator.mat"; public static string matDTSwarmGridAOEDecal = "RoR2/DLC3/Drone Tech/matDTSwarmGridAOE_Decal.mat"; public static string matDroneArrowIndicator = "RoR2/DLC3/Drone Tech/matDroneArrowIndicator.mat"; public static string matDroneTechCarryPulseRings = "RoR2/DLC3/Drone Tech/matDroneTechCarryPulseRings.mat"; public static string matDroneTechCarryRings = "RoR2/DLC3/Drone Tech/matDroneTechCarryRings.mat"; public static string matDroneTechCarrySecondaryRings = "RoR2/DLC3/Drone Tech/matDroneTechCarrySecondaryRings.mat"; public static string matDroneTechShieldProjector = "RoR2/DLC3/Drone Tech/matDroneTechShieldProjector.mat"; public static string matDroneProjectionBeam = "RoR2/DLC3/Drone Tech/matDroneProjectionBeam.mat"; public static string matDroneTechShieldColor01 = "RoR2/DLC3/Drone Tech/matDroneTechShield_Color01.mat"; public static string matDroneTechShieldColor02 = "RoR2/DLC3/Drone Tech/matDroneTechShield_Color02.mat"; public static string matDroneTechShieldColor03 = "RoR2/DLC3/Drone Tech/matDroneTechShield_Color03.mat"; public static string matDroneTechShieldDistort = "RoR2/DLC3/Drone Tech/matDroneTechShield_Distort.mat"; public static string matDroneTechShieldEdgeOutline = "RoR2/DLC3/Drone Tech/matDroneTechShield_EdgeOutline.mat"; public static string matDroneTechShieldWPO = "RoR2/DLC3/Drone Tech/matDroneTechShield_WPO.mat"; public static string matDroneTechShield0 = "RoR2/DLC3/Drone Tech/matDroneTechShield0.mat"; public static string matDroneTechShield100 = "RoR2/DLC3/Drone Tech/matDroneTechShield100.mat"; public static string matDroneTechShield25 = "RoR2/DLC3/Drone Tech/matDroneTechShield25.mat"; public static string matDroneTechShield50 = "RoR2/DLC3/Drone Tech/matDroneTechShield50.mat"; public static string matDroneTechShield75 = "RoR2/DLC3/Drone Tech/matDroneTechShield75.mat"; public static string matDTParticleRibbon = "RoR2/DLC3/Drone Tech/matDT_ParticleRibbon.mat"; public static string matDTParticleRibbon25 = "RoR2/DLC3/Drone Tech/matDT_ParticleRibbon25.mat"; public static string matDTParticleRibbon50 = "RoR2/DLC3/Drone Tech/matDT_ParticleRibbon50.mat"; public static string matDTParticleRibbon75 = "RoR2/DLC3/Drone Tech/matDT_ParticleRibbon75.mat"; public static string matDTSheildEND100GlowRing = "RoR2/DLC3/Drone Tech/matDT_SheildEND100GlowRing.mat"; public static string matDTSheildGlowBackdrop = "RoR2/DLC3/Drone Tech/matDT_SheildGlowBackdrop.mat"; public static string matDTSheildPROJ0Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROJ0Glow.mat"; public static string matDTSheildPROJ100Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROJ100Glow.mat"; public static string matDTSheildPROJ25Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROJ25Glow.mat"; public static string matDTSheildPROJ50Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROJ50Glow.mat"; public static string matDTSheildPROJ75Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROJ75Glow.mat"; public static string matDTSheildPROJSRT100Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROJSRT100Glow.mat"; public static string matDTSheildPROJSRT25Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROJSRT25Glow.mat"; public static string matDTSheildPROJSRT50Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROJSRT50Glow.mat"; public static string matDTSheildPROJSRT75Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROJSRT75Glow.mat"; public static string matDTSheildPROOutline100Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROOutline100Glow.mat"; public static string matDTSheildPROOutline25Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROOutline25Glow.mat"; public static string matDTSheildPROOutline50Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROOutline50Glow.mat"; public static string matDTSheildPROOutline75Glow = "RoR2/DLC3/Drone Tech/matDT_SheildPROOutline75Glow.mat"; public static string matDTSheildSRT100GlowCrosshair = "RoR2/DLC3/Drone Tech/matDT_SheildSRT100GlowCrosshair.mat"; public static string matDTSheildSRT100GlowOutline = "RoR2/DLC3/Drone Tech/matDT_SheildSRT100GlowOutline.mat"; public static string matDTSheildSRT100GlowRing = "RoR2/DLC3/Drone Tech/matDT_SheildSRT100GlowRing.mat"; public static string matDTSheildSRT100GlowTrails = "RoR2/DLC3/Drone Tech/matDT_SheildSRT100GlowTrails.mat"; public static string matDTSheildSRT25GlowCrosshair = "RoR2/DLC3/Drone Tech/matDT_SheildSRT25GlowCrosshair.mat"; public static string matDTSheildSRT25GlowOutline = "RoR2/DLC3/Drone Tech/matDT_SheildSRT25GlowOutline.mat"; public static string matDTSheildSRT25GlowTrails = "RoR2/DLC3/Drone Tech/matDT_SheildSRT25GlowTrails.mat"; public static string matDTSheildSRT50GlowCrosshair = "RoR2/DLC3/Drone Tech/matDT_SheildSRT50GlowCrosshair.mat"; public static string matDTSheildSRT50GlowOutline = "RoR2/DLC3/Drone Tech/matDT_SheildSRT50GlowOutline.mat"; public static string matDTSheildSRT50GlowTrails = "RoR2/DLC3/Drone Tech/matDT_SheildSRT50GlowTrails.mat"; public static string matDTSheildSRT75GlowCrosshair = "RoR2/DLC3/Drone Tech/matDT_SheildSRT75GlowCrosshair.mat"; public static string matDTSheildSRT75GlowOutline = "RoR2/DLC3/Drone Tech/matDT_SheildSRT75GlowOutline.mat"; public static string matDTSheildSRT75GlowTrails = "RoR2/DLC3/Drone Tech/matDT_SheildSRT75GlowTrails.mat"; public static string matDTShieldCenterBlast = "RoR2/DLC3/Drone Tech/matDT_ShieldCenterBlast.mat"; public static string matDTShieldEndBlast = "RoR2/DLC3/Drone Tech/matDT_ShieldEndBlast.mat"; public static string matDTShieldHitEND100 = "RoR2/DLC3/Drone Tech/matDT_ShieldHitEND100.mat"; public static string matDTShieldHitEND50 = "RoR2/DLC3/Drone Tech/matDT_ShieldHitEND50.mat"; public static string matDTShieldHitEND75 = "RoR2/DLC3/Drone Tech/matDT_ShieldHitEND75.mat"; public static string matDTShieldMain100 = "RoR2/DLC3/Drone Tech/matDT_ShieldMain100.mat"; public static string matDTShieldMain50 = "RoR2/DLC3/Drone Tech/matDT_ShieldMain50.mat"; public static string matDTShieldMain75 = "RoR2/DLC3/Drone Tech/matDT_ShieldMain75.mat"; public static string matDTShieldMainOutline100 = "RoR2/DLC3/Drone Tech/matDT_ShieldMainOutline100.mat"; public static string matDTShieldMainOutline50 = "RoR2/DLC3/Drone Tech/matDT_ShieldMainOutline50.mat"; public static string matDTShieldMainOutline75 = "RoR2/DLC3/Drone Tech/matDT_ShieldMainOutline75.mat"; public static string matDTShieldPixelBurst = "RoR2/DLC3/Drone Tech/matDT_ShieldPixelBurst.mat"; public static string matDTShieldPixelBurst50 = "RoR2/DLC3/Drone Tech/matDT_ShieldPixelBurst50.mat"; public static string matDTShieldPixelBurst75 = "RoR2/DLC3/Drone Tech/matDT_ShieldPixelBurst75.mat"; public static string matDTShieldProjectileDistortion = "RoR2/DLC3/Drone Tech/matDT_ShieldProjectileDistortion.mat"; public static string matDTShieldProjectileDistortion100 = "RoR2/DLC3/Drone Tech/matDT_ShieldProjectileDistortion100.mat"; public static string matDTShieldStartBlast = "RoR2/DLC3/Drone Tech/matDT_ShieldStartBlast.mat"; public static string matDTShieldStartBlast75 = "RoR2/DLC3/Drone Tech/matDT_ShieldStartBlast75.mat"; public static string matDTShieldStreak = "RoR2/DLC3/Drone Tech/matDT_ShieldStreak.mat"; public static string matDTShieldStreak0 = "RoR2/DLC3/Drone Tech/matDT_ShieldStreak0.mat"; public static string matDTShieldStreak25 = "RoR2/DLC3/Drone Tech/matDT_ShieldStreak25.mat"; public static string matDTShieldStreak50 = "RoR2/DLC3/Drone Tech/matDT_ShieldStreak50.mat"; public static string matDTShieldStreak75 = "RoR2/DLC3/Drone Tech/matDT_ShieldStreak75.mat"; public static string matDTShieldSWRing2END100 = "RoR2/DLC3/Drone Tech/matDT_ShieldSWRing2END100.mat"; public static string matDTShieldSWRing2END25 = "RoR2/DLC3/Drone Tech/matDT_ShieldSWRing2END25.mat"; public static string matDTShieldSWRing2END50 = "RoR2/DLC3/Drone Tech/matDT_ShieldSWRing2END50.mat"; public static string matDTShieldSWRing2END75 = "RoR2/DLC3/Drone Tech/matDT_ShieldSWRing2END75.mat"; public static string matDTShieldSWRingEND100 = "RoR2/DLC3/Drone Tech/matDT_ShieldSWRingEND100.mat"; public static string matDTShieldSWRingEND25 = "RoR2/DLC3/Drone Tech/matDT_ShieldSWRingEND25.mat"; public static string matDTShieldSWRingEND50 = "RoR2/DLC3/Drone Tech/matDT_ShieldSWRingEND50.mat"; public static string matDTShieldSWRingEND75 = "RoR2/DLC3/Drone Tech/matDT_ShieldSWRingEND75.mat"; public static string bombardmentMat = "RoR2/DLC3/Drones/bombardmentMat.mat"; public static string matBombardmentDroneDirectionalDust = "RoR2/DLC3/Drones/matBombardmentDroneDirectionalDust.mat"; public static string matBombardmentDroneDirtMesh = "RoR2/DLC3/Drones/matBombardmentDroneDirtMesh.mat"; public static string matBombardmentDroneGroundDecal = "RoR2/DLC3/Drones/matBombardmentDroneGroundDecal.mat"; public static string matBombardmentDroneImpDust = "RoR2/DLC3/Drones/matBombardmentDroneImpDust.mat"; public static string matBombardmentDroneLightningLong = "RoR2/DLC3/Drones/matBombardmentDroneLightningLong.mat"; public static string matBombardmentDroneLightningSphere = "RoR2/DLC3/Drones/matBombardmentDroneLightningSphere.mat"; public static string matBombardmentDroneRays = "RoR2/DLC3/Drones/matBombardmentDroneRays.mat"; public static string matBombardmentDroneSparks = "RoR2/DLC3/Drones/matBombardmentDroneSparks.mat"; public static string matBombardmentDroneStreakDust = "RoR2/DLC3/Drones/matBombardmentDroneStreakDust.mat"; public static string matTreebotEntangleRoot4 = "RoR2/DLC3/Drones/matTreebotEntangleRoot4.mat"; public static string matIsShockedRed = "RoR2/DLC3/Drones/matIsShockedRed.mat"; public static string matShockCoreRed = "RoR2/DLC3/Drones/matShockCoreRed.mat"; public static string matShockTrailRed = "RoR2/DLC3/Drones/matShockTrailRed.mat"; public static string matCleanupDrone = "RoR2/DLC3/Drones/matCleanupDrone.mat"; public static string matCleanUpDroneAuraSphere = "RoR2/DLC3/Drones/matCleanUpDroneAuraSphere.mat"; public static string matCleanUpDroneAuraSphereInner = "RoR2/DLC3/Drones/matCleanUpDroneAuraSphereInner.mat"; public static string matCleanupDroneInnerGrid = "RoR2/DLC3/Drones/matCleanupDroneInnerGrid.mat"; public static string matCleanUpDroneVacuumBits = "RoR2/DLC3/Drones/matCleanUpDroneVacuumBits.mat"; public static string matCleanUpDroneVacuumDistortion = "RoR2/DLC3/Drones/matCleanUpDroneVacuumDistortion.mat"; public static string matCleanupDroneVacuumStreaks = "RoR2/DLC3/Drones/matCleanupDroneVacuumStreaks.mat"; public static string matCleanupDust = "RoR2/DLC3/Drones/matCleanupDust.mat"; public static string matCleanupInnerSphere = "RoR2/DLC3/Drones/matCleanupInnerSphere.mat"; public static string matCleanupOutterSphere = "RoR2/DLC3/Drones/matCleanupOutterSphere.mat"; public static string matCleanupSwirls = "RoR2/DLC3/Drones/matCleanupSwirls.mat"; public static string matDCCScanGeo = "RoR2/DLC3/Drones/matDCC_ScanGeo.mat"; public static string matDCCScanGeo2 = "RoR2/DLC3/Drones/matDCC_ScanGeo2.mat"; public static string matDroneCopyCat = "RoR2/DLC3/Drones/matDroneCopyCat.mat"; public static string matDroneCopyCatFlare = "RoR2/DLC3/Drones/matDroneCopyCat_Flare.mat"; public static string matDroneCopyCatScanBase = "RoR2/DLC3/Drones/matDroneCopyCat_ScanBase.mat"; public static string matDroneCopyCatScanBase02 = "RoR2/DLC3/Drones/matDroneCopyCat_ScanBase02.mat"; public static string matDroneCopyCatScanBasePS = "RoR2/DLC3/Drones/matDroneCopyCat_ScanBasePS.mat"; public static string matDroneCopyCatScanPlane = "RoR2/DLC3/Drones/matDroneCopyCat_ScanPlane.mat"; public static string matDroneCopyCatScanPlane02 = "RoR2/DLC3/Drones/matDroneCopyCat_ScanPlane02.mat"; public static string matDroneCopyCatPixels = "RoR2/DLC3/Drones/matDroneCopyCatPixels.mat"; public static string ScanBeamLineRendererMat = "RoR2/DLC3/Drones/ScanBeamLineRendererMat.mat"; public static string matLaserDisc = "RoR2/DLC3/Drones/matLaserDisc.mat"; public static string matLaserDiscImpactDark = "RoR2/DLC3/Drones/matLaserDiscImpactDark.mat"; public static string matLaserDiscRing = "RoR2/DLC3/Drones/matLaserDiscRing.mat"; public static string matLaserDiscSplatter = "RoR2/DLC3/Drones/matLaserDiscSplatter.mat"; public static string matLaserDiscTrail = "RoR2/DLC3/Drones/matLaserDiscTrail.mat"; public static string matDroneBomber = "RoR2/DLC3/Drones/matDroneBomber.mat"; public static string matDroneBomberHat = "RoR2/DLC3/Drones/matDroneBomberHat.mat"; public static string matDrone1A = "RoR2/DLC3/Drones/matDrone1_A.mat"; public static string matDrone1B = "RoR2/DLC3/Drones/matDrone1_B.mat"; public static string matHaulerJailerRechargeCleanup1 = "RoR2/DLC3/Drones/matHaulerJailerRechargeCleanup 1.mat"; public static string matDrone2A = "RoR2/DLC3/Drones/matDrone2_A.mat"; public static string matDrone2B = "RoR2/DLC3/Drones/matDrone2_B.mat"; public static string matHaulerDrone = "RoR2/DLC3/Drones/matHaulerDrone.mat"; public static string matHaulerDroneBeam = "RoR2/DLC3/Drones/matHaulerDroneBeam.mat"; public static string matHaulerDroneBeamFlare = "RoR2/DLC3/Drones/matHaulerDroneBeamFlare.mat"; public static string matHaulerDroneBurstRings = "RoR2/DLC3/Drones/matHaulerDroneBurstRings.mat"; public static string matHaulerDroneGrabFlare = "RoR2/DLC3/Drones/matHaulerDroneGrabFlare.mat"; public static string matHaulerDroneGrabRing = "RoR2/DLC3/Drones/matHaulerDroneGrabRing.mat"; public static string matJailerDrone = "RoR2/DLC3/Drones/matJailerDrone.mat"; public static string matJalierDroneHoloCageFX = "RoR2/DLC3/Drones/matJalierDrone_HoloCage_FX.mat"; public static string matJalierDroneHoloCageBrokenFX = "RoR2/DLC3/Drones/matJalierDrone_HoloCageBroken_FX.mat"; public static string matJalierDroneHoloPlanesFX = "RoR2/DLC3/Drones/matJalierDrone_HoloPlanes_FX.mat"; public static string matJalierDroneHoloWallsFX = "RoR2/DLC3/Drones/matJalierDrone_HoloWalls_FX.mat"; public static string matTreebotPounderSphere18 = "RoR2/DLC3/Drones/matTreebotPounderSphere.mat"; public static string matJailerDroneShockwave = "RoR2/DLC3/Drones/matJailerDroneShockwave.mat"; public static string matJunkDrone = "RoR2/DLC3/Drones/matJunkDrone.mat"; public static string matJunkDroneOpenSWRing = "RoR2/DLC3/Drones/matJunkDroneOpenSWRing.mat"; public static string matJunkDroneSmokeBurst1 = "RoR2/DLC3/Drones/matJunkDroneSmokeBurst 1.mat"; public static string matJunkDroneSmokeBurst = "RoR2/DLC3/Drones/matJunkDroneSmokeBurst.mat"; public static string matJunkOpenRing = "RoR2/DLC3/Drones/matJunkOpenRing.mat"; public static string matHaulerJailerRechargeCleanup = "RoR2/DLC3/Drones/matHaulerJailerRechargeCleanup.mat"; public static string matRechargeDroneBarrier = "RoR2/DLC3/Drones/matRechargeDroneBarrier.mat"; public static string matRechargeDroneBarrierBeam = "RoR2/DLC3/Drones/matRechargeDroneBarrierBeam.mat"; public static string matRechargeDroneChargeBarrier = "RoR2/DLC3/Drones/matRechargeDroneChargeBarrier.mat"; public static string matRechargeDroneChargeBarrierPS = "RoR2/DLC3/Drones/matRechargeDroneChargeBarrier_PS.mat"; public static string matRechargeDroneChargeHeal = "RoR2/DLC3/Drones/matRechargeDroneChargeHeal.mat"; public static string matRechargeDroneChargeHealPS = "RoR2/DLC3/Drones/matRechargeDroneChargeHeal_PS.mat"; public static string matRechargeDroneChargeRecharge = "RoR2/DLC3/Drones/matRechargeDroneChargeRecharge.mat"; public static string matRechargeDroneChargeRechargePS = "RoR2/DLC3/Drones/matRechargeDroneChargeRecharge_PS.mat"; public static string matRechargeDroneGlass = "RoR2/DLC3/Drones/matRechargeDroneGlass.mat"; public static string matRechargeDroneHeal = "RoR2/DLC3/Drones/matRechargeDroneHeal.mat"; public static string matRechargeDroneRecharge = "RoR2/DLC3/Drones/matRechargeDroneRecharge.mat"; public static string bombardmentMat4 = "RoR2/DLC3/ExplosiveJunkBombDestructible/bombardmentMat.mat"; public static string matJunkDroneBombExplosionChargePuffs = "RoR2/DLC3/ExplosiveJunkBombDestructible/matJunkDroneBombExplosionChargePuffs.mat"; public static string matJunkDroneBombExplosionFire = "RoR2/DLC3/ExplosiveJunkBombDestructible/matJunkDroneBombExplosionFire.mat"; public static string matJunkDroneBombExplosionRing = "RoR2/DLC3/ExplosiveJunkBombDestructible/matJunkDroneBombExplosionRing.mat"; public static string ExtractorLeg = "RoR2/DLC3/ExtractorUnit/ExtractorLeg.mat"; public static string ExtractorMat = "RoR2/DLC3/ExtractorUnit/ExtractorMat.mat"; public static string matExtractorEyeRing = "RoR2/DLC3/ExtractorUnit/matExtractorEyeRing.mat"; public static string matExtractorGust = "RoR2/DLC3/ExtractorUnit/matExtractorGust.mat"; public static string matExtractorScan = "RoR2/DLC3/ExtractorUnit/matExtractorScan.mat"; public static string matExtractorUnitCarryFlares = "RoR2/DLC3/ExtractorUnit/matExtractorUnitCarryFlares.mat"; public static string matExtractorUnitCarryGlow = "RoR2/DLC3/ExtractorUnit/matExtractorUnitCarryGlow.mat"; public static string matExtractorUnitCarryTrail = "RoR2/DLC3/ExtractorUnit/matExtractorUnitCarryTrail.mat"; public static string matExtractorUnitDeathRing = "RoR2/DLC3/ExtractorUnit/matExtractorUnitDeathRing.mat"; public static string matExtractorUnitHit = "RoR2/DLC3/ExtractorUnit/matExtractorUnitHit.mat"; public static string matExtractorUnitOverlaySpawn = "RoR2/DLC3/ExtractorUnit/matExtractorUnitOverlay_Spawn.mat"; public static string matExtractorUnitTrailSquares = "RoR2/DLC3/ExtractorUnit/matExtractorUnitTrailSquares.mat"; public static string matSolusLaserIndicatorTransparent = "RoR2/DLC3/ExtractorUnit/matSolusLaserIndicatorTransparent.mat"; public static string matFriendUnit = "RoR2/DLC3/FriendUnit/matFriendUnit.mat"; public static string matFriendUnitAttackField = "RoR2/DLC3/FriendUnit/matFriendUnitAttackField.mat"; public static string matFriendUnitBonkTrail = "RoR2/DLC3/FriendUnit/matFriendUnitBonkTrail.mat"; public static string matFriendUnitDamageFieldAura = "RoR2/DLC3/FriendUnit/matFriendUnitDamageFieldAura.mat"; public static string matFriendUnitEye = "RoR2/DLC3/FriendUnit/matFriendUnitEye.mat"; public static string matFriendUnitImpactShockwave = "RoR2/DLC3/FriendUnit/matFriendUnitImpactShockwave.mat"; public static string matFriendUnitLightning = "RoR2/DLC3/FriendUnit/matFriendUnitLightning.mat"; public static string matFriendUnitSpawnBeam = "RoR2/DLC3/FriendUnit/matFriendUnitSpawnBeam.mat"; public static string matFriendUnitSpriteHeart = "RoR2/DLC3/FriendUnit/matFriendUnitSpriteHeart.mat"; public static string matOmniHitsparkFriendUnit = "RoR2/DLC3/FriendUnit/matOmniHitsparkFriendUnit.mat"; public static string matCleanseOrbSparkle = "RoR2/DLC3/FriendUnit/matCleanseOrbSparkle.mat"; public static string matCleanseOrbTrail = "RoR2/DLC3/FriendUnit/matCleanseOrbTrail.mat"; public static string matFriendUnitHeart = "RoR2/DLC3/FriendUnit/matFriendUnitHeart.mat"; public static string ironHaulerMat = "RoR2/DLC3/IronHauler/ironHaulerMat.mat"; public static string ironHaulerRockChunks = "RoR2/DLC3/IronHauler/ironHaulerRockChunks.mat"; public static string matHaulerAoEVFXParticleBillboard = "RoR2/DLC3/IronHauler/matHaulerAoEVFXParticleBillboard.mat"; public static string matHaulerAoEVFXParticleRingHuge = "RoR2/DLC3/IronHauler/matHaulerAoEVFXParticleRingHuge.mat"; public static string matIronHaulerAoERingsCC = "RoR2/DLC3/IronHauler/matIronHaulerAoERings_CC.mat"; public static string matIronHaulerBeamAoEAirRings = "RoR2/DLC3/IronHauler/matIronHaulerBeamAoEAirRings.mat"; public static string matIronHaulerBeamAoEGroundRings = "RoR2/DLC3/IronHauler/matIronHaulerBeamAoEGroundRings.mat"; public static string matIronHaulerBeamAoEGroundRingsCC = "RoR2/DLC3/IronHauler/matIronHaulerBeamAoEGroundRings_CC.mat"; public static string matIronHaulerBeamChargeFlare = "RoR2/DLC3/IronHauler/matIronHaulerBeamChargeFlare.mat"; public static string matIronHaulerBeamTrail = "RoR2/DLC3/IronHauler/matIronHaulerBeamTrail.mat"; public static string matIronHaulerBeamTrailCC = "RoR2/DLC3/IronHauler/matIronHaulerBeamTrail_CC.mat"; public static string matIronHaulerCopiedAoE = "RoR2/DLC3/IronHauler/matIronHaulerCopiedAoE.mat"; public static string matIronHaulerFlashGlowCC = "RoR2/DLC3/IronHauler/matIronHaulerFlashGlow_CC.mat"; public static string matIronHaulerLaunchSphereCC = "RoR2/DLC3/IronHauler/matIronHaulerLaunchSphere_CC.mat"; public static string matIronHaulerLaunchStreaks = "RoR2/DLC3/IronHauler/matIronHaulerLaunchStreaks.mat"; public static string matIronHaulerMuzzleRing = "RoR2/DLC3/IronHauler/matIronHaulerMuzzleRing.mat"; public static string matIronHaulerMuzzleRingCC = "RoR2/DLC3/IronHauler/matIronHaulerMuzzleRing_CC.mat"; public static string matIronHaulerOverlaySpawn = "RoR2/DLC3/IronHauler/matIronHaulerOverlay_Spawn.mat"; public static string matIronHaulerParticleBillboard = "RoR2/DLC3/IronHauler/matIronHaulerParticleBillboard.mat"; public static string matIronHaulerSparks = "RoR2/DLC3/IronHauler/matIronHaulerSparks.mat"; public static string matIronHaulerSparksCC = "RoR2/DLC3/IronHauler/matIronHaulerSparks_CC.mat"; public static string matIronHaulerStreaksCC = "RoR2/DLC3/IronHauler/matIronHaulerStreaks_CC.mat"; public static string matMinePodBody = "RoR2/DLC3/MinePod/matMinePodBody.mat"; public static string matOmniExplosion1RoboBall8 = "RoR2/DLC3/SolusAmalgamator/matOmniExplosion1RoboBall.mat"; public static string matRoboBallAreaIndicator3 = "RoR2/DLC3/SolusAmalgamator/matRoboBallAreaIndicator.mat"; public static string matRoboBallCore12 = "RoR2/DLC3/SolusAmalgamator/matRoboBallCore.mat"; public static string matRoboBallParticleBillboard24 = "RoR2/DLC3/SolusAmalgamator/matRoboBallParticleBillboard.mat"; public static string matRoboBallParticleRing25 = "RoR2/DLC3/SolusAmalgamator/matRoboBallParticleRing.mat"; public static string matRoboBallParticleRingHuge34 = "RoR2/DLC3/SolusAmalgamator/matRoboBallParticleRingHuge.mat"; public static string matRoboBallUnderlay13 = "RoR2/DLC3/SolusAmalgamator/matRoboBallUnderlay.mat"; public static string matSummonRoboBall24 = "RoR2/DLC3/SolusAmalgamator/matSummonRoboBall.mat"; public static string matSuperRoboBallBossBodyFeathers13 = "RoR2/DLC3/SolusAmalgamator/matSuperRoboBallBossBodyFeathers.mat"; public static string matSolusAmalgamatorBody = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBody.mat"; public static string matSolusAmalgamatorCore = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorCore.mat"; public static string matSolusAmalgamatorEye = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorEye.mat"; public static string matSolusAmalgamatorEyeAlt = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorEyeAlt.mat"; public static string matSolusAmalgamatorGlass = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorGlass.mat"; public static string matSolusAmalgamatorHatches = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorHatches.mat"; public static string matSolusAmalgamatorArtilleryExplosion = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorArtilleryExplosion.mat"; public static string matSolusAmalgamatorArtilleryExplosion2 = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorArtilleryExplosion2.mat"; public static string matSolusAmalgamatorArtilleryFire = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorArtilleryFire.mat"; public static string matSolusAmalgamatorArtilleryLead = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorArtilleryLead.mat"; public static string matSolusAmalgamatorArtillerySWRings = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorArtillerySWRings.mat"; public static string matSolusAmalgamatorArtilleryTrail = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorArtilleryTrail.mat"; public static string matSolusAmalgamatorAtrilleryAOEDecal = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorAtrilleryAOE_Decal.mat"; public static string matSolusAmalgamatorBeamAoEAirRings = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamAoEAirRings.mat"; public static string matSolusAmalgamatorBeamAoEGroundRings = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamAoEGroundRings.mat"; public static string matSolusAmalgamatorBeamChargeFlare = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamChargeFlare.mat"; public static string matSolusAmalgamatorBeamChargeRing = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamChargeRing.mat"; public static string matSolusAmalgamatorBeamChargeStreaks = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamChargeStreaks.mat"; public static string matSolusAmalgamatorBeamChargeVapor = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamChargeVapor.mat"; public static string matSolusAmalgamatorBeamFrontFlare = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamFrontFlare.mat"; public static string matSolusAmalgamatorBeamLightning = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamLightning.mat"; public static string matSolusAmalgamatorBeamPulseRing = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamPulseRing.mat"; public static string matSolusAmalgamatorBeamTrail = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamTrail.mat"; public static string matSolusAmalgamatorBeamTrailNew = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBeamTrailNew.mat"; public static string matSolusAmalgamatorBombCore = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBombCore.mat"; public static string matSolusAmalgamatorBombCoreExplode = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBombCoreExplode.mat"; public static string matSolusAmalgamatorBombSquares = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorBombSquares.mat"; public static string matSolusAmalgamatorDeathRing = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorDeathRing.mat"; public static string matSolusAmalgamatorDeathSphere = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorDeathSphere.mat"; public static string matSolusAmalgamatorEnergyDots = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorEnergyDots.mat"; public static string matSolusAmalgamatorFire = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorFire.mat"; public static string matSolusAmalgamatorFireForward = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorFireForward.mat"; public static string matSolusAmalgamatorFireStarburst = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorFireStarburst.mat"; public static string matSolusAmalgamatorFlameEffect = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorFlameEffect.mat"; public static string matSolusAmalgamatorFlamethrower = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorFlamethrower.mat"; public static string matSolusAmalgamatorFlamethrowerMuzzle = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorFlamethrower_Muzzle.mat"; public static string matSolusAmalgamatorImpactFlash = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorImpactFlash.mat"; public static string matSolusAmalgamatorLightning = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorLightning.mat"; public static string matSolusAmalgamatorParticleBillboard = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorParticleBillboard.mat"; public static string matSolusAmalgamatorParticleRingHuge = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorParticleRingHuge.mat"; public static string matSolusAmalgamatorSmokeRings = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorSmokeRings.mat"; public static string matSolusAmalgamatorSparkFlash = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorSparkFlash.mat"; public static string matSolusAmalgamatorSpawnSquares = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorSpawnSquares.mat"; public static string matSolusAmalgamatorSpawnSquares2 = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorSpawnSquares2.mat"; public static string matSolusAmalgamatorTrackingBombBurst = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorTrackingBombBurst.mat"; public static string matSolusAmalgamatorTrackingBombRing = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamatorTrackingBombRing.mat"; public static string matSolusAmalgamtorBeamMuzzlePlasma = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamtorBeamMuzzlePlasma.mat"; public static string matSolusAmalgamtorBombSphere = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamtorBombSphere.mat"; public static string matSolusAmalgamtorBombSphereRim = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamtorBombSphereRim.mat"; public static string matSolusAmalgamtorShockSphereInner = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamtorShockSphereInner.mat"; public static string matSolusAmalgamtorShockSphereOutter = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamtorShockSphereOutter.mat"; public static string matSolusAmalgamtorSWOutline = "RoR2/DLC3/SolusAmalgamator/matSolusAmalgamtorSWOutline.mat"; public static string matCorruptedDataBit = "RoR2/DLC3/SolusHeart/matCorruptedDataBit.mat"; public static string matCorruptedDataBitBlack = "RoR2/DLC3/SolusHeart/matCorruptedDataBit_Black.mat"; public static string matCorruptedDataBitMagenta = "RoR2/DLC3/SolusHeart/matCorruptedDataBit_Magenta.mat"; public static string matSolusHeart = "RoR2/DLC3/SolusHeart/matSolusHeart.mat"; public static string matSolusHeartDeathWave = "RoR2/DLC3/SolusHeart/matSolusHeartDeathWave.mat"; public static string matSolusHeartEyeBlink = "RoR2/DLC3/SolusHeart/matSolusHeartEyeBlink.mat"; public static string matChipSolus = "RoR2/DLC3/SolusHeart/matChipSolus.mat"; public static string matTransparentChip = "RoR2/DLC3/SolusHeart/matTransparentChip.mat"; public static string matChipDDOS1 = "RoR2/DLC3/SolusHeart/matChipDDOS 1.mat"; public static string matChipDDOSOverlay = "RoR2/DLC3/SolusHeart/matChipDDOSOverlay.mat"; public static string matChipProjectileCore2 = "RoR2/DLC3/SolusHeart/matChipProjectileCore2.mat"; public static string matDDOSPortalEdges = "RoR2/DLC3/SolusHeart/matDDOS_PortalEdges.mat"; public static string matDDOSElectricity = "RoR2/DLC3/SolusHeart/matDDOSElectricity.mat"; public static string matDDOSExplosionBits = "RoR2/DLC3/SolusHeart/matDDOSExplosionBits.mat"; public static string matDDOSExplosionSphere = "RoR2/DLC3/SolusHeart/matDDOSExplosionSphere.mat"; public static string matDDOSExplosionSphere2 = "RoR2/DLC3/SolusHeart/matDDOSExplosionSphere2.mat"; public static string matKillableChip = "RoR2/DLC3/SolusHeart/matKillableChip.mat"; public static string matGridSlamWarning = "RoR2/DLC3/SolusHeart/matGridSlamWarning.mat"; public static string matOpaqueDustDirectionalPixelatted = "RoR2/DLC3/SolusHeart/matOpaqueDustDirectionalPixelatted.mat"; public static string matSHGridSlamDust = "RoR2/DLC3/SolusHeart/matSH_GridSlam_Dust.mat"; public static string matSHGridSlamFissures = "RoR2/DLC3/SolusHeart/matSH_GridSlam_Fissures.mat"; public static string matSHGridSlamShockwave = "RoR2/DLC3/SolusHeart/matSH_GridSlam_Shockwave.mat"; public static string matSHGridSlamWave2 = "RoR2/DLC3/SolusHeart/matSH_GridSlam_Wave2.mat"; public static string matSHOrbitalLaser = "RoR2/DLC3/SolusHeart/matSH_OrbitalLaser.mat"; public static string matSHOrbitalLaserPreBeam = "RoR2/DLC3/SolusHeart/matSH_OrbitalLaserPreBeam.mat"; public static string matSHOrbitalLaserWarning = "RoR2/DLC3/SolusHeart/matSH_OrbitalLaserWarning.mat"; public static string matSHOrbitalStrike3 = "RoR2/DLC3/SolusHeart/matSH_OrbitalStrike3.mat"; public static string matSHOrbitalStrike4 = "RoR2/DLC3/SolusHeart/matSH_OrbitalStrike4.mat"; public static string matSHOrbitalStrikeBits = "RoR2/DLC3/SolusHeart/matSH_OrbitalStrikeBits.mat"; public static string matSHOrbitalStrikeBurn = "RoR2/DLC3/SolusHeart/matSH_OrbitalStrikeBurn.mat"; public static string matSHOrbitalStrikePreBeam = "RoR2/DLC3/SolusHeart/matSH_OrbitalStrikePreBeam.mat"; public static string matSHOrbitalStrikeSpark = "RoR2/DLC3/SolusHeart/matSH_OrbitalStrikeSpark.mat"; public static string matSHOrbitalStrikeVoxels = "RoR2/DLC3/SolusHeart/matSH_OrbitalStrikeVoxels.mat"; public static string matSHOrbitalStrikeVoxels2 = "RoR2/DLC3/SolusHeart/matSH_OrbitalStrikeVoxels2.mat"; public static string matSHOrbitalStrikeVoxels3 = "RoR2/DLC3/SolusHeart/matSH_OrbitalStrikeVoxels3.mat"; public static string matSHBombardmentCharge = "RoR2/DLC3/SolusHeart/matSHBombardmentCharge.mat"; public static string matSHBombardmentDecal = "RoR2/DLC3/SolusHeart/matSHBombardmentDecal.mat"; public static string matSHBombardmentIndicator = "RoR2/DLC3/SolusHeart/matSHBombardmentIndicator.mat"; public static string matSHBombardmentPreBeam = "RoR2/DLC3/SolusHeart/matSHBombardmentPreBeam.mat"; public static string matSHBombardmentProj = "RoR2/DLC3/SolusHeart/matSHBombardmentProj.mat"; public static string matSHBombardmentSpark = "RoR2/DLC3/SolusHeart/matSHBombardmentSpark.mat"; public static string matSHBombardmentWave = "RoR2/DLC3/SolusHeart/matSHBombardmentWave.mat"; public static string matSHBombardmentWave2 = "RoR2/DLC3/SolusHeart/matSHBombardmentWave2.mat"; public static string matSHOrbitalStrikeSummonFlash = "RoR2/DLC3/SolusHeart/matSHOrbitalStrikeSummonFlash.mat"; public static string matChipProjectile = "RoR2/DLC3/SolusHeart/matChipProjectile.mat"; public static string matChipProjectileCore = "RoR2/DLC3/SolusHeart/matChipProjectileCore.mat"; public static string matChipProjectileCoreFast = "RoR2/DLC3/SolusHeart/matChipProjectileCore_Fast.mat"; public static string matSHExpandingLaserFlare = "RoR2/DLC3/SolusHeart/matSH_ExpandingLaserFlare.mat"; public static string matSHLaserBurstBlastCore = "RoR2/DLC3/SolusHeart/matSH_LaserBurstBlastCore.mat"; public static string matSHLaserBurstBlastCoreOrange = "RoR2/DLC3/SolusHeart/matSH_LaserBurstBlastCore_Orange.mat"; public static string matSHLaserBurstBlastCoreTeleportLaser = "RoR2/DLC3/SolusHeart/matSH_LaserBurstBlastCore_TeleportLaser.mat"; public static string matSHLaserBurstBlastElectricity = "RoR2/DLC3/SolusHeart/matSH_LaserBurstBlastElectricity.mat"; public static string matSHLaserBurstBlastNoise = "RoR2/DLC3/SolusHeart/matSH_LaserBurstBlastNoise.mat"; public static string matSHLaserBurstBlastNoiseTeleportLaser = "RoR2/DLC3/SolusHeart/matSH_LaserBurstBlastNoise_TeleportLaser.mat"; public static string matSHLaserBurstBlastRim = "RoR2/DLC3/SolusHeart/matSH_LaserBurstBlastRim.mat"; public static string matSHLaserBurstBlastRimTeleportLaser = "RoR2/DLC3/SolusHeart/matSH_LaserBurstBlastRim_TeleportLaser.mat"; public static string matSolusHeartTeleport = "RoR2/DLC3/SolusHeart/matSolusHeartTeleport.mat"; public static string matTeleportDistortion = "RoR2/DLC3/SolusHeart/matTeleportDistortion.mat"; public static string matTeleportDistortionopt = "RoR2/DLC3/SolusHeart/matTeleportDistortion_opt.mat"; public static string matTerrainShiftArrow = "RoR2/DLC3/SolusHeart/matTerrainShiftArrow.mat"; public static string matTerrainShiftTelegraphDown = "RoR2/DLC3/SolusHeart/matTerrainShiftTelegraphDown.mat"; public static string matTerrainShiftTelegraphUp = "RoR2/DLC3/SolusHeart/matTerrainShiftTelegraphUp.mat"; public static string matUnderclockBit = "RoR2/DLC3/SolusHeart/matUnderclockBit.mat"; public static string matUnderclockBubble = "RoR2/DLC3/SolusHeart/matUnderclockBubble.mat"; public static string matUnderclockChip = "RoR2/DLC3/SolusHeart/matUnderclockChip.mat"; public static string matUnderclockDecal = "RoR2/DLC3/SolusHeart/matUnderclockDecal.mat"; public static string matUnderclockFog = "RoR2/DLC3/SolusHeart/matUnderclockFog.mat"; public static string matUnderclockWave = "RoR2/DLC3/SolusHeart/matUnderclockWave.mat"; public static string matUnderlockIndicator = "RoR2/DLC3/SolusHeart/matUnderlockIndicator.mat"; public static string SolusChip = "RoR2/DLC3/SolusHeart/SolusChip.mat"; public static string SolusChipCorrupted = "RoR2/DLC3/SolusHeart/SolusChipCorrupted.mat"; public static string SolusChipDead = "RoR2/DLC3/SolusHeart/SolusChipDead.mat"; public static string SolusChipProjectile = "RoR2/DLC3/SolusHeart/SolusChipProjectile.mat"; public static string SolusChipProjectileFast = "RoR2/DLC3/SolusHeart/SolusChipProjectile_Fast.mat"; public static string matWorkerUnitExplosionDust = "RoR2/DLC3/SolusMine/matWorkerUnitExplosionDust.mat"; public static string matWorkerUnitExplosionFireball = "RoR2/DLC3/SolusMine/matWorkerUnitExplosionFireball.mat"; public static string matWorkerUnitExplosionFireTrails = "RoR2/DLC3/SolusMine/matWorkerUnitExplosionFireTrails.mat"; public static string matWorkerUnitMineSmokeRings = "RoR2/DLC3/SolusMine/matWorkerUnitMineSmokeRings.mat"; public static string matWorkerUnitMineTrail = "RoR2/DLC3/SolusMine/matWorkerUnitMineTrail.mat"; public static string matWorkerUnitPreAttackSphere = "RoR2/DLC3/SolusMine/matWorkerUnitPreAttackSphere.mat"; public static string matExhaustDamageCover = "RoR2/DLC3/SolusWing/matExhaustDamageCover.mat"; public static string matGravPulseBand = "RoR2/DLC3/SolusWing/matGravPulseBand.mat"; public static string matGravPulseBandOuter = "RoR2/DLC3/SolusWing/matGravPulseBandOuter.mat"; public static string matGravPulseBlink = "RoR2/DLC3/SolusWing/matGravPulseBlink.mat"; public static string matGravPulseBlinkNoOscillate = "RoR2/DLC3/SolusWing/matGravPulseBlinkNoOscillate.mat"; public static string matGravPulseBlinkNoOscillateGlitched = "RoR2/DLC3/SolusWing/matGravPulseBlinkNoOscillateGlitched.mat"; public static string matGravPulseCorner = "RoR2/DLC3/SolusWing/matGravPulseCorner.mat"; public static string matGravPulseDistortion = "RoR2/DLC3/SolusWing/matGravPulseDistortion.mat"; public static string matGravPulseElectric = "RoR2/DLC3/SolusWing/matGravPulseElectric.mat"; public static string matGravPulseElectric2 = "RoR2/DLC3/SolusWing/matGravPulseElectric2.mat"; public static string matGravPulseHoloWall = "RoR2/DLC3/SolusWing/matGravPulseHoloWall.mat"; public static string matGravPulseHoloWallGlitched = "RoR2/DLC3/SolusWing/matGravPulseHoloWallGlitched.mat"; public static string matGravPulseIntersection = "RoR2/DLC3/SolusWing/matGravPulseIntersection.mat"; public static string matGravPulseWarning = "RoR2/DLC3/SolusWing/matGravPulseWarning.mat"; public static string matGravPulseWindUpLightning = "RoR2/DLC3/SolusWing/matGravPulseWindUpLightning.mat"; public static string matGravPulseWindUpPulseSphere = "RoR2/DLC3/SolusWing/matGravPulseWindUpPulseSphere.mat"; public static string matGravPulseWindUpPulseWall = "RoR2/DLC3/SolusWing/matGravPulseWindUpPulseWall.mat"; public static string matGravPulseWindUpPulseWallGlitched = "RoR2/DLC3/SolusWing/matGravPulseWindUpPulseWallGlitched.mat"; public static string matGravPulseWindUpShell = "RoR2/DLC3/SolusWing/matGravPulseWindUpShell.mat"; public static string matGravPulseWindUpShellNoise = "RoR2/DLC3/SolusWing/matGravPulseWindUpShellNoise.mat"; public static string matGravPulseWindUpSignal = "RoR2/DLC3/SolusWing/matGravPulseWindUpSignal.mat"; public static string matOverheatBeamImpactSparks = "RoR2/DLC3/SolusWing/matOverheatBeamImpactSparks.mat"; public static string matOverheatBeamNovaSphere = "RoR2/DLC3/SolusWing/matOverheatBeamNovaSphere.mat"; public static string matOverheatBeamWindUpSuctionDramatic = "RoR2/DLC3/SolusWing/matOverheatBeamWindUpSuctionDramatic.mat"; public static string matSWOverheatBeamFiringRings = "RoR2/DLC3/SolusWing/matSWOverheatBeam_FiringRings.mat"; public static string matSWOverheatBeamFiringRingsGlitched = "RoR2/DLC3/SolusWing/matSWOverheatBeam_FiringRingsGlitched.mat"; public static string matSWOverheatBeamChargeUp = "RoR2/DLC3/SolusWing/matSWOverheatBeamChargeUp.mat"; public static string matSWOverheatBeamChargeUpGlitched = "RoR2/DLC3/SolusWing/matSWOverheatBeamChargeUpGlitched.mat"; public static string matSWOverheatBeamCylinder1 = "RoR2/DLC3/SolusWing/matSWOverheatBeamCylinder1.mat"; public static string matSWOverheatBeamCylinder1Glitched = "RoR2/DLC3/SolusWing/matSWOverheatBeamCylinder1Glitched.mat"; public static string matSWOverheatBeamCylinder2 = "RoR2/DLC3/SolusWing/matSWOverheatBeamCylinder2.mat"; public static string matSWOverheatBeamCylinderInterior = "RoR2/DLC3/SolusWing/matSWOverheatBeamCylinderInterior.mat"; public static string matSWOverheatBeamLaserPointer = "RoR2/DLC3/SolusWing/matSWOverheatBeamLaserPointer.mat"; public static string matSWOverheatBeamLesser = "RoR2/DLC3/SolusWing/matSWOverheatBeamLesser.mat"; public static string matSWOverheatBeamLesserExterior = "RoR2/DLC3/SolusWing/matSWOverheatBeamLesserExterior.mat"; public static string matSWOverheatBeamMuzzleRays = "RoR2/DLC3/SolusWing/matSWOverheatBeamMuzzleRays.mat"; public static string matSWOverheatBeamWindUp = "RoR2/DLC3/SolusWing/matSWOverheatBeamWindUp.mat"; public static string matSolusWingCablesextinguisher = "RoR2/DLC3/SolusWing/matSolusWing_Cables_extinguisher.mat"; public static string matSolusWingCablesheat = "RoR2/DLC3/SolusWing/matSolusWing_Cables_heat.mat"; public static string matSolusWingBody = "RoR2/DLC3/SolusWing/matSolusWingBody.mat"; public static string matSolusWingCablesVents1 = "RoR2/DLC3/SolusWing/matSolusWingCablesVents 1.mat"; public static string matSolusWingCablesVents = "RoR2/DLC3/SolusWing/matSolusWingCablesVents.mat"; public static string matSolusWingCablesVentspostFight = "RoR2/DLC3/SolusWing/matSolusWingCablesVents_postFight.mat"; public static string matSolusWingCablesVentspreFlight = "RoR2/DLC3/SolusWing/matSolusWingCablesVents_preFlight.mat"; public static string matSolusWingEye = "RoR2/DLC3/SolusWing/matSolusWingEye.mat"; public static string matSolusWingEyePrefight = "RoR2/DLC3/SolusWing/matSolusWingEyePrefight.mat"; public static string matSolusWingEyesSfx = "RoR2/DLC3/SolusWing/matSolusWingEyesSfx.mat"; public static string matSolusWingHalos = "RoR2/DLC3/SolusWing/matSolusWingHalos.mat"; public static string matSolusWingPanels = "RoR2/DLC3/SolusWing/matSolusWingPanels.mat"; public static string matSolusWingBodyBroken = "RoR2/DLC3/SolusWing/matSolusWingBodyBroken.mat"; public static string matSolusWingCablesVentsBroken = "RoR2/DLC3/SolusWing/matSolusWingCablesVentsBroken.mat"; public static string matSolusWingEyeBroken = "RoR2/DLC3/SolusWing/matSolusWingEyeBroken.mat"; public static string matSolusWingEyesSfxBroken = "RoR2/DLC3/SolusWing/matSolusWingEyesSfxBroken.mat"; public static string matSolusWingHalosBroken = "RoR2/DLC3/SolusWing/matSolusWingHalosBroken.mat"; public static string matSolusWingPanelsBroken = "RoR2/DLC3/SolusWing/matSolusWingPanelsBroken.mat"; public static string matSolusWingPostFightCollapseShockwave = "RoR2/DLC3/SolusWing/matSolusWingPostFightCollapseShockwave.mat"; public static string matGolemElectric1 = "RoR2/DLC3/SolusWing/matGolemElectric 1.mat"; public static string matMovingLaserBeam = "RoR2/DLC3/SolusWing/matMovingLaserBeam.mat"; public static string matMovingLaserElectric = "RoR2/DLC3/SolusWing/matMovingLaserElectric.mat"; public static string matMovingLaserExplosion = "RoR2/DLC3/SolusWing/matMovingLaserExplosion.mat"; public static string matMovingLaserFlare = "RoR2/DLC3/SolusWing/matMovingLaserFlare.mat"; public static string matMovingLaserGlob = "RoR2/DLC3/SolusWing/matMovingLaserGlob.mat"; public static string matSolusWingBubbleShield = "RoR2/DLC3/SolusWing/matSolusWingBubbleShield.mat"; public static string matSolusWingCablesVentsFX = "RoR2/DLC3/SolusWing/matSolusWingCablesVentsFX.mat"; public static string matSolusWingPanelsFX = "RoR2/DLC3/SolusWing/matSolusWingPanelsFX.mat"; public static string matSWDeathShockwaveRing = "RoR2/DLC3/SolusWing/matSW_DeathShockwaveRing.mat"; public static string matSWExpandingLaser = "RoR2/DLC3/SolusWing/matSW_ExpandingLaser.mat"; public static string matSWExpandingLaser2 = "RoR2/DLC3/SolusWing/matSW_ExpandingLaser2.mat"; public static string matSWExpandingLaserFlare = "RoR2/DLC3/SolusWing/matSW_ExpandingLaserFlare.mat"; public static string matSWExpandingLaserRing = "RoR2/DLC3/SolusWing/matSW_ExpandingLaserRing.mat"; public static string matSWExplosionFire = "RoR2/DLC3/SolusWing/matSW_ExplosionFire.mat"; public static string matSWHaloElectricSurface = "RoR2/DLC3/SolusWing/matSW_HaloElectricSurface.mat"; public static string matSWLaserBurstBlastCore = "RoR2/DLC3/SolusWing/matSW_LaserBurstBlastCore.mat"; public static string matSWLaserBurstBlastElectricity = "RoR2/DLC3/SolusWing/matSW_LaserBurstBlastElectricity.mat"; public static string matSWLaserBurstBlastFlash = "RoR2/DLC3/SolusWing/matSW_LaserBurstBlastFlash.mat"; public static string matSWLaserBurstBlastNoise = "RoR2/DLC3/SolusWing/matSW_LaserBurstBlastNoise.mat"; public static string matSWLaserBurstBlastRim = "RoR2/DLC3/SolusWing/matSW_LaserBurstBlastRim.mat"; public static string matSWLaserBurstBlastRing = "RoR2/DLC3/SolusWing/matSW_LaserBurstBlastRing.mat"; public static string matSWLaserBurstBlastRingGlitch = "RoR2/DLC3/SolusWing/matSW_LaserBurstBlastRing_Glitch.mat"; public static string matSWLaserGridMuzzleFlashRing = "RoR2/DLC3/SolusWing/matSW_LaserGridMuzzleFlashRing.mat"; public static string matSWOverheatBeamCharge = "RoR2/DLC3/SolusWing/matSW_OverheatBeamCharge.mat"; public static string matSWOverheatBeamChargeGlitched = "RoR2/DLC3/SolusWing/matSW_OverheatBeamChargeGlitched.mat"; public static string matSWpreDeathLightShafts = "RoR2/DLC3/SolusWing/matSW_preDeathLightShafts.mat"; public static string matSWShockwaveRings = "RoR2/DLC3/SolusWing/matSW_ShockwaveRings.mat"; public static string matSWSummonVulturesSphere = "RoR2/DLC3/SolusWing/matSW_SummonVulturesSphere.mat"; public static string matSWSuppressionAoENoise = "RoR2/DLC3/SolusWing/matSW_SuppressionAoENoise.mat"; public static string matSWSuppressionAoERim = "RoR2/DLC3/SolusWing/matSW_SuppressionAoERim.mat"; public static string matSWSuppressionAoESphere = "RoR2/DLC3/SolusWing/matSW_SuppressionAoESphere.mat"; public static string matSWSuppressionDistortion = "RoR2/DLC3/SolusWing/matSW_SuppressionDistortion.mat"; public static string matSWSuppressionLaser = "RoR2/DLC3/SolusWing/matSW_SuppressionLaser.mat"; public static string matSWSuppressionLaserBolt = "RoR2/DLC3/SolusWing/matSW_SuppressionLaserBolt.mat"; public static string matSWDestroyedSmoke = "RoR2/DLC3/SolusWing/matSWDestroyedSmoke.mat"; public static string matSWExpandingLaserImpFlash = "RoR2/DLC3/SolusWing/matSWExpandingLaserImpFlash.mat"; public static string matSWInvulnerabiltyOverlay = "RoR2/DLC3/SolusWing/matSWInvulnerabiltyOverlay.mat"; public static string matSWLaserGridBeam = "RoR2/DLC3/SolusWing/matSWLaserGridBeam.mat"; public static string matSWLaserGridImpFlash = "RoR2/DLC3/SolusWing/matSWLaserGridImpFlash.mat"; public static string matSWLaserGridImpSparks = "RoR2/DLC3/SolusWing/matSWLaserGridImpSparks.mat"; public static string matSWLaserGridSparks2 = "RoR2/DLC3/SolusWing/matSWLaserGridSparks2.mat"; public static string matSWPortOpenPulseRing = "RoR2/DLC3/SolusWing/matSWPortOpenPulseRing.mat"; public static string matSWPortOpenStreaks = "RoR2/DLC3/SolusWing/matSWPortOpenStreaks.mat"; public static string matSWSparks = "RoR2/DLC3/SolusWing/matSWSparks.mat"; public static string matTransparent = "RoR2/DLC3/SolusWing/matTransparent.mat"; public static string matWweakpointDestroyedShockwave = "RoR2/DLC3/SolusWing/matWweakpointDestroyedShockwave.mat"; public static string matBrittleWardIndicator = "RoR2/DLC3/SolusWingForm1/matBrittleWardIndicator.mat"; public static string matExtinguisherPod = "RoR2/DLC3/SolusWingForm1/matExtinguisherPod.mat"; public static string matHeaterPod = "RoR2/DLC3/SolusWingForm1/matHeaterPod.mat"; public static string matOverheatWave = "RoR2/DLC3/SolusWingForm1/matOverheatWave.mat"; public static string matSHHeatlDistortion = "RoR2/DLC3/SolusWingForm1/matSH_HeatlDistortion.mat"; public static string matExtinguisherCoils = "RoR2/DLC3/SolusWingForm1/matExtinguisherCoils.mat"; public static string matHeatsinkCoils = "RoR2/DLC3/SolusWingForm1/matHeatsinkCoils.mat"; public static string matHeatsinkCoilsActive = "RoR2/DLC3/SolusWingForm1/matHeatsinkCoilsActive.mat"; public static string matParticleBrokenSmoke = "RoR2/DLC3/SolusWingForm1/matParticleBrokenSmoke.mat"; public static string matParticleFireExtinguisherBase = "RoR2/DLC3/SolusWingForm1/matParticleFireExtinguisherBase.mat"; public static string matParticleFireExtinguisherCloud = "RoR2/DLC3/SolusWingForm1/matParticleFireExtinguisherCloud.mat"; public static string matParticleFireExtinguisherImpactCloud = "RoR2/DLC3/SolusWingForm1/matParticleFireExtinguisherImpactCloud.mat"; public static string matParticleFireExtinguisherTrail = "RoR2/DLC3/SolusWingForm1/matParticleFireExtinguisherTrail.mat"; public static string matParticleHeatSinkDistortion = "RoR2/DLC3/SolusWingForm1/matParticleHeatSinkDistortion.mat"; public static string matParticleSteam = "RoR2/DLC3/SolusWingForm1/matParticleSteam.mat"; public static string matPod = "RoR2/DLC3/SolusWingForm1/matPod.mat"; public static string matTanker = "RoR2/DLC3/Tanker/matTanker.mat"; public static string matTankerFireballTrail = "RoR2/DLC3/Tanker/matTankerFireballTrail.mat"; public static string matTankerFireRings = "RoR2/DLC3/Tanker/matTankerFireRings.mat"; public static string matTankerGlass = "RoR2/DLC3/Tanker/matTankerGlass.mat"; public static string matTankerLiquid = "RoR2/DLC3/Tanker/matTankerLiquid.mat"; public static string matSolusArielSpawnRings = "RoR2/DLC3/Tanker/matSolusArielSpawnRings.mat"; public static string matSolusArielSpawnRingsTrails = "RoR2/DLC3/Tanker/matSolusArielSpawnRingsTrails.mat"; public static string matTankerAccelerantBall = "RoR2/DLC3/Tanker/matTankerAccelerantBall.mat"; public static string matTankerAccelerantBubbles = "RoR2/DLC3/Tanker/matTankerAccelerantBubbles.mat"; public static string matTankerAccelerantDoTDistortion = "RoR2/DLC3/Tanker/matTankerAccelerantDoTDistortion.mat"; public static string matTankerAccelerantDoTFire = "RoR2/DLC3/Tanker/matTankerAccelerantDoTFire.mat"; public static string matTankerAccelerantDoTIndicator = "RoR2/DLC3/Tanker/matTankerAccelerantDoTIndicator.mat"; public static string matTankerAccelerantExplosionBlastRing = "RoR2/DLC3/Tanker/matTankerAccelerantExplosionBlastRing.mat"; public static string matTankerAccelerantExplosionSmoke = "RoR2/DLC3/Tanker/matTankerAccelerantExplosionSmoke.mat"; public static string matTankerAccelerantGooDecal1 = "RoR2/DLC3/Tanker/matTankerAccelerantGooDecal 1.mat"; public static string matTankerAccelerantGooDecal = "RoR2/DLC3/Tanker/matTankerAccelerantGooDecal.mat"; public static string matTankerAccelerantTrail = "RoR2/DLC3/Tanker/matTankerAccelerantTrail.mat"; public static string matTankerExplosionSmoke = "RoR2/DLC3/Tanker/matTankerExplosionSmoke.mat"; public static string matTankerExplosionSphere = "RoR2/DLC3/Tanker/matTankerExplosionSphere.mat"; public static string matTankerGreasePuddleStreaks = "RoR2/DLC3/Tanker/matTankerGreasePuddleStreaks.mat"; public static string matTankerIgniteAOEFire = "RoR2/DLC3/Tanker/matTankerIgniteAOEFire.mat"; public static string matTankerIgniteDecal = "RoR2/DLC3/Tanker/matTankerIgniteDecal.mat"; public static string matTankerOverlaySpawn = "RoR2/DLC3/Tanker/matTankerOverlay_Spawn.mat"; public static string matEyeRing = "RoR2/DLC3/matEyeRing.mat"; public static string matEyeRingRemap = "RoR2/DLC3/matEyeRingRemap.mat"; public static string matVendorCore = "RoR2/DLC3/matVendorCore.mat"; public static string matVendorCoreFluid = "RoR2/DLC3/matVendorCoreFluid.mat"; public static string matVendorEye = "RoR2/DLC3/matVendorEye.mat"; public static string matVendorGlass = "RoR2/DLC3/matVendorGlass.mat"; public static string matVendorShell = "RoR2/DLC3/matVendorShell.mat"; public static string matVendorWires = "RoR2/DLC3/matVendorWires.mat"; public static string matVendorGlassHex = "RoR2/DLC3/matVendorGlassHex.mat"; public static string matSolusVendorStealEffect = "RoR2/DLC3/matSolusVendorStealEffect.mat"; public static string matVultureHunterExhaust = "RoR2/DLC3/VultureHunter/matVultureHunterExhaust.mat"; public static string matVultureHunterExhaustTrail = "RoR2/DLC3/VultureHunter/matVultureHunterExhaustTrail.mat"; public static string matVultureHunterSpearThrow = "RoR2/DLC3/VultureHunter/matVultureHunterSpearThrow.mat"; public static string VultreBossbackpack = "RoR2/DLC3/VultureHunter/VultreBoss_backpack.mat"; public static string VultreBossbody = "RoR2/DLC3/VultureHunter/VultreBoss_body.mat"; public static string VultreBossfeathers = "RoR2/DLC3/VultureHunter/VultreBoss_feathers.mat"; public static string VultureBosseyes = "RoR2/DLC3/VultureHunter/VultureBoss_eyes.mat"; public static string VultureBossglow1 = "RoR2/DLC3/VultureHunter/VultureBoss_glow1.mat"; public static string VultureBossglow2 = "RoR2/DLC3/VultureHunter/VultureBoss_glow2.mat"; public static string VultureBossglow3 = "RoR2/DLC3/VultureHunter/VultureBoss_glow3.mat"; public static string VultureBossspearglow = "RoR2/DLC3/VultureHunter/VultureBoss_spear glow.mat"; public static string VultureBossspear = "RoR2/DLC3/VultureHunter/VultureBoss_spear.mat"; public static string matAlloyHunterCalldownWarning = "RoR2/DLC3/VultureHunter/matAlloyHunterCalldownWarning.mat"; public static string matVultureHunterCalldownDecal = "RoR2/DLC3/VultureHunter/matVultureHunterCalldownDecal.mat"; public static string matVultureHunterCalldownFire = "RoR2/DLC3/VultureHunter/matVultureHunterCalldownFire.mat"; public static string matVultureHunterCallDownLaser = "RoR2/DLC3/VultureHunter/matVultureHunterCallDownLaser.mat"; public static string matVultureHunterPortal = "RoR2/DLC3/VultureHunter/matVultureHunterPortal.mat"; public static string matVultureHunterXiSpearTeleportedDecal = "RoR2/DLC3/VultureHunter/matVultureHunterXiSpearTeleportedDecal.mat"; public static string matVultureHunterCalldownIndicatorInner = "RoR2/DLC3/VultureHunter/matVultureHunterCalldownIndicatorInner.mat"; public static string matVultureHunterCalldownIndicatorOuter = "RoR2/DLC3/VultureHunter/matVultureHunterCalldownIndicatorOuter.mat"; public static string matVultureHunterPerchWind = "RoR2/DLC3/VultureHunter/matVultureHunterPerchWind.mat"; public static string matVultureHunterTargetDecal = "RoR2/DLC3/VultureHunter/matVultureHunterTargetDecal.mat"; public static string matVultureHunterTargetIndicator = "RoR2/DLC3/VultureHunter/matVultureHunterTargetIndicator.mat"; public static string matVultureHunterXiSpearAreaIndicator = "RoR2/DLC3/VultureHunter/matVultureHunterXiSpearAreaIndicator.mat"; public static string matVultureHunterXiSpearChargeUp = "RoR2/DLC3/VultureHunter/matVultureHunterXiSpearChargeUp.mat"; public static string matWorkerUnitBody = "RoR2/DLC3/WorkerUnit/matWorkerUnitBody.mat"; public static string matSolusLaserScanning = "RoR2/DLC3/WorkerUnit/matSolusLaserScanning.mat"; public static string matSolusRing = "RoR2/DLC3/WorkerUnit/matSolusRing.mat"; public static string matWorkerUnitFireSpin = "RoR2/DLC3/WorkerUnit/matWorkerUnitFireSpin.mat"; public static string matWorkerUnitOmniRing = "RoR2/DLC3/WorkerUnit/matWorkerUnitOmniRing.mat"; public static string matWorkerUnitOverlaySpawn = "RoR2/DLC3/WorkerUnit/matWorkerUnitOverlay_Spawn.mat"; public static string matWorkerUnitParticleCubes = "RoR2/DLC3/WorkerUnit/matWorkerUnitParticleCubes.mat"; public static string matWorkerUnitWaterDrip = "RoR2/DLC3/WorkerUnit/matWorkerUnitWaterDrip.mat"; public static string matTankerAccelerantDebuff = "RoR2/DLC3/Buffs/matTankerAccelerantDebuff.mat"; public static string matTankerAccelerantGoo = "RoR2/DLC3/Buffs/matTankerAccelerantGoo.mat"; public static string matTankerAccelerantIgnited = "RoR2/DLC3/Buffs/matTankerAccelerantIgnited.mat"; public static string matGravitySlowDebuff = "RoR2/DLC3/Buffs/matGravitySlowDebuff.mat"; public static string matNanoBuffSparks = "RoR2/DLC3/Buffs/matNanoBuffSparks.mat"; public static string matNanoBuffStreaks = "RoR2/DLC3/Buffs/matNanoBuffStreaks.mat"; public static string matNanoBugArrow = "RoR2/DLC3/Buffs/matNanoBugArrow.mat"; public static string matNanoBugCore = "RoR2/DLC3/Buffs/matNanoBugCore.mat"; public static string matNanoBugged = "RoR2/DLC3/Buffs/matNanoBugged.mat"; public static string matNanoDebuffDrips = "RoR2/DLC3/Buffs/matNanoDebuffDrips.mat"; public static string matShieldTankDamagePixels = "RoR2/DLC3/Buffs/matShieldTankDamagePixels.mat"; public static string matSureProcAura = "RoR2/DLC3/Buffs/matSureProcAura.mat"; public static string matSureProcBeam = "RoR2/DLC3/Buffs/matSureProcBeam.mat"; public static string matSureProcGodRay = "RoR2/DLC3/Buffs/matSureProcGodRay.mat"; public static string matSureProcHitSparks = "RoR2/DLC3/Buffs/matSureProcHitSparks.mat"; public static string matSureProcOverlay = "RoR2/DLC3/Buffs/matSureProcOverlay.mat"; public static string matDroneTier2 = "RoR2/DLC3/matDroneTier2.mat"; public static string matTrimSheetMetalCCGrass = "RoR2/DLC3/matTrimSheetMetalCCGrass.mat"; public static string matTransparentSolus = "RoR2/DLC3/matTransparentSolus.mat"; public static string matZipRailLineRender = "RoR2/DLC3/matZipRail_LineRender.mat"; public static string matZipRailTrail01 = "RoR2/DLC3/matZipRailTrail01.mat"; public static string TEMPmatTechZiprail = "RoR2/DLC3/TEMP_matTechZiprail.mat"; public static string TEMPmatTechZiprailVehicleSphereVFX = "RoR2/DLC3/TEMP_matTechZiprailVehicleSphereVFX.mat"; public static string matTrimSheetMetalScifiBlue = "RoR2/DLC3/matTrimSheetMetalScifiBlue.mat"; public static string matBetterDefault = "RoR2/DLC3/matBetterDefault.mat"; public static string matFlashCutout01 = "RoR2/DLC3/matFlashCutout01.mat"; public static string matFlashCutout01b = "RoR2/DLC3/matFlashCutout01b.mat"; public static string matJumpPadSmoke = "RoR2/DLC3/matJumpPadSmoke.mat"; public static string matCollectiveLaserBurstBlastCore = "RoR2/DLC3/Collective/matCollective_LaserBurstBlastCore.mat"; public static string matCollectiveLaserBurstBlastNoise = "RoR2/DLC3/Collective/matCollective_LaserBurstBlastNoise.mat"; public static string matCollectiveLaserBurstBlastRim = "RoR2/DLC3/Collective/matCollective_LaserBurstBlastRim.mat"; public static string matEliteCollectiveIndicatorCylinder = "RoR2/DLC3/Collective/matEliteCollectiveIndicatorCylinder.mat"; public static string matEliteCollectiveIndicatorSphere = "RoR2/DLC3/Collective/matEliteCollectiveIndicatorSphere.mat"; public static string matEliteCollectiveIndicatorSphereBackfaceShading = "RoR2/DLC3/Collective/matEliteCollectiveIndicatorSphere_BackfaceShading.mat"; public static string matEliteCollectiveIndicatorSphere2 = "RoR2/DLC3/Collective/matEliteCollectiveIndicatorSphere2.mat"; public static string matEliteCollectiveIntersectionCylinder = "RoR2/DLC3/Collective/matEliteCollectiveIntersectionCylinder.mat"; public static string matEliteCollectiveOverlay = "RoR2/DLC3/Collective/matEliteCollectiveOverlay.mat"; public static string matEliteCollectiveOverlayPawn = "RoR2/DLC3/Collective/matEliteCollectiveOverlayPawn.mat"; public static string matEliteCollectivePickup = "RoR2/DLC3/Collective/matEliteCollectivePickup.mat"; public static string matEliteCollectiveTrail = "RoR2/DLC3/Collective/matEliteCollectiveTrail.mat"; public static string matEliteHorn7 = "RoR2/DLC3/Collective/matEliteHorn.mat"; public static string matEliteRing = "RoR2/DLC3/Collective/matEliteRing.mat"; public static string MatMonitorDT = "RoR2/DLC3/Collective/MatMonitorDT.mat"; public static string matTrimSheetGroundEnemies = "RoR2/DLC3/GroundEnemies/matTrimSheetGroundEnemies.mat"; public static string matGroundEnemiesAoEIndDark = "RoR2/DLC3/GroundEnemies/matGroundEnemiesAoEIndDark.mat"; public static string matGroundEnemiesAreaIndicator = "RoR2/DLC3/GroundEnemies/matGroundEnemiesAreaIndicator.mat"; public static string matGroundEnemiesAreaIndicator2 = "RoR2/DLC3/GroundEnemies/matGroundEnemiesAreaIndicator2.mat"; public static string matGroundEnemiesAreaIndicatorBurst = "RoR2/DLC3/GroundEnemies/matGroundEnemiesAreaIndicatorBurst.mat"; public static string matGroundEnemiesAreaIndicatorInside = "RoR2/DLC3/GroundEnemies/matGroundEnemiesAreaIndicatorInside.mat"; public static string matGroundEnemiesGroundFX = "RoR2/DLC3/GroundEnemies/matGroundEnemiesGroundFX.mat"; public static string matGroundEnemiesGroundFX2 = "RoR2/DLC3/GroundEnemies/matGroundEnemiesGroundFX2.mat"; public static string matGroundEnemiesGroundFXBurst = "RoR2/DLC3/GroundEnemies/matGroundEnemiesGroundFXBurst.mat"; public static string matGroundEnemiesGroundFXDark = "RoR2/DLC3/GroundEnemies/matGroundEnemiesGroundFXDark.mat"; public static string matGroundEnemiesLightStreaks = "RoR2/DLC3/GroundEnemies/matGroundEnemiesLightStreaks.mat"; public static string matGroundEnemiesParticulate = "RoR2/DLC3/GroundEnemies/matGroundEnemiesParticulate.mat"; public static string matGroundEnemiesParticulateDark = "RoR2/DLC3/GroundEnemies/matGroundEnemiesParticulateDark.mat"; public static string matGroundEnemiesProjectileInside = "RoR2/DLC3/GroundEnemies/matGroundEnemiesProjectileInside.mat"; public static string matGroundEnemiesProjectileTrail = "RoR2/DLC3/GroundEnemies/matGroundEnemiesProjectileTrail.mat"; public static string matGroundEnemiesStreakBurst = "RoR2/DLC3/GroundEnemies/matGroundEnemiesStreakBurst.mat"; public static string matGroundEnemiesStreakPers = "RoR2/DLC3/GroundEnemies/matGroundEnemiesStreakPers.mat"; public static string matGroundEnemiesTracer = "RoR2/DLC3/GroundEnemies/matGroundEnemiesTracer.mat"; public static string matGroundEnemiesUpStreaks = "RoR2/DLC3/GroundEnemies/matGroundEnemiesUpStreaks.mat"; public static string matGroundEnemiesWind = "RoR2/DLC3/GroundEnemies/matGroundEnemiesWind.mat"; public static string matGroundEnemiesWindDistortion = "RoR2/DLC3/GroundEnemies/matGroundEnemiesWindDistortion.mat"; public static string matGroundEnemiesWindStreaks = "RoR2/DLC3/GroundEnemies/matGroundEnemiesWindStreaks.mat"; public static string matTransparent6 = "RoR2/DLC3/GroundEnemies/matTransparent.mat"; public static string matParryFlash = "RoR2/DLC3/Parry/matParryFlash.mat"; public static string matParryHalo = "RoR2/DLC3/Parry/matParryHalo.mat"; public static string matParryOverlay = "RoR2/DLC3/Parry/matParryOverlay.mat"; public static string matParryProvGhost = "RoR2/DLC3/Parry/matParryProvGhost.mat"; public static string matParrySlash = "RoR2/DLC3/Parry/matParrySlash.mat"; public static string matParrySparkle = "RoR2/DLC3/Parry/matParrySparkle.mat"; public static string matParrySparkle2 = "RoR2/DLC3/Parry/matParrySparkle2.mat"; public static string matParryWave = "RoR2/DLC3/Parry/matParryWave.mat"; public static string matCritAtLowerElevation = "RoR2/DLC3/Parry/matCritAtLowerElevation.mat"; public static string matParry = "RoR2/DLC3/Parry/matParry.mat"; public static string matDecompileOverlay = "RoR2/DLC3/ClassicRun/Endings/matDecompileOverlay.mat"; public static string matDecompileOverlay2 = "RoR2/DLC3/ClassicRun/Endings/matDecompileOverlay2.mat"; public static string matFadeAwayFire = "RoR2/DLC3/ClassicRun/Endings/matFadeAwayFire.mat"; public static string matFadeAwaytrail = "RoR2/DLC3/ClassicRun/Endings/matFadeAwaytrail.mat"; public static string matSquareFlashes = "RoR2/DLC3/ClassicRun/Endings/matSquareFlashes.mat"; public static string matAccessCodesFailIcon = "RoR2/DLC3/AccessCodesNode/matAccessCodesFailIcon.mat"; public static string matAccessCodesNodeBarrierOFF = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeBarrierOFF.mat"; public static string matAccessCodesNodeBarrierOFFopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeBarrierOFF_opt.mat"; public static string matAccessCodesNodeBarrierON = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeBarrierON.mat"; public static string matAccessCodesNodeBarrierONopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeBarrierON_opt.mat"; public static string matAccessCodesNodeBodyOFF = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeBodyOFF.mat"; public static string matAccessCodesNodeBodyOFFopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeBodyOFF_opt.mat"; public static string matAccessCodesNodeBodyON = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeBodyON.mat"; public static string matAccessCodesNodeBodyONopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeBodyON_opt.mat"; public static string matAccessCodesNodeFacesOFF = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeFacesOFF.mat"; public static string matAccessCodesNodeFacesOFFopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeFacesOFF_opt.mat"; public static string matAccessCodesNodeFacesON = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeFacesON.mat"; public static string matAccessCodesNodeFacesONopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeFacesON_opt.mat"; public static string matAccessCodesNodeHedraOFF = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeHedraOFF.mat"; public static string matAccessCodesNodeHedraOFFopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeHedraOFF_opt.mat"; public static string matAccessCodesNodeHedraON = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeHedraON.mat"; public static string matAccessCodesNodeHedraONopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeHedraON_opt.mat"; public static string matAccessCodesNodeLinesOFF = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeLinesOFF.mat"; public static string matAccessCodesNodeLinesOFFopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeLinesOFF_opt.mat"; public static string matAccessCodesNodeLinesON = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeLinesON.mat"; public static string matAccessCodesNodeLinesONopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeLinesON_opt.mat"; public static string matAccessCodesNodeRingOFF = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeRingOFF.mat"; public static string matAccessCodesNodeRingOFFopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeRingOFF_opt.mat"; public static string matAccessCodesNodeRingON = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeRingON.mat"; public static string matAccessCodesNodeRingONopt = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeRingON_opt.mat"; public static string matAccessCodesNodeVFXStars = "RoR2/DLC3/AccessCodesNode/matAccessCodesNodeVFXStars.mat"; public static string matACTeleporterDistortion = "RoR2/DLC3/AccessCodesNode/matACTeleporterDistortion.mat"; public static string matACTeleporterHexagon = "RoR2/DLC3/AccessCodesNode/matACTeleporterHexagon.mat"; public static string matACTeleporterOrb = "RoR2/DLC3/AccessCodesNode/matACTeleporterOrb.mat"; public static string matNullifierBeamCore1 = "RoR2/DLC3/AccessCodesNode/matNullifierBeamCore 1.mat"; public static string matNullifierBeamCore2 = "RoR2/DLC3/AccessCodesNode/matNullifierBeamCore 2.mat"; public static string matNullifierBeamCore3 = "RoR2/DLC3/AccessCodesNode/matNullifierBeamCore 3.mat"; public static string matCoinSlot = "RoR2/DLC3/CoinSlot/matCoinSlot.mat"; public static string matCoinSlotopt = "RoR2/DLC3/CoinSlot/matCoinSlot_opt.mat"; public static string matCoinSlotCubes = "RoR2/DLC3/CoinSlot/matCoinSlotCubes.mat"; public static string matCoinSlotCubesopt = "RoR2/DLC3/CoinSlot/matCoinSlotCubes_opt.mat"; public static string matCoinSlotGlow = "RoR2/DLC3/CoinSlot/matCoinSlotGlow.mat"; public static string matCoinSlotRing = "RoR2/DLC3/CoinSlot/matCoinSlotRing.mat"; public static string matCoinSlotRingPulse = "RoR2/DLC3/CoinSlot/matCoinSlotRingPulse.mat"; public static string matCoinSlotRingPulseDistortion = "RoR2/DLC3/CoinSlot/matCoinSlotRingPulseDistortion.mat"; public static string matCoinSlotTechStreaks01 = "RoR2/DLC3/CoinSlot/matCoinSlotTechStreaks_01.mat"; public static string matCoinSlotTechStreaks02 = "RoR2/DLC3/CoinSlot/matCoinSlotTechStreaks_02.mat"; public static string matCoinSlotTeleporterEXT = "RoR2/DLC3/CoinSlot/matCoinSlotTeleporterEXT.mat"; public static string matCoinSlotTeleporterFresnel = "RoR2/DLC3/CoinSlot/matCoinSlotTeleporterFresnel.mat"; public static string matCoinSlotTeleporterINT = "RoR2/DLC3/CoinSlot/matCoinSlotTeleporterINT.mat"; public static string matCollectiveShrineLightShaft = "RoR2/DLC3/matCollectiveShrineLightShaft.mat"; public static string matShrineCombatCollective = "RoR2/DLC3/matShrineCombatCollective.mat"; public static string matShrineCombatCollectiveOverlay = "RoR2/DLC3/matShrineCombatCollectiveOverlay.mat"; public static string matShrineCombatCollectiveSymbol = "RoR2/DLC3/matShrineCombatCollectiveSymbol.mat"; public static string matShrineHorn = "RoR2/DLC3/matShrineHorn.mat"; public static string matDroneAssemblyStation = "RoR2/DLC3/DroneAssemblyStation/matDroneAssemblyStation.mat"; public static string matAssemblyStationLightGlow = "RoR2/DLC3/DroneAssemblyStation/matAssemblyStationLightGlow.mat"; public static string matAssemblyStationRingBurst = "RoR2/DLC3/DroneAssemblyStation/matAssemblyStationRingBurst.mat"; public static string matAssemblyStationTrails = "RoR2/DLC3/DroneAssemblyStation/matAssemblyStationTrails.mat"; public static string matAssemblyStationTrails02 = "RoR2/DLC3/DroneAssemblyStation/matAssemblyStationTrails02.mat"; public static string matDroneAssemblyGlass = "RoR2/DLC3/DroneAssemblyStation/matDroneAssemblyGlass.mat"; public static string matDroneAssemblyGlassOn = "RoR2/DLC3/DroneAssemblyStation/matDroneAssemblyGlassOn.mat"; public static string matDroneAssemblyStationBeam = "RoR2/DLC3/DroneAssemblyStation/matDroneAssemblyStationBeam.mat"; public static string matDroneSpawnBillboard = "RoR2/DLC3/DroneAssemblyStation/matDroneSpawnBillboard.mat"; public static string matCombinerEnergyFade = "RoR2/DLC3/DroneCombinerStation/matCombinerEnergyFade.mat"; public static string matDroneCombinerChargeCore = "RoR2/DLC3/DroneCombinerStation/matDroneCombinerChargeCore.mat"; public static string matDroneCombinerPlaneParticle = "RoR2/DLC3/DroneCombinerStation/matDroneCombinerPlaneParticle.mat"; public static string matDroneCombinerStation = "RoR2/DLC3/DroneCombinerStation/matDroneCombinerStation.mat"; public static string matDroneFadeAway = "RoR2/DLC3/DroneCombinerStation/matDroneFadeAway.mat"; public static string matDroneFadeIn = "RoR2/DLC3/DroneCombinerStation/matDroneFadeIn.mat"; public static string matDroneScrapper = "RoR2/DLC3/DroneScrapper/matDroneScrapper.mat"; public static string matDroneScrapperFlash = "RoR2/DLC3/DroneScrapper/matDroneScrapperFlash.mat"; public static string matDroneScrapperHitSpark = "RoR2/DLC3/DroneScrapper/matDroneScrapperHitSpark.mat"; public static string matDroneScrapperSparks = "RoR2/DLC3/DroneScrapper/matDroneScrapperSparks.mat"; public static string matDroneScrapperSparks2 = "RoR2/DLC3/DroneScrapper/matDroneScrapperSparks2.mat"; public static string matDroneScrapperSparks3 = "RoR2/DLC3/DroneScrapper/matDroneScrapperSparks3.mat"; public static string matDroneScrapperSW = "RoR2/DLC3/DroneScrapper/matDroneScrapperSW.mat"; public static string matDrone1Holo = "RoR2/DLC3/matDrone1Holo.mat"; public static string matDroneBladesHolo = "RoR2/DLC3/matDroneBladesHolo.mat"; public static string matHolo = "RoR2/DLC3/matHolo.mat"; public static string matDroneVendorPUModels = "RoR2/DLC3/matDroneVendorPUModels.mat"; public static string matDroneVendor = "RoR2/DLC3/matDroneVendor.mat"; public static string matDroneVendorAntenaGlow = "RoR2/DLC3/matDroneVendorAntenaGlow.mat"; public static string matDroneVendorBeamGlow = "RoR2/DLC3/matDroneVendorBeamGlow.mat"; public static string matDroneVendorBeamGlowSelected = "RoR2/DLC3/matDroneVendorBeamGlowSelected.mat"; public static string matDroneVendorGlitchBurst = "RoR2/DLC3/matDroneVendorGlitchBurst.mat"; public static string matDroneVendorNoiseBurst = "RoR2/DLC3/matDroneVendorNoiseBurst.mat"; public static string matDroneVendorPixelStreaks = "RoR2/DLC3/matDroneVendorPixelStreaks.mat"; public static string matDroneVendorPurchaseOverlay = "RoR2/DLC3/matDroneVendorPurchaseOverlay.mat"; public static string matDroneVendorPurchaseSW = "RoR2/DLC3/matDroneVendorPurchaseSW.mat"; public static string matDroneVendorSpawnBillboard = "RoR2/DLC3/matDroneVendorSpawnBillboard.mat"; public static string matDroneVendorSpawnDistortion = "RoR2/DLC3/matDroneVendorSpawnDistortion.mat"; public static string matDroneVendorBeam = "RoR2/DLC3/matDroneVendorBeam.mat"; public static string matDroneVendorBeamPurchase = "RoR2/DLC3/matDroneVendorBeamPurchase.mat"; public static string matDroneVendorBeamRings = "RoR2/DLC3/matDroneVendorBeamRings.mat"; public static string matDroneVendorBeamRingsPurchase = "RoR2/DLC3/matDroneVendorBeamRingsPurchase.mat"; public static string matDroneVendorBeamRingsSelected = "RoR2/DLC3/matDroneVendorBeamRingsSelected.mat"; public static string matDroneVendorBeamSelect = "RoR2/DLC3/matDroneVendorBeamSelect.mat"; public static string matDroneVendorPersRings = "RoR2/DLC3/matDroneVendorPersRings.mat"; public static string matDroneVendorSelectionRings = "RoR2/DLC3/matDroneVendorSelectionRings.mat"; public static string matMealPrep = "RoR2/DLC3/MealPrep/matMealPrep.mat"; public static string matMealPrep2 = "RoR2/DLC3/MealPrep/matMealPrep2.mat"; public static string matMealPrepAurora = "RoR2/DLC3/MealPrep/matMealPrepAurora.mat"; public static string matMealPrepGlasses = "RoR2/DLC3/MealPrep/matMealPrepGlasses.mat"; public static string matMealPrepOverlay = "RoR2/DLC3/MealPrep/matMealPrepOverlay.mat"; public static string matMealprepRedYellowLiquid = "RoR2/DLC3/MealPrep/matMealprepRedYellowLiquid.mat"; public static string matMealprepStarburst = "RoR2/DLC3/MealPrep/matMealprepStarburst.mat"; public static string matMealPrepUIFlames = "RoR2/DLC3/MealPrep/matMealPrepUIFlames.mat"; public static string matMealPrepUIFlames2 = "RoR2/DLC3/MealPrep/matMealPrepUIFlames2.mat"; public static string matMealprepWokFire = "RoR2/DLC3/MealPrep/matMealprepWokFire.mat"; public static string matEyePortalRay = "RoR2/DLC3/EyePortal/matEyePortalRay.mat"; public static string matHardwareProgPortalCenter = "RoR2/DLC3/matHardwareProgPortalCenter.mat"; public static string matHardwareProgPortalDistortion = "RoR2/DLC3/matHardwareProgPortalDistortion.mat"; public static string matHardwareProgPortalDistortionopt = "RoR2/DLC3/matHardwareProgPortalDistortion_opt.mat"; public static string matHardwareProgPortalEdge1 = "RoR2/DLC3/matHardwareProgPortalEdge 1.mat"; public static string matHardwareProgPortalEdge2 = "RoR2/DLC3/matHardwareProgPortalEdge2.mat"; public static string matHardwareProgPortalQuadEdge = "RoR2/DLC3/matHardwareProgPortalQuadEdge.mat"; public static string matPortalParticle = "RoR2/DLC3/matPortalParticle.mat"; public static string matCompExchangePoratlEdge = "RoR2/DLC3/matCompExchangePoratlEdge.mat"; public static string matCompExchangePoratlEdge2 = "RoR2/DLC3/matCompExchangePoratlEdge2.mat"; public static string matCompExchangePortalCenter = "RoR2/DLC3/matCompExchangePortalCenter.mat"; public static string matCompExchangePortalDistortion = "RoR2/DLC3/matCompExchangePortalDistortion.mat"; public static string matCompExchangePortalDistortionopt = "RoR2/DLC3/matCompExchangePortalDistortion_opt.mat"; public static string matSolusWebCubeEdge = "RoR2/DLC3/matSolusWebCubeEdge.mat"; public static string matSolusWebPortalBackdrop = "RoR2/DLC3/matSolusWebPortalBackdrop.mat"; public static string matSolusWebPortalDistortion = "RoR2/DLC3/matSolusWebPortalDistortion.mat"; public static string matSolusWebPortalEdge = "RoR2/DLC3/matSolusWebPortalEdge.mat"; public static string matSolusWebPortalEdgeBackdrop = "RoR2/DLC3/matSolusWebPortalEdgeBackdrop.mat"; public static string matSolusWebPortalEdgeFast = "RoR2/DLC3/matSolusWebPortalEdgeFast.mat"; public static string matSolusWebPortalQuadEdge = "RoR2/DLC3/matSolusWebPortalQuadEdge.mat"; public static string matSolusWebPortalShockwave = "RoR2/DLC3/matSolusWebPortalShockwave.mat"; public static string matSolusWebQuadEdge = "RoR2/DLC3/matSolusWebQuadEdge.mat"; public static string matSoulsWebPortalBackdrop = "RoR2/DLC3/matSoulsWebPortalBackdrop.mat"; public static string matSoulsWebPortalPulse = "RoR2/DLC3/matSoulsWebPortalPulse.mat"; public static string matElectricBall = "RoR2/DLC3/PowerOrbPedestal/matElectricBall.mat"; public static string matPowerBase = "RoR2/DLC3/PowerOrbPedestal/matPowerBase.mat"; public static string matPowerBaseEmissive = "RoR2/DLC3/PowerOrbPedestal/matPowerBaseEmissive.mat"; public static string matPowerCore = "RoR2/DLC3/PowerOrbPedestal/matPowerCore.mat"; public static string matPowerGradientGlow = "RoR2/DLC3/PowerOrbPedestal/matPowerGradientGlow.mat"; public static string matPowerGradientHex = "RoR2/DLC3/PowerOrbPedestal/matPowerGradientHex.mat"; public static string matPowerGradientHex2 = "RoR2/DLC3/PowerOrbPedestal/matPowerGradientHex2.mat"; public static string matPowerOrb = "RoR2/DLC3/PowerOrbPedestal/matPowerOrb.mat"; public static string matPowerOrbBaseVFXColumn = "RoR2/DLC3/PowerOrbPedestal/matPowerOrbBaseVFXColumn.mat"; public static string matPowerOrbBaseVFXOpen = "RoR2/DLC3/PowerOrbPedestal/matPowerOrbBaseVFXOpen.mat"; public static string matPowerOrbs = "RoR2/DLC3/PowerOrbPedestal/matPowerOrbs.mat"; public static string matPowerVaultBeacon = "RoR2/DLC3/PowerOrbPedestal/matPowerVaultBeacon.mat"; public static string matPowerVaultBeaconBeam = "RoR2/DLC3/PowerOrbPedestal/matPowerVaultBeaconBeam.mat"; public static string matPowerVaultBeaconTrail = "RoR2/DLC3/PowerOrbPedestal/matPowerVaultBeaconTrail.mat"; public static string matPowerVaultLines = "RoR2/DLC3/PowerOrbPedestal/matPowerVaultLines.mat"; public static string matPowerVaultOpenFlash = "RoR2/DLC3/PowerOrbPedestal/matPowerVaultOpenFlash.mat"; public static string matPowerVaultRingWave = "RoR2/DLC3/PowerOrbPedestal/matPowerVaultRingWave.mat"; public static string matShieldTankBeamCore = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankBeamCore.mat"; public static string matShieldTankBeamCore2 = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankBeamCore2.mat"; public static string matShieldTankDeathFog = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankDeathFog.mat"; public static string matShieldTankEnergy = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankEnergy.mat"; public static string matShieldTankEnergyRed = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankEnergyRed.mat"; public static string matShieldTankEnergyTeal = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankEnergyTeal.mat"; public static string matShieldTankFlameBurst = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankFlameBurst.mat"; public static string matShieldTankFogSmokeParticle = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankFogSmokeParticle.mat"; public static string matShieldTankIdle = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankIdle.mat"; public static string matShieldTankIdle2 = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankIdle2.mat"; public static string matShieldTankIdle3 = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankIdle3.mat"; public static string matShieldTankImpactFlash = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankImpactFlash.mat"; public static string matShieldTankPressure = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankPressure.mat"; public static string matShieldTankRingWave = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankRingWave.mat"; public static string matShieldTankStartImpactFlash = "RoR2/DLC3/PowerOrbShieldTank/matShieldTankStartImpactFlash.mat"; public static string matSHShieldPatternBroken = "RoR2/DLC3/PowerOrbShieldTank/matSHShieldPatternBroken.mat"; public static string matSHShieldPatternBrokenRed = "RoR2/DLC3/PowerOrbShieldTank/matSHShieldPatternBrokenRed.mat"; public static string matSHShieldPatternBrokenRedSmall = "RoR2/DLC3/PowerOrbShieldTank/matSHShieldPatternBrokenRedSmall.mat"; public static string matSHShieldPatternBrokenTeal = "RoR2/DLC3/PowerOrbShieldTank/matSHShieldPatternBrokenTeal.mat"; public static string matVendorShrineCore = "RoR2/DLC3/SolusVendorShrine/matVendorShrineCore.mat"; public static string matVendorShrineCore2 = "RoR2/DLC3/SolusVendorShrine/matVendorShrineCore2.mat"; public static string matVendorShrineCore3 = "RoR2/DLC3/SolusVendorShrine/matVendorShrineCore3.mat"; public static string matVendorShrineDistortion = "RoR2/DLC3/SolusVendorShrine/matVendorShrineDistortion.mat"; public static string matSolutionalHauntPortalEffectCenter = "RoR2/DLC3/matSolutionalHauntPortalEffectCenter.mat"; public static string matSolutionalHauntPortalEffectEdge = "RoR2/DLC3/matSolutionalHauntPortalEffectEdge.mat"; public static string matTempItemDist = "RoR2/DLC3/TemporaryItemsDistributor/matTempItemDist.mat"; public static string matTempItemDistSmoke = "RoR2/DLC3/TemporaryItemsDistributor/matTempItemDistSmoke.mat"; public static string matBarrierOnCooldownSplash = "RoR2/DLC3/Items/BarrierOnCooldown/matBarrierOnCooldownSplash.mat"; public static string matBarrierOnCooldown = "RoR2/DLC3/Items/BarrierOnCooldown/matBarrierOnCooldown.mat"; public static string matDubiousMealBlur = "RoR2/DLC3/Items/BonusHealthBoost/matDubiousMealBlur.mat"; public static string matDubiousMealBlurDistortion = "RoR2/DLC3/Items/BonusHealthBoost/matDubiousMealBlurDistortion.mat"; public static string matDubiousMealPlate = "RoR2/DLC3/Items/BonusHealthBoost/matDubiousMealPlate.mat"; public static string matQuickFix = "RoR2/DLC3/Items/BonusHealthBoost/matQuickFix.mat"; public static string matCookedSteak = "RoR2/DLC3/Items/CookedSteak/matCookedSteak.mat"; public static string matSearedSteak = "RoR2/DLC3/Items/CookedSteak/matSearedSteak.mat"; public static string matCritAtLowerElevationFlash = "RoR2/DLC3/Items/CritAtLowerElevation/matCritAtLowerElevationFlash.mat"; public static string matCritAtLowerElevationFullBand = "RoR2/DLC3/Items/CritAtLowerElevation/matCritAtLowerElevationFullBand.mat"; public static string matCritAtLowerElevationImpact = "RoR2/DLC3/Items/CritAtLowerElevation/matCritAtLowerElevationImpact.mat"; public static string matCritAtLowerElevation12 = "RoR2/DLC3/Items/CritAtLowerElevation/matCritAtLowerElevation.mat"; public static string matDestructibleSpawnerBlink = "RoR2/DLC3/Items/DestructibleSpawnerItem/matDestructibleSpawnerBlink.mat"; public static string matDestructibleSpawner = "RoR2/DLC3/Items/DronesDropDynamite/matDestructibleSpawner.mat"; public static string matDynamiteFire = "RoR2/DLC3/Items/DronesDropDynamite/matDynamiteFire.mat"; public static string matDuplicatorRing = "RoR2/DLC3/Items/Duplicator/matDuplicatorRing.mat"; public static string matDuplicator17 = "RoR2/DLC3/Items/Duplicator/matDuplicator.mat"; public static string matExtraEquipment = "RoR2/DLC3/Items/ExtraEquipment/matExtraEquipment.mat"; public static string matExtraEquipmentSwapEffect = "RoR2/DLC3/Items/ExtraEquipment/matExtraEquipmentSwapEffect.mat"; public static string matAccumulateCharge = "RoR2/DLC3/Items/JumpDamageStrike/matAccumulateCharge.mat"; public static string matJumpDamageStrike = "RoR2/DLC3/Items/JumpDamageStrike/matJumpDamageStrike.mat"; public static string matJumpDamageStrikeAura = "RoR2/DLC3/Items/JumpDamageStrike/matJumpDamageStrikeAura.mat"; public static string matJumpDamageStrikeAuraBurst = "RoR2/DLC3/Items/JumpDamageStrike/matJumpDamageStrikeAuraBurst.mat"; public static string matJumpDamageStrikeBlast = "RoR2/DLC3/Items/JumpDamageStrike/matJumpDamageStrikeBlast.mat"; public static string matJumpDamageStrikeDisplaySpin = "RoR2/DLC3/Items/JumpDamageStrike/matJumpDamageStrikeDisplaySpin.mat"; public static string matJumpDamageStrikeLightning = "RoR2/DLC3/Items/JumpDamageStrike/matJumpDamageStrikeLightning.mat"; public static string matJumpDamageStrikeSmoke = "RoR2/DLC3/Items/JumpDamageStrike/matJumpDamageStrikeSmoke.mat"; public static string matFaradaySpurs = "RoR2/DLC3/Items/JumpDamageStrike/matFaradaySpurs.mat"; public static string matOrb = "RoR2/DLC3/Items/MasterBattery/matOrb.mat"; public static string matPowerOrbInactive = "RoR2/DLC3/Items/MasterBattery/matPowerOrb_Inactive.mat"; public static string matPowerOrbBeamCore = "RoR2/DLC3/Items/MasterBattery/matPowerOrbBeamCore.mat"; public static string matCoreCage = "RoR2/DLC3/Items/MasterCore/matCoreCage.mat"; public static string matCoreCage2 = "RoR2/DLC3/Items/MasterCore/matCoreCage2.mat"; public static string matCoreTesselation = "RoR2/DLC3/Items/MasterCore/matCoreTesselation.mat"; public static string matPowerOrbActive = "RoR2/DLC3/Items/MasterCore/matPowerOrb_Active.mat"; public static string matPowerOrbBeamCore7 = "RoR2/DLC3/Items/MasterCore/matPowerOrbBeamCore.mat"; public static string matDebtPickupPulse = "RoR2/DLC3/Items/MoneyLoan/matDebtPickupPulse.mat"; public static string matDebtPickupSmile = "RoR2/DLC3/Items/MoneyLoan/matDebtPickupSmile.mat"; public static string matDebtPickupTracer = "RoR2/DLC3/Items/MoneyLoan/matDebtPickupTracer.mat"; public static string matFriendUnit17 = "RoR2/DLC3/Items/PhysicsProjectile/matFriendUnit.mat"; public static string matFriendUnitEye6 = "RoR2/DLC3/Items/PhysicsProjectile/matFriendUnitEye.mat"; public static string matPhysicsProjectile = "RoR2/DLC3/Items/PhysicsProjectile/matPhysicsProjectile.mat"; public static string matPickupSharedSufferingChromAb = "RoR2/DLC3/Items/SharedSuffering/matPickupSharedSufferingChromAb.mat"; public static string matPickupSharedSufferingDistortion = "RoR2/DLC3/Items/SharedSuffering/matPickupSharedSufferingDistortion.mat"; public static string matSharedSufferingConnectionTether = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingConnectionTether.mat"; public static string matSharedSufferingConnectionTether2 = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingConnectionTether2.mat"; public static string matSharedSufferingGlitch = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingGlitch.mat"; public static string matSharedSufferingGlitchDistortion = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingGlitchDistortion.mat"; public static string matSharedSufferingGlitchDistortionopt = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingGlitchDistortion_opt.mat"; public static string matSharedSufferingOverlay = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingOverlay.mat"; public static string matSharedSufferingTechVisuals = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingTechVisuals.mat"; public static string matSharedSufferingVisuals1 = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingVisuals1.mat"; public static string matSharedSuffering = "RoR2/DLC3/Items/SharedSuffering/matSharedSuffering.mat"; public static string matSharedSufferingEmission = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingEmission.mat"; public static string matSharedSufferingEmission2 = "RoR2/DLC3/Items/SharedSuffering/matSharedSufferingEmission2.mat"; public static string matDisplayShieldBoosterShield = "RoR2/DLC3/Items/ShieldBooster/matDisplayShieldBoosterShield.mat"; public static string matDisplayShieldBoosterShieldVoid = "RoR2/DLC3/Items/ShieldBooster/matDisplayShieldBoosterShieldVoid.mat"; public static string matEMPPulse = "RoR2/DLC3/Items/ShieldBooster/matEMPPulse.mat"; public static string matEMPWave = "RoR2/DLC3/Items/ShieldBooster/matEMPWave.mat"; public static string matEMPWaveVoid = "RoR2/DLC3/Items/ShieldBooster/matEMPWaveVoid.mat"; public static string matEnergyShield2 = "RoR2/DLC3/Items/ShieldBooster/matEnergyShield2.mat"; public static string matEnergyShieldVoid2 = "RoR2/DLC3/Items/ShieldBooster/matEnergyShieldVoid2.mat"; public static string matShieldBoosterHandle = "RoR2/DLC3/Items/ShieldBooster/matShieldBoosterHandle.mat"; public static string matShieldShardsVoid = "RoR2/DLC3/Items/ShieldBooster/matShieldShardsVoid.mat"; public static string matShieldBooster = "RoR2/DLC3/Items/ShieldBooster/matShieldBooster.mat"; public static string matShieldBoosterVoid = "RoR2/DLC3/Items/ShieldBooster/matShieldBoosterVoid.mat"; public static string matDroneShockDamage = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamage.mat"; public static string matDroneShockDamageElectricity = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamageElectricity.mat"; public static string matDroneShockDamageElectricity02 = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamageElectricity02.mat"; public static string matDroneShockDamageElectricSphere = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamageElectricSphere.mat"; public static string matDroneShockDamageGlass = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamageGlass.mat"; public static string matDroneShockDamageGlowBurst = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamageGlowBurst.mat"; public static string matDroneShockDamageSparks = "RoR2/DLC3/Items/ShockDamageAura/matDroneShockDamageSparks.mat"; public static string matShockDamageAura = "RoR2/DLC3/Items/ShockDamageAura/matShockDamageAura.mat"; public static string matShockDamageAuraIndicator = "RoR2/DLC3/Items/ShockDamageAura/matShockDamageAuraIndicator.mat"; public static string matShockDamageAuraOrb = "RoR2/DLC3/Items/ShockDamageAura/matShockDamageAuraOrb.mat"; public static string matShockDamageAuraTracer = "RoR2/DLC3/Items/ShockDamageAura/matShockDamageAuraTracer.mat"; public static string matShockDamageAuraGlass = "RoR2/DLC3/Items/ShockDamageAura/matShockDamageAuraGlass.mat"; public static string matSalvage = "RoR2/DLC3/Items/SpeedOnPickup/matSalvage.mat"; public static string matSalvageOutline = "RoR2/DLC3/Items/SpeedOnPickup/matSalvageOutline.mat"; public static string matSalvageTrail = "RoR2/DLC3/Items/SpeedOnPickup/matSalvageTrail.mat"; public static string matSpeedOnPickupArrowTier1 = "RoR2/DLC3/Items/SpeedOnPickup/matSpeedOnPickupArrowTier1.mat"; public static string matSpeedOnPickup = "RoR2/DLC3/Items/SpeedOnPickup/matSpeedOnPickup.mat"; public static string matSpeedOnPickupStrapDecal = "RoR2/DLC3/Items/SpeedOnPickup/matSpeedOnPickupStrapDecal.mat"; public static string matStewPlastic = "RoR2/DLC3/Items/Stew/matStewPlastic.mat"; public static string matStew = "RoR2/DLC3/Items/Stew/matStew.mat"; public static string matTransferDebuffOnHitAura = "RoR2/DLC3/Items/TransferDebuffOnHit/matTransferDebuffOnHitAura.mat"; public static string matTransferDebuffOnHitRim = "RoR2/DLC3/Items/TransferDebuffOnHit/matTransferDebuffOnHitRim.mat"; public static string matTransferDebuffOverlay = "RoR2/DLC3/Items/TransferDebuffOnHit/matTransferDebuffOverlay.mat"; public static string matTransferDebuffVisuals1 = "RoR2/DLC3/Items/TransferDebuffOnHit/matTransferDebuffVisuals1.mat"; public static string matTransferDebuffOnHit = "RoR2/DLC3/Items/TransferDebuffOnHit/matTransferDebuffOnHit.mat"; public static string matUltimateMealBoost1 = "RoR2/DLC3/Items/UltimateMeal/matUltimateMealBoost1.mat"; public static string matUltimateMealInactive = "RoR2/DLC3/Items/UltimateMeal/matUltimateMealInactive.mat"; public static string matUltimateMeal = "RoR2/DLC3/Items/UltimateMeal/matUltimateMeal.mat"; public static string matUltimateMealCore = "RoR2/DLC3/Items/UltimateMeal/matUltimateMealCore.mat"; public static string matUltimateMealGleam = "RoR2/DLC3/Items/UltimateMeal/matUltimateMealGleam.mat"; public static string matUltimateMealTrail = "RoR2/DLC3/Items/UltimateMeal/matUltimateMealTrail.mat"; public static string matWyrmEye = "RoR2/DLC3/Items/WyrmOnHit/matWyrmEye.mat"; public static string matWyrmFire = "RoR2/DLC3/Items/WyrmOnHit/matWyrmFire.mat"; public static string matWyrmFire2 = "RoR2/DLC3/Items/WyrmOnHit/matWyrmFire2.mat"; public static string matWyrmOnHitDisplay = "RoR2/DLC3/Items/WyrmOnHit/matWyrmOnHitDisplay.mat"; public static string matWyrmProjectile1 = "RoR2/DLC3/Items/WyrmOnHit/matWyrmProjectile1.mat"; public static string matWyrmProjectile2 = "RoR2/DLC3/Items/WyrmOnHit/matWyrmProjectile2.mat"; public static string matWyrmProjectile3 = "RoR2/DLC3/Items/WyrmOnHit/matWyrmProjectile3.mat"; public static string matWyrmSkeleton = "RoR2/DLC3/Items/WyrmOnHit/matWyrmSkeleton.mat"; public static string matWyrmSolarFlares = "RoR2/DLC3/Items/WyrmOnHit/matWyrmSolarFlares.mat"; public static string matWyrmSummonFlash = "RoR2/DLC3/Items/WyrmOnHit/matWyrmSummonFlash.mat"; public static string matWyrmSummonRing = "RoR2/DLC3/Items/WyrmOnHit/matWyrmSummonRing.mat"; public static string matWyrmOnHitPickup = "RoR2/DLC3/Items/WyrmOnHit/matWyrmOnHitPickup.mat"; public static string matWyrmOnHitPickup2 = "RoR2/DLC3/Items/WyrmOnHit/matWyrmOnHitPickup2.mat"; public static string CEGlowVertexColors = "RoR2/DLC3/computationalexchange/CEGlow_VertexColors.mat"; public static string matCEAuroraDio = "RoR2/DLC3/computationalexchange/matCEAurora Dio.mat"; public static string matCEAurora = "RoR2/DLC3/computationalexchange/matCEAurora.mat"; public static string matCEAuroraSolusWeb = "RoR2/DLC3/computationalexchange/matCEAurora_SolusWeb.mat"; public static string matCECubeFresnel = "RoR2/DLC3/computationalexchange/matCECubeFresnel.mat"; public static string matCECubeFresnelopt = "RoR2/DLC3/computationalexchange/matCECubeFresnel_opt.mat"; public static string matCECubeGlow = "RoR2/DLC3/computationalexchange/matCECubeGlow.mat"; public static string matCECubeGlowExterior = "RoR2/DLC3/computationalexchange/matCECubeGlowExterior.mat"; public static string matCECubeGlowExterioropt = "RoR2/DLC3/computationalexchange/matCECubeGlowExterior_opt.mat"; public static string matCECubeGlowInterior = "RoR2/DLC3/computationalexchange/matCECubeGlowInterior.mat"; public static string matCECubeGlowInterioropt = "RoR2/DLC3/computationalexchange/matCECubeGlowInterior_opt.mat"; public static string matCEFloater = "RoR2/DLC3/computationalexchange/matCEFloater.mat"; public static string matCEFloateropt = "RoR2/DLC3/computationalexchange/matCEFloater_opt.mat"; public static string matCEFloaterGlow = "RoR2/DLC3/computationalexchange/matCEFloaterGlow.mat"; public static string matCEFlowerA = "RoR2/DLC3/computationalexchange/matCEFlowerA.mat"; public static string matCEFlowerAopt = "RoR2/DLC3/computationalexchange/matCEFlowerA_opt.mat"; public static string matCEFlowerGlow = "RoR2/DLC3/computationalexchange/matCEFlowerGlow.mat"; public static string matCEFlowerGlowopt = "RoR2/DLC3/computationalexchange/matCEFlowerGlow_opt.mat"; public static string matCEFlowerGlowBase = "RoR2/DLC3/computationalexchange/matCEFlowerGlowBase.mat"; public static string matCEFlowerGlowBaseopt = "RoR2/DLC3/computationalexchange/matCEFlowerGlowBase_opt.mat"; public static string matCEKickOutOfShop = "RoR2/DLC3/computationalexchange/matCEKickOutOfShop.mat"; public static string matCEKickOutOfShopopt = "RoR2/DLC3/computationalexchange/matCEKickOutOfShop_opt.mat"; public static string matCEParticleCube = "RoR2/DLC3/computationalexchange/matCEParticleCube.mat"; public static string matCEPixel = "RoR2/DLC3/computationalexchange/matCEPixel.mat"; public static string matCERiver = "RoR2/DLC3/computationalexchange/matCERiver.mat"; public static string matCERiveropt = "RoR2/DLC3/computationalexchange/matCERiver_opt.mat"; public static string matCERiverGlow = "RoR2/DLC3/computationalexchange/matCERiverGlow.mat"; public static string matCERiverGlowopt = "RoR2/DLC3/computationalexchange/matCERiverGlow_opt.mat"; public static string matCESkybox = "RoR2/DLC3/computationalexchange/matCESkybox.mat"; public static string matCESurfaceLight = "RoR2/DLC3/computationalexchange/matCESurfaceLight.mat"; public static string matCEVoxelCable = "RoR2/DLC3/computationalexchange/matCEVoxelCable.mat"; public static string matCEVoxelFX = "RoR2/DLC3/computationalexchange/matCEVoxelFX.mat"; public static string matCEVoxelGlow = "RoR2/DLC3/computationalexchange/matCEVoxelGlow.mat"; public static string matCEVoxelGlowBrighter = "RoR2/DLC3/computationalexchange/matCEVoxelGlow_Brighter.mat"; public static string matCEVoxelGlowIntersection1 = "RoR2/DLC3/computationalexchange/matCEVoxelGlow_Intersection 1.mat"; public static string matCEVoxelGlowIntersection = "RoR2/DLC3/computationalexchange/matCEVoxelGlow_Intersection.mat"; public static string matCEVoxelGlowopt = "RoR2/DLC3/computationalexchange/matCEVoxelGlow_opt.mat"; public static string matCEVoxelObject = "RoR2/DLC3/computationalexchange/matCEVoxelObject.mat"; public static string matCEVoxelObjectDark = "RoR2/DLC3/computationalexchange/matCEVoxelObject_Dark.mat"; public static string matCEVoxelObjectDarkParticleFX = "RoR2/DLC3/computationalexchange/matCEVoxelObject_Dark_ParticleFX.mat"; public static string matCEVoxelObjectopt = "RoR2/DLC3/computationalexchange/matCEVoxelObject_opt.mat"; public static string matCEVoxelPathDarker = "RoR2/DLC3/computationalexchange/matCEVoxelPath Darker.mat"; public static string matCEVoxelPath = "RoR2/DLC3/computationalexchange/matCEVoxelPath.mat"; public static string matCEVoxelPathopt = "RoR2/DLC3/computationalexchange/matCEVoxelPath_opt.mat"; public static string matCEVoxelSimple = "RoR2/DLC3/computationalexchange/matCEVoxelSimple.mat"; public static string matCEVoxelSimpleopt = "RoR2/DLC3/computationalexchange/matCEVoxelSimple_opt.mat"; public static string matCyberification = "RoR2/DLC3/computationalexchange/matCyberification.mat"; public static string matCyberificationDecal = "RoR2/DLC3/computationalexchange/matCyberificationDecal.mat"; public static string matCyberificationOutline = "RoR2/DLC3/computationalexchange/matCyberificationOutline.mat"; public static string matVendorWiresTEMP = "RoR2/DLC3/computationalexchange/matVendorWiresTEMP.mat"; public static string matCCBlack = "RoR2/DLC3/conduitcanyon/matCCBlack.mat"; public static string matCCBlackopt = "RoR2/DLC3/conduitcanyon/matCCBlack_opt.mat"; public static string matCCCables = "RoR2/DLC3/conduitcanyon/matCCCables.mat"; public static string matCCCablesopt = "RoR2/DLC3/conduitcanyon/matCCCables_opt.mat"; public static string matCCCablesRedEm = "RoR2/DLC3/conduitcanyon/matCCCablesRedEm.mat"; public static string matCCCablesRedEmopt = "RoR2/DLC3/conduitcanyon/matCCCablesRedEm_opt.mat"; public static string matCCCloudFloor = "RoR2/DLC3/conduitcanyon/matCCCloudFloor.mat"; public static string matCCCloudFloorCloseup = "RoR2/DLC3/conduitcanyon/matCCCloudFloorCloseup.mat"; public static string matCCCloudFloorDepth = "RoR2/DLC3/conduitcanyon/matCCCloudFloorDepth.mat"; public static string matCCCloudFloorDepthopt = "RoR2/DLC3/conduitcanyon/matCCCloudFloorDepth_opt.mat"; public static string matCCCloudFloorGreen = "RoR2/DLC3/conduitcanyon/matCCCloudFloorGreen.mat"; public static string matCCDebug = "RoR2/DLC3/conduitcanyon/matCCDebug.mat"; public static string matCCDebugopt = "RoR2/DLC3/conduitcanyon/matCCDebug_opt.mat"; public static string matCCDebugBlue = "RoR2/DLC3/conduitcanyon/matCCDebugBlue.mat"; public static string matCCDebugRed = "RoR2/DLC3/conduitcanyon/matCCDebugRed.mat"; public static string matCCDust = "RoR2/DLC3/conduitcanyon/matCCDust.mat"; public static string matCCEnergyCore = "RoR2/DLC3/conduitcanyon/matCCEnergyCore.mat"; public static string matCCEnergyCoreopt = "RoR2/DLC3/conduitcanyon/matCCEnergyCore_opt.mat"; public static string matCCEnergyGradient = "RoR2/DLC3/conduitcanyon/matCCEnergyGradient.mat"; public static string matCCEnergyGradientopt = "RoR2/DLC3/conduitcanyon/matCCEnergyGradient_opt.mat"; public static string matCCEnergyGradient2 = "RoR2/DLC3/conduitcanyon/matCCEnergyGradient2.mat"; public static string matCCEnergyGradient2opt = "RoR2/DLC3/conduitcanyon/matCCEnergyGradient2_opt.mat"; public static string matCCFoam = "RoR2/DLC3/conduitcanyon/matCCFoam.mat"; public static string matCCFoliageA = "RoR2/DLC3/conduitcanyon/matCCFoliageA.mat"; public static string matCCFoliageAglowOpt = "RoR2/DLC3/conduitcanyon/matCCFoliageA_glowOpt.mat"; public static string matCCFoliageAswitch = "RoR2/DLC3/conduitcanyon/matCCFoliageA_switch.mat"; public static string matCCFoliageGrass = "RoR2/DLC3/conduitcanyon/matCCFoliageGrass.mat"; public static string matCCFoliageGrassopt = "RoR2/DLC3/conduitcanyon/matCCFoliageGrass_opt.mat"; public static string matCCFoliageGrassOrange = "RoR2/DLC3/conduitcanyon/matCCFoliageGrassOrange.mat"; public static string matCCFoliageGrassOrangeopt = "RoR2/DLC3/conduitcanyon/matCCFoliageGrassOrange_opt.mat"; public static string matCCFoliageSmallLeaf = "RoR2/DLC3/conduitcanyon/matCCFoliageSmallLeaf.mat"; public static string matCCFoliageSmallLeafopt = "RoR2/DLC3/conduitcanyon/matCCFoliageSmallLeaf_opt.mat"; public static string matCCFoliageTree = "RoR2/DLC3/conduitcanyon/matCCFoliageTree.mat"; public static string matCCFoliageTreeopt = "RoR2/DLC3/conduitcanyon/matCCFoliageTree_opt.mat"; public static string matCCFoliageVines = "RoR2/DLC3/conduitcanyon/matCCFoliageVines.mat"; public static string matCCImpostorA = "RoR2/DLC3/conduitcanyon/matCCImpostorA.mat"; public static string matCCImpostorAopt = "RoR2/DLC3/conduitcanyon/matCCImpostorA_opt.mat"; public static string matCCLightRay = "RoR2/DLC3/conduitcanyon/matCCLightRay.mat"; public static string matCCMetal = "RoR2/DLC3/conduitcanyon/matCCMetal.mat"; public static string matCCMetalopt = "RoR2/DLC3/conduitcanyon/matCCMetal_opt.mat"; public static string matCCMetalColorStrip = "RoR2/DLC3/conduitcanyon/matCCMetalColorStrip.mat"; public static string matCCMetalColorStripopt = "RoR2/DLC3/conduitcanyon/matCCMetalColorStrip_opt.mat"; public static string matCCMetalColorStripDiorama = "RoR2/DLC3/conduitcanyon/matCCMetalColorStripDiorama.mat"; public static string matCCMetalDiorama = "RoR2/DLC3/conduitcanyon/matCCMetalDiorama.mat"; public static string matCCMetalEm = "RoR2/DLC3/conduitcanyon/matCCMetalEm.mat"; public static string matCCMetalEmopt = "RoR2/DLC3/conduitcanyon/matCCMetalEm_opt.mat"; public static string matCCPipeDarkness = "RoR2/DLC3/conduitcanyon/matCCPipeDarkness.mat"; public static string matCCRocks = "RoR2/DLC3/conduitcanyon/matCCRocks.mat"; public static string matCCRocksopt = "RoR2/DLC3/conduitcanyon/matCCRocks_opt.mat"; public static string matCCskybox = "RoR2/DLC3/conduitcanyon/matCCskybox.mat"; public static string matCCSplash = "RoR2/DLC3/conduitcanyon/matCCSplash.mat"; public static string matCCTerrain = "RoR2/DLC3/conduitcanyon/matCCTerrain.mat"; public static string matCCTerrainDiorama = "RoR2/DLC3/conduitcanyon/matCCTerrain_Diorama.mat"; public static string matCCTerrainopt = "RoR2/DLC3/conduitcanyon/matCCTerrain_opt.mat"; public static string matCCTerrainREDROCK = "RoR2/DLC3/conduitcanyon/matCCTerrain_REDROCK.mat"; public static string matCCTerrainREDROCKbak = "RoR2/DLC3/conduitcanyon/matCCTerrain_REDROCK_bak.mat"; public static string matCCTerrainREDROCKDiorama = "RoR2/DLC3/conduitcanyon/matCCTerrain_REDROCK_Diorama.mat"; public static string matCCTerrainREDROCKopt = "RoR2/DLC3/conduitcanyon/matCCTerrain_REDROCK_opt.mat"; public static string matCCTerrainOOBCanyon = "RoR2/DLC3/conduitcanyon/matCCTerrainOOBCanyon.mat"; public static string matCCTerrainOOBCanyonopt = "RoR2/DLC3/conduitcanyon/matCCTerrainOOBCanyon_opt.mat"; public static string matCCTree = "RoR2/DLC3/conduitcanyon/matCCTree.mat"; public static string matCCTreeopt = "RoR2/DLC3/conduitcanyon/matCCTree_opt.mat"; public static string matCCTreeArmBright = "RoR2/DLC3/conduitcanyon/matCCTreeArmBright.mat"; public static string matCCTreeArmBrightopt = "RoR2/DLC3/conduitcanyon/matCCTreeArmBright_opt.mat"; public static string matCCTreeArmDark = "RoR2/DLC3/conduitcanyon/matCCTreeArmDark.mat"; public static string matCCTreeArmDarkopt = "RoR2/DLC3/conduitcanyon/matCCTreeArmDark_opt.mat"; public static string matCCTreeArmMid = "RoR2/DLC3/conduitcanyon/matCCTreeArmMid.mat"; public static string matCCTreeArmMidopt = "RoR2/DLC3/conduitcanyon/matCCTreeArmMid_opt.mat"; public static string matCCTreeDark = "RoR2/DLC3/conduitcanyon/matCCTreeDark.mat"; public static string matCCTreeDarkopt = "RoR2/DLC3/conduitcanyon/matCCTreeDark_opt.mat"; public static string matCCTreeGlowDark = "RoR2/DLC3/conduitcanyon/matCCTreeGlowDark.mat"; public static string matCCTreeGlowDarkopt = "RoR2/DLC3/conduitcanyon/matCCTreeGlowDark_opt.mat"; public static string matCCTreeGlowHigh = "RoR2/DLC3/conduitcanyon/matCCTreeGlowHigh.mat"; public static string matCCTreeGlowHighopt = "RoR2/DLC3/conduitcanyon/matCCTreeGlowHigh_opt.mat"; public static string matCCTreeGlowLow = "RoR2/DLC3/conduitcanyon/matCCTreeGlowLow.mat"; public static string matCCTreeGlowLowopt = "RoR2/DLC3/conduitcanyon/matCCTreeGlowLow_opt.mat"; public static string matCCWater = "RoR2/DLC3/conduitcanyon/matCCWater.mat"; public static string matCCWateropt = "RoR2/DLC3/conduitcanyon/matCCWater_opt.mat"; public static string matCCWaterdroplets = "RoR2/DLC3/conduitcanyon/matCCWaterdroplets.mat"; public static string matCCWaterfallA = "RoR2/DLC3/conduitcanyon/matCCWaterfallA.mat"; public static string matCCWaterfallAopt = "RoR2/DLC3/conduitcanyon/matCCWaterfallA_opt.mat"; public static string matCCWaterGlow = "RoR2/DLC3/conduitcanyon/matCCWaterGlow.mat"; public static string matCCWindCloud = "RoR2/DLC3/conduitcanyon/matCCWindCloud.mat"; public static string matEscapePodCCRust = "RoR2/DLC3/conduitcanyon/matEscapePodCCRust.mat"; public static string matConduitPowerCoil = "RoR2/DLC3/conduitcanyon/matConduitPowerCoil.mat"; public static string matTeleporterConduitCurrent = "RoR2/DLC3/conduitcanyon/matTeleporterConduitCurrent.mat"; public static string matTeleporterConduitElectricity = "RoR2/DLC3/conduitcanyon/matTeleporterConduitElectricity.mat"; public static string matTeleporterConduitPlane = "RoR2/DLC3/conduitcanyon/matTeleporterConduitPlane.mat"; public static string matTeleporterConduitSpark = "RoR2/DLC3/conduitcanyon/matTeleporterConduitSpark.mat"; public static string matTeleporterConduitTracer = "RoR2/DLC3/conduitcanyon/matTeleporterConduitTracer.mat"; public static string matTeleporterConduitVariantOverlay = "RoR2/DLC3/conduitcanyon/matTeleporterConduitVariantOverlay.mat"; public static string matTeleporterIcosphere = "RoR2/DLC3/conduitcanyon/matTeleporterIcosphere.mat"; public static string matTeleporterIcosphereAdditive = "RoR2/DLC3/conduitcanyon/matTeleporterIcosphereAdditive.mat"; public static string matTeleporterIcosphereBlack = "RoR2/DLC3/conduitcanyon/matTeleporterIcosphereBlack.mat"; public static string matTeleporterIcosphereDepleted = "RoR2/DLC3/conduitcanyon/matTeleporterIcosphereDepleted.mat"; public static string matTeleporterIcosphereInactive = "RoR2/DLC3/conduitcanyon/matTeleporterIcosphereInactive.mat"; public static string matTeleporterIcosphereMegaGlow = "RoR2/DLC3/conduitcanyon/matTeleporterIcosphereMegaGlow.mat"; public static string matTeslaTeleporterRangeIndicator = "RoR2/DLC3/conduitcanyon/matTeslaTeleporterRangeIndicator.mat"; public static string matTPConduitBeam1 = "RoR2/DLC3/conduitcanyon/matTPConduitBeam 1.mat"; public static string matTPConduitBeamBackdrop = "RoR2/DLC3/conduitcanyon/matTPConduitBeamBackdrop.mat"; public static string matTPConduitShockwave = "RoR2/DLC3/conduitcanyon/matTPConduitShockwave.mat"; public static string matBazaarSeerConduitCanyon = "RoR2/DLC3/conduitcanyon/matBazaarSeerConduitCanyon.mat"; public static string matIACacti = "RoR2/DLC3/ironalluvium/matIACacti.mat"; public static string matIACactiopt = "RoR2/DLC3/ironalluvium/matIACacti_opt.mat"; public static string matIACameraDustBig = "RoR2/DLC3/ironalluvium/matIACameraDustBig.mat"; public static string matIADrillMachine = "RoR2/DLC3/ironalluvium/matIADrillMachine.mat"; public static string matIADrillMachineopt = "RoR2/DLC3/ironalluvium/matIADrillMachine_opt.mat"; public static string matIADrillMachineDiorama = "RoR2/DLC3/ironalluvium/matIADrillMachineDiorama.mat"; public static string matIADrillMachineLowEm = "RoR2/DLC3/ironalluvium/matIADrillMachineLowEm.mat"; public static string matIADrillMachineLowEmopt = "RoR2/DLC3/ironalluvium/matIADrillMachineLowEm_opt.mat"; public static string matIAFogFloor = "RoR2/DLC3/ironalluvium/matIAFogFloor.mat"; public static string matIAGrasses = "RoR2/DLC3/ironalluvium/matIAGrasses.mat"; public static string matIAGrassesopt = "RoR2/DLC3/ironalluvium/matIAGrasses_opt.mat"; public static string matIAHexMetalPlate = "RoR2/DLC3/ironalluvium/matIAHexMetalPlate.mat"; public static string matIAHexMetalPlateopt = "RoR2/DLC3/ironalluvium/matIAHexMetalPlate_opt.mat"; public static string matIAHexMetalPlateDark = "RoR2/DLC3/ironalluvium/matIAHexMetalPlateDark.mat"; public static string matIAHexMetalPlateDarkopt = "RoR2/DLC3/ironalluvium/matIAHexMetalPlateDark_opt.mat"; public static string matIAIron = "RoR2/DLC3/ironalluvium/matIAIron.mat"; public static string matIAIronopt = "RoR2/DLC3/ironalluvium/matIAIron_opt.mat"; public static string matIAIronOre = "RoR2/DLC3/ironalluvium/matIAIronOre.mat"; public static string matIAIronOreopt = "RoR2/DLC3/ironalluvium/matIAIronOre_opt.mat"; public static string matIALightGlassBlue = "RoR2/DLC3/ironalluvium/matIALightGlassBlue.mat"; public static string matIALightGlassBlueopt = "RoR2/DLC3/ironalluvium/matIALightGlassBlue_opt.mat"; public static string matIALightGlassOff = "RoR2/DLC3/ironalluvium/matIALightGlassOff.mat"; public static string matIALightGlassOffopt = "RoR2/DLC3/ironalluvium/matIALightGlassOff_opt.mat"; public static string matIALightGlassRed = "RoR2/DLC3/ironalluvium/matIALightGlassRed.mat"; public static string matIALightGlassRedopt = "RoR2/DLC3/ironalluvium/matIALightGlassRed_opt.mat"; public static string matIAPipes = "RoR2/DLC3/ironalluvium/matIAPipes.mat"; public static string matIAPipesopt = "RoR2/DLC3/ironalluvium/matIAPipes_opt.mat"; public static string matIAProps = "RoR2/DLC3/ironalluvium/matIAProps.mat"; public static string matIAPropsopt = "RoR2/DLC3/ironalluvium/matIAProps_opt.mat"; public static string matIARock = "RoR2/DLC3/ironalluvium/matIARock.mat"; public static string matIARockopt = "RoR2/DLC3/ironalluvium/matIARock_opt.mat"; public static string matIASkybox = "RoR2/DLC3/ironalluvium/matIASkybox.mat"; public static string matIASmelterFire = "RoR2/DLC3/ironalluvium/matIASmelterFire.mat"; public static string matIASmelterFireopt = "RoR2/DLC3/ironalluvium/matIASmelterFire_opt.mat"; public static string matIASurfaceLight = "RoR2/DLC3/ironalluvium/matIASurfaceLight.mat"; public static string matIASurfaceLight2 = "RoR2/DLC3/ironalluvium/matIASurfaceLight2.mat"; public static string matIASurfaceLightDio = "RoR2/DLC3/ironalluvium/matIASurfaceLightDio.mat"; public static string matIATerrain = "RoR2/DLC3/ironalluvium/matIATerrain.mat"; public static string matIATerrainSW = "RoR2/DLC3/ironalluvium/matIATerrain_SW.mat"; public static string matIATerrainDiorama = "RoR2/DLC3/ironalluvium/matIATerrainDiorama.mat"; public static string matIATerrainMarks = "RoR2/DLC3/ironalluvium/matIATerrainMarks.mat"; public static string matTrimSheetMossyRuinsIADio = "RoR2/DLC3/ironalluvium/matTrimSheetMossyRuinsIADio.mat"; public static string matBazaarSeerIronAlluvium = "RoR2/DLC3/ironalluvium/matBazaarSeerIronAlluvium.mat"; public static string matIA2AurelioniteFragment = "RoR2/DLC3/ironalluvium2/matIA2AurelioniteFragment.mat"; public static string matIA2AurelioniteFragmentOpt = "RoR2/DLC3/ironalluvium2/matIA2AurelioniteFragment_Opt.mat"; public static string matIA2AurelioniteGeode = "RoR2/DLC3/ironalluvium2/matIA2AurelioniteGeode.mat"; public static string matIA2AurelioniteGeodeOpt = "RoR2/DLC3/ironalluvium2/matIA2AurelioniteGeode_Opt.mat"; public static string matIA2Aurora = "RoR2/DLC3/ironalluvium2/matIA2Aurora.mat"; public static string matIA2FogFloor = "RoR2/DLC3/ironalluvium2/matIA2FogFloor.mat"; public static string matIA2Grasses = "RoR2/DLC3/ironalluvium2/matIA2Grasses.mat"; public static string matIA2GrassesOpt = "RoR2/DLC3/ironalluvium2/matIA2Grasses_Opt.mat"; public static string matIA2LightGlassPurple = "RoR2/DLC3/ironalluvium2/matIA2LightGlassPurple.mat"; public static string matIA2LightGlassPurpleOpt = "RoR2/DLC3/ironalluvium2/matIA2LightGlassPurple_Opt.mat"; public static string matIA2Plants = "RoR2/DLC3/ironalluvium2/matIA2Plants.mat"; public static string matIA2PlantsOpt = "RoR2/DLC3/ironalluvium2/matIA2Plants_Opt.mat"; public static string matIA2Skybox = "RoR2/DLC3/ironalluvium2/matIA2Skybox.mat"; public static string matIA2SurfaceLight2 = "RoR2/DLC3/ironalluvium2/matIA2SurfaceLight2.mat"; public static string matIA2Terrain = "RoR2/DLC3/ironalluvium2/matIA2Terrain.mat"; public static string matIA2TerrainDiorama = "RoR2/DLC3/ironalluvium2/matIA2TerrainDiorama.mat"; public static string matIA2TerrainMarks = "RoR2/DLC3/ironalluvium2/matIA2TerrainMarks.mat"; public static string matIADrillMachineEmPurple = "RoR2/DLC3/ironalluvium2/matIADrillMachineEmPurple.mat"; public static string matIADrillMachineEmPurpleOpt = "RoR2/DLC3/ironalluvium2/matIADrillMachineEmPurple_Opt.mat"; public static string matSkyboxIA2 = "RoR2/DLC3/ironalluvium2/matSkyboxIA2.mat"; public static string matBazaarSeerIronAlluvium2 = "RoR2/DLC3/ironalluvium2/matBazaarSeerIronAlluvium2.mat"; public static string NestBranch = "RoR2/DLC3/nest/Nest_Branch.mat"; public static string NestBranchopt = "RoR2/DLC3/nest/Nest_Branch_opt.mat"; public static string NestFoliage01LOD0 = "RoR2/DLC3/nest/Nest_Foliage01_LOD0.mat"; public static string NestFoliage01LOD0opt = "RoR2/DLC3/nest/Nest_Foliage01_LOD0_opt.mat"; public static string NestFoliage02LOD0 = "RoR2/DLC3/nest/Nest_Foliage02_LOD0.mat"; public static string NestFoliage02LOD0opt = "RoR2/DLC3/nest/Nest_Foliage02_LOD0_opt.mat"; public static string NestFoliage03LOD0 = "RoR2/DLC3/nest/Nest_Foliage03_LOD0.mat"; public static string NestFoliage03LOD0opt = "RoR2/DLC3/nest/Nest_Foliage03_LOD0_opt.mat"; public static string NestFoliage04LOD0 = "RoR2/DLC3/nest/Nest_Foliage04_LOD0.mat"; public static string NestFoliage04LOD0opt = "RoR2/DLC3/nest/Nest_Foliage04_LOD0_opt.mat"; public static string NestFoliage05LOD0 = "RoR2/DLC3/nest/Nest_Foliage05_LOD0.mat"; public static string NestFoliage05LOD0opt = "RoR2/DLC3/nest/Nest_Foliage05_LOD0_opt.mat"; public static string NestFoliage06LOD0 = "RoR2/DLC3/nest/Nest_Foliage06_LOD0.mat"; public static string NestFoliage06LOD0opt = "RoR2/DLC3/nest/Nest_Foliage06_LOD0_opt.mat"; public static string NestRoot = "RoR2/DLC3/nest/Nest_Root.mat"; public static string Nestvine01LOD0 = "RoR2/DLC3/nest/Nest_vine01_LOD0.mat"; public static string Nestvine01LOD0opt = "RoR2/DLC3/nest/Nest_vine01_LOD0_opt.mat"; public static string matMegaConstructEye27 = "RoR2/DLC3/nest/matMegaConstructEye.mat"; public static string matMegaConstructEyeopt = "RoR2/DLC3/nest/matMegaConstructEye_opt.mat"; public static string matNestWindCloud = "RoR2/DLC3/nest/matNestWindCloud.mat"; public static string matPPCables = "RoR2/DLC3/nest/matPPCables.mat"; public static string matPPCablesopt = "RoR2/DLC3/nest/matPPCables_opt.mat"; public static string matPPCablesEmissive = "RoR2/DLC3/nest/matPPCablesEmissive.mat"; public static string matPPCablesEmissiveopt = "RoR2/DLC3/nest/matPPCablesEmissive_opt.mat"; public static string matPPCliff = "RoR2/DLC3/nest/matPPCliff.mat"; public static string matPPCliffTonedDown = "RoR2/DLC3/nest/matPPCliff_TonedDown.mat"; public static string matPPCliffvariantLow = "RoR2/DLC3/nest/matPPCliff_variantLow.mat"; public static string matPPCloudShadow = "RoR2/DLC3/nest/matPPCloudShadow.mat"; public static string matPPDefectiveUnit = "RoR2/DLC3/nest/matPPDefectiveUnit.mat"; public static string matPPDefectiveUnitopt = "RoR2/DLC3/nest/matPPDefectiveUnit_opt.mat"; public static string matPPFeather = "RoR2/DLC3/nest/matPPFeather.mat"; public static string matPPFogDeep = "RoR2/DLC3/nest/matPPFogDeep.mat"; public static string matPPShipDebris = "RoR2/DLC3/nest/matPPShipDebris.mat"; public static string matPPShipDebrisopt = "RoR2/DLC3/nest/matPPShipDebris_opt.mat"; public static string matPPShipDebrisSnow = "RoR2/DLC3/nest/matPPShipDebrisSnow.mat"; public static string matPPShipDebrisSnowopt = "RoR2/DLC3/nest/matPPShipDebrisSnow_opt.mat"; public static string matPPSkybox = "RoR2/DLC3/nest/matPPSkybox.mat"; public static string matPPSnow = "RoR2/DLC3/nest/matPPSnow.mat"; public static string matPPSnowopt = "RoR2/DLC3/nest/matPPSnow_opt.mat"; public static string matPPSnowball = "RoR2/DLC3/nest/matPPSnowball.mat"; public static string matPPSolusCore = "RoR2/DLC3/nest/matPPSolusCore.mat"; public static string matPPSolusCoredark = "RoR2/DLC3/nest/matPPSolusCore_dark.mat"; public static string matPPSolusCoredarkopt = "RoR2/DLC3/nest/matPPSolusCore_dark_opt.mat"; public static string matPPSolusCoreopt = "RoR2/DLC3/nest/matPPSolusCore_opt.mat"; public static string matPPSolusSpheres = "RoR2/DLC3/nest/matPPSolusSpheres.mat"; public static string matPPSolusSpheresopt = "RoR2/DLC3/nest/matPPSolusSpheres_opt.mat"; public static string matPPSolusSpheresPanels = "RoR2/DLC3/nest/matPPSolusSpheresPanels.mat"; public static string matPPSolusSpheresPanelsopt = "RoR2/DLC3/nest/matPPSolusSpheresPanels_opt.mat"; public static string matPPTerrain = "RoR2/DLC3/nest/matPPTerrain.mat"; public static string matPPTerrainIce = "RoR2/DLC3/nest/matPPTerrainIce.mat"; public static string matPPTree = "RoR2/DLC3/nest/matPPTree.mat"; public static string matPPTreeopt = "RoR2/DLC3/nest/matPPTree_opt.mat"; public static string matPPTreeSnow = "RoR2/DLC3/nest/matPPTreeSnow.mat"; public static string matPPWater = "RoR2/DLC3/nest/matPPWater.mat"; public static string matPPWateroptimized = "RoR2/DLC3/nest/matPPWater_optimized.mat"; public static string matRescueshipBrokenWinter = "RoR2/DLC3/nest/matRescueshipBrokenWinter.mat"; public static string matRescueshipBrokenWinteropt = "RoR2/DLC3/nest/matRescueshipBrokenWinter_opt.mat"; public static string matRescueshipImpactDecalLargeWinter = "RoR2/DLC3/nest/matRescueshipImpactDecalLargeWinter.mat"; public static string matRescueshipImpactDecalSmallWinter = "RoR2/DLC3/nest/matRescueshipImpactDecalSmallWinter.mat"; public static string matBazaarSeerNest = "RoR2/DLC3/nest/matBazaarSeerNest.mat"; public static string matRCAloePlant = "RoR2/DLC3/repurposedcrater/matRCAloePlant.mat"; public static string matRCAloePlantopt = "RoR2/DLC3/repurposedcrater/matRCAloePlant_opt.mat"; public static string matRCArrayDish = "RoR2/DLC3/repurposedcrater/matRCArrayDish.mat"; public static string matRCArrayDishopt = "RoR2/DLC3/repurposedcrater/matRCArrayDish_opt.mat"; public static string matRCCables = "RoR2/DLC3/repurposedcrater/matRCCables.mat"; public static string matRCCablesopt = "RoR2/DLC3/repurposedcrater/matRCCables_opt.mat"; public static string matRCConcreteMain = "RoR2/DLC3/repurposedcrater/matRCConcreteMain.mat"; public static string matRCConcreteMainOpt = "RoR2/DLC3/repurposedcrater/matRCConcreteMain_Opt.mat"; public static string matRCConcreteMainFloors = "RoR2/DLC3/repurposedcrater/matRCConcreteMainFloors.mat"; public static string matRCConcreteMainFloorsopt = "RoR2/DLC3/repurposedcrater/matRCConcreteMainFloors_opt.mat"; public static string matRCConcreteMainMoss = "RoR2/DLC3/repurposedcrater/matRCConcreteMainMoss.mat"; public static string matRCConcreteMainMossopt = "RoR2/DLC3/repurposedcrater/matRCConcreteMainMoss_opt.mat"; public static string matRCEnvSunGlare = "RoR2/DLC3/repurposedcrater/matRCEnvSunGlare.mat"; public static string matRCEnvSunGlareopt = "RoR2/DLC3/repurposedcrater/matRCEnvSunGlare_opt.mat"; public static string matRCFoliage = "RoR2/DLC3/repurposedcrater/matRCFoliage.mat"; public static string matRCFoliageopt = "RoR2/DLC3/repurposedcrater/matRCFoliage_opt.mat"; public static string matRCFoliageGold = "RoR2/DLC3/repurposedcrater/matRCFoliageGold.mat"; public static string matRCGlowFlower = "RoR2/DLC3/repurposedcrater/matRCGlowFlower.mat"; public static string matRCGlowFloweropt = "RoR2/DLC3/repurposedcrater/matRCGlowFlower_opt.mat"; public static string matRCGrate = "RoR2/DLC3/repurposedcrater/matRCGrate.mat"; public static string matRCGrateopt = "RoR2/DLC3/repurposedcrater/matRCGrate_opt.mat"; public static string matRCLargeDoor = "RoR2/DLC3/repurposedcrater/matRCLargeDoor.mat"; public static string matRCLargeDooropt = "RoR2/DLC3/repurposedcrater/matRCLargeDoor_opt.mat"; public static string matRCLiftTube = "RoR2/DLC3/repurposedcrater/matRCLiftTube.mat"; public static string matRCLiftTubedoublesided = "RoR2/DLC3/repurposedcrater/matRCLiftTube_doublesided.mat"; public static string matRCLiftTubeopt = "RoR2/DLC3/repurposedcrater/matRCLiftTube_opt.mat"; public static string matRCLiftVFX = "RoR2/DLC3/repurposedcrater/matRCLiftVFX.mat"; public static string matRCLiftVFXopt = "RoR2/DLC3/repurposedcrater/matRCLiftVFX_opt.mat"; public static string matRCMetal01 = "RoR2/DLC3/repurposedcrater/matRCMetal01.mat"; public static string matRCMetal01opt = "RoR2/DLC3/repurposedcrater/matRCMetal01_opt.mat"; public static string matRCMetal01D = "RoR2/DLC3/repurposedcrater/matRCMetal01D.mat"; public static string matRCMetal01Dopt = "RoR2/DLC3/repurposedcrater/matRCMetal01D_opt.mat"; public static string matRCMetalTrim01 = "RoR2/DLC3/repurposedcrater/matRCMetalTrim01.mat"; public static string matRCMetalTrim01opt = "RoR2/DLC3/repurposedcrater/matRCMetalTrim01_opt.mat"; public static string matRCMetalTrim01a = "RoR2/DLC3/repurposedcrater/matRCMetalTrim01a.mat"; public static string matRCMetalTrim01aopt = "RoR2/DLC3/repurposedcrater/matRCMetalTrim01a_opt.mat"; public static string matRCMetalTrim02 = "RoR2/DLC3/repurposedcrater/matRCMetalTrim02.mat"; public static string matRCMetalTrim02opt = "RoR2/DLC3/repurposedcrater/matRCMetalTrim02_opt.mat"; public static string matRCMetalTrim03 = "RoR2/DLC3/repurposedcrater/matRCMetalTrim03.mat"; public static string matRCMetalTrim03opt = "RoR2/DLC3/repurposedcrater/matRCMetalTrim03_opt.mat"; public static string matRCPalmTreeBase = "RoR2/DLC3/repurposedcrater/matRCPalmTreeBase.mat"; public static string matRCPalmTreeBaseopt = "RoR2/DLC3/repurposedcrater/matRCPalmTreeBase_opt.mat"; public static string matRCPalmTreeLeaves01 = "RoR2/DLC3/repurposedcrater/matRCPalmTreeLeaves01.mat"; public static string matRCPalmTreeLeavesGold01 = "RoR2/DLC3/repurposedcrater/matRCPalmTreeLeavesGold01.mat"; public static string matRCPebble = "RoR2/DLC3/repurposedcrater/matRCPebble.mat"; public static string matRCPebbleopt = "RoR2/DLC3/repurposedcrater/matRCPebble_opt.mat"; public static string matRCPipes01 = "RoR2/DLC3/repurposedcrater/matRCPipes01.mat"; public static string matRCPipes01opt = "RoR2/DLC3/repurposedcrater/matRCPipes01_opt.mat"; public static string matRCPipes02 = "RoR2/DLC3/repurposedcrater/matRCPipes02.mat"; public static string matRCPipes02opt = "RoR2/DLC3/repurposedcrater/matRCPipes02_opt.mat"; public static string matRCPipes03 = "RoR2/DLC3/repurposedcrater/matRCPipes03.mat"; public static string matRCPipes03opt = "RoR2/DLC3/repurposedcrater/matRCPipes03_opt.mat"; public static string matRCPit = "RoR2/DLC3/repurposedcrater/matRCPit.mat"; public static string matRCPlanter01 = "RoR2/DLC3/repurposedcrater/matRCPlanter01.mat"; public static string matRCPlanter01opt = "RoR2/DLC3/repurposedcrater/matRCPlanter01_opt.mat"; public static string matRCPlatformAoEIndicator = "RoR2/DLC3/repurposedcrater/matRCPlatformAoEIndicator.mat"; public static string matRCPotTube = "RoR2/DLC3/repurposedcrater/matRCPotTube.mat"; public static string matRCPotTubeopt = "RoR2/DLC3/repurposedcrater/matRCPotTube_opt.mat"; public static string matRCPressureGage = "RoR2/DLC3/repurposedcrater/matRCPressureGage.mat"; public static string matRCPressureGageopt = "RoR2/DLC3/repurposedcrater/matRCPressureGage_opt.mat"; public static string matRCPylonGlassOn = "RoR2/DLC3/repurposedcrater/matRCPylonGlassOn.mat"; public static string matRCPylonGlassOnopt = "RoR2/DLC3/repurposedcrater/matRCPylonGlassOn_opt.mat"; public static string matRCSkybox01 = "RoR2/DLC3/repurposedcrater/matRCSkybox01.mat"; public static string matRCSun = "RoR2/DLC3/repurposedcrater/matRCSun.mat"; public static string matRCTerraces = "RoR2/DLC3/repurposedcrater/matRCTerraces.mat"; public static string matRCTerraceWaterfalls = "RoR2/DLC3/repurposedcrater/matRCTerraceWaterfalls.mat"; public static string matRCTerrainTriplanar = "RoR2/DLC3/repurposedcrater/matRCTerrainTriplanar.mat"; public static string matRCTerrainTriplanar02 = "RoR2/DLC3/repurposedcrater/matRCTerrainTriplanar02.mat"; public static string matRCTerrainTriplanar03 = "RoR2/DLC3/repurposedcrater/matRCTerrainTriplanar03.mat"; public static string matRCTerrainTriplanarDioRing = "RoR2/DLC3/repurposedcrater/matRCTerrainTriplanarDioRing.mat"; public static string matRCTerrariumGlass = "RoR2/DLC3/repurposedcrater/matRCTerrariumGlass.mat"; public static string matRCTerrariumGlassopt = "RoR2/DLC3/repurposedcrater/matRCTerrariumGlass_opt.mat"; public static string matRCTileableHex = "RoR2/DLC3/repurposedcrater/matRCTileableHex.mat"; public static string matRCVerticalLiftDecal = "RoR2/DLC3/repurposedcrater/matRCVerticalLiftDecal.mat"; public static string matRCWaterfall = "RoR2/DLC3/repurposedcrater/matRCWaterfall.mat"; public static string matRCWaterfall01 = "RoR2/DLC3/repurposedcrater/matRCWaterfall01.mat"; public static string matRCWaterfall02 = "RoR2/DLC3/repurposedcrater/matRCWaterfall02.mat"; public static string matRCWaterfall03 = "RoR2/DLC3/repurposedcrater/matRCWaterfall03.mat"; public static string matRCWaterfallArray = "RoR2/DLC3/repurposedcrater/matRCWaterfallArray.mat"; public static string matRCWaterfallDam = "RoR2/DLC3/repurposedcrater/matRCWaterfallDam.mat"; public static string matRCWaterfallTubes = "RoR2/DLC3/repurposedcrater/matRCWaterfallTubes.mat"; public static string matRCWaterStill = "RoR2/DLC3/repurposedcrater/matRCWaterStill.mat"; public static string matRCWaterStill02 = "RoR2/DLC3/repurposedcrater/matRCWaterStill02.mat"; public static string matBazaarSeerRepurposedCrater = "RoR2/DLC3/repurposedcrater/matBazaarSeerRepurposedCrater.mat"; public static string matBazaarSeerNest23 = "RoR2/DLC3/solusweb/matBazaarSeerNest.mat"; public static string matCellTrail = "RoR2/DLC3/solusweb/matCellTrail.mat"; public static string matCyberDecal = "RoR2/DLC3/solusweb/matCyberDecal.mat"; public static string matGlitch = "RoR2/DLC3/solusweb/matGlitch.mat"; public static string matHeartPulse = "RoR2/DLC3/solusweb/matHeartPulse.mat"; public static string matHeartSpherePulse = "RoR2/DLC3/solusweb/matHeartSpherePulse.mat"; public static string matHRLavaopt1 = "RoR2/DLC3/solusweb/matHRLava_opt 1.mat"; public static string matHRLavaopt2 = "RoR2/DLC3/solusweb/matHRLava_opt 2.mat"; public static string matHRLavaoptaclip = "RoR2/DLC3/solusweb/matHRLava_opt_aclip.mat"; public static string matLavaStartAdditive = "RoR2/DLC3/solusweb/matLavaStartAdditive.mat"; public static string matSolusWebSkybox = "RoR2/DLC3/solusweb/matSolusWebSkybox.mat"; public static string matSolusWebSkyboxSphere = "RoR2/DLC3/solusweb/matSolusWebSkyboxSphere.mat"; public static string matSolusWebSkyboxSphereAdditive = "RoR2/DLC3/solusweb/matSolusWebSkyboxSphereAdditive.mat"; public static string matSolusWebSkyboxSphereGlare = "RoR2/DLC3/solusweb/matSolusWebSkyboxSphereGlare.mat"; public static string matSolusWebWires = "RoR2/DLC3/solusweb/matSolusWebWires.mat"; public static string matSWDioramaLava = "RoR2/DLC3/solusweb/matSW_DioramaLava.mat"; public static string matSWDioramaLava2 = "RoR2/DLC3/solusweb/matSW_DioramaLava2.mat"; public static string matSWebClouds = "RoR2/DLC3/solusweb/matSWebClouds.mat"; public static string matSWebDistance1 = "RoR2/DLC3/solusweb/matSWebDistance 1.mat"; public static string matSWebDistance = "RoR2/DLC3/solusweb/matSWebDistance.mat"; public static string matSWebFogCardDark = "RoR2/DLC3/solusweb/matSWebFogCard_Dark.mat"; public static string matSWebLava = "RoR2/DLC3/solusweb/matSWebLava.mat"; public static string matSWebLavaOverlay = "RoR2/DLC3/solusweb/matSWebLavaOverlay.mat"; public static string matSWebLavaSecretOverlay = "RoR2/DLC3/solusweb/matSWebLavaSecretOverlay.mat"; public static string matSWebLavaSmall = "RoR2/DLC3/solusweb/matSWebLavaSmall.mat"; public static string matSWebLavaSmallDirectOpaque = "RoR2/DLC3/solusweb/matSWebLavaSmallDirectOpaque.mat"; public static string matSWLavaUnder = "RoR2/DLC3/solusweb/matSWLavaUnder.mat"; public static string matSWLightning = "RoR2/DLC3/solusweb/matSWLightning.mat"; public static string matSWMovingCubePulse = "RoR2/DLC3/solusweb/matSWMovingCubePulse.mat"; public static string matSWVoxelGlowIntersection = "RoR2/DLC3/solusweb/matSWVoxelGlow_Intersection.mat"; public static string matSWVoxelGlowIntersectionDim = "RoR2/DLC3/solusweb/matSWVoxelGlow_IntersectionDim.mat"; public static string matSWVoxelGlowIntersectionSecret = "RoR2/DLC3/solusweb/matSWVoxelGlow_IntersectionSecret.mat"; public static string matSWVoxelObject = "RoR2/DLC3/solusweb/matSWVoxelObject.mat"; public static string matSWVoxelObjectDistant = "RoR2/DLC3/solusweb/matSWVoxelObjectDistant.mat"; public static string OrangeFlow = "RoR2/DLC3/solusweb/OrangeFlow.mat"; public static string SWGlowVertexColors = "RoR2/DLC3/solusweb/SWGlow_VertexColors.mat"; public static string SWGlowVertexColorsDim = "RoR2/DLC3/solusweb/SWGlow_VertexColorsDim.mat"; public static string SWGlowVertexColorsSecret = "RoR2/DLC3/solusweb/SWGlow_VertexColorsSecret.mat"; public static string matSHCatwalk = "RoR2/DLC3/solutionalhaunt/matSHCatwalk.mat"; public static string matSHCatwalkopt = "RoR2/DLC3/solutionalhaunt/matSHCatwalk_opt.mat"; public static string matSHConcreteFloor = "RoR2/DLC3/solutionalhaunt/matSHConcreteFloor.mat"; public static string matSHConcreteWall = "RoR2/DLC3/solutionalhaunt/matSHConcreteWall.mat"; public static string matSHConcreteWallopt = "RoR2/DLC3/solutionalhaunt/matSHConcreteWall_opt.mat"; public static string matSHFauxLight = "RoR2/DLC3/solutionalhaunt/matSHFauxLight.mat"; public static string matSHFauxLightopt = "RoR2/DLC3/solutionalhaunt/matSHFauxLight_opt.mat"; public static string matSHFog = "RoR2/DLC3/solutionalhaunt/matSHFog.mat"; public static string matSHGlowFlower = "RoR2/DLC3/solutionalhaunt/matSHGlowFlower.mat"; public static string matSHGlowFloweropt = "RoR2/DLC3/solutionalhaunt/matSHGlowFlower_opt.mat"; public static string matSHGlowingHexGlass = "RoR2/DLC3/solutionalhaunt/matSHGlowingHexGlass.mat"; public static string matSHGrassGreenB = "RoR2/DLC3/solutionalhaunt/matSHGrassGreenB.mat"; public static string matSHGrassGreenBopt = "RoR2/DLC3/solutionalhaunt/matSHGrassGreenB_opt.mat"; public static string MatSHGrassPink = "RoR2/DLC3/solutionalhaunt/MatSHGrassPink.mat"; public static string MatSHGrassPinkopt = "RoR2/DLC3/solutionalhaunt/MatSHGrassPink_opt.mat"; public static string matSHMetal = "RoR2/DLC3/solutionalhaunt/matSHMetal.mat"; public static string matSHMetalopt = "RoR2/DLC3/solutionalhaunt/matSHMetal_opt.mat"; public static string matSHMetalPink = "RoR2/DLC3/solutionalhaunt/matSHMetalPink.mat"; public static string matSHMetalPinkopt = "RoR2/DLC3/solutionalhaunt/matSHMetalPink_opt.mat"; public static string matSHMetalPipe = "RoR2/DLC3/solutionalhaunt/matSHMetalPipe.mat"; public static string matSHMetalPipeopt = "RoR2/DLC3/solutionalhaunt/matSHMetalPipe_opt.mat"; public static string matSHMetalRed = "RoR2/DLC3/solutionalhaunt/matSHMetalRed.mat"; public static string matSHMetalRedopt = "RoR2/DLC3/solutionalhaunt/matSHMetalRed_opt.mat"; public static string matSHMetalTEMP = "RoR2/DLC3/solutionalhaunt/matSHMetalTEMP.mat"; public static string matSHMetalTEMPopt = "RoR2/DLC3/solutionalhaunt/matSHMetalTEMP_opt.mat"; public static string matSHShieldB = "RoR2/DLC3/solutionalhaunt/matSHShieldB.mat"; public static string matSHShieldBopt = "RoR2/DLC3/solutionalhaunt/matSHShieldB_opt.mat"; public static string matSHShieldPattern = "RoR2/DLC3/solutionalhaunt/matSHShieldPattern.mat"; public static string matSHShieldPatternBG = "RoR2/DLC3/solutionalhaunt/matSHShieldPattern_BG.mat"; public static string matSHShieldPatternopt = "RoR2/DLC3/solutionalhaunt/matSHShieldPattern_opt.mat"; public static string matSHShieldPatternBackdrop = "RoR2/DLC3/solutionalhaunt/matSHShieldPatternBackdrop.mat"; public static string matSHShieldPatternBackdropopt = "RoR2/DLC3/solutionalhaunt/matSHShieldPatternBackdrop_opt.mat"; public static string matSHShieldPatternBackdropMinor = "RoR2/DLC3/solutionalhaunt/matSHShieldPatternBackdropMinor.mat"; public static string matSHShieldPatternDistortion = "RoR2/DLC3/solutionalhaunt/matSHShieldPatternDistortion.mat"; public static string matSHShieldPatternMinor = "RoR2/DLC3/solutionalhaunt/matSHShieldPatternMinor.mat"; public static string matSHSurfaceLight = "RoR2/DLC3/solutionalhaunt/matSHSurfaceLight.mat"; public static string matSHSurfaceLightopt = "RoR2/DLC3/solutionalhaunt/matSHSurfaceLight_opt.mat"; public static string matSHTerrain = "RoR2/DLC3/solutionalhaunt/matSHTerrain.mat"; public static string matSHTerrainopt = "RoR2/DLC3/solutionalhaunt/matSHTerrain_opt.mat"; public static string matSHTerrainDiorama = "RoR2/DLC3/solutionalhaunt/matSHTerrainDiorama.mat"; public static string matSHTerrainTriplanarRocks = "RoR2/DLC3/solutionalhaunt/matSHTerrainTriplanarRocks.mat"; public static string matSHTerrainTriplanarRocksopt = "RoR2/DLC3/solutionalhaunt/matSHTerrainTriplanarRocks_opt.mat"; public static string matSHTracerBright = "RoR2/DLC3/solutionalhaunt/matSHTracerBright.mat"; public static string matSHTracerBrightopt = "RoR2/DLC3/solutionalhaunt/matSHTracerBright_opt.mat"; public static string matSHVineBillboard = "RoR2/DLC3/solutionalhaunt/matSHVineBillboard.mat"; public static string matSHVineBillboardopt = "RoR2/DLC3/solutionalhaunt/matSHVineBillboard_opt.mat"; public static string matSHVines = "RoR2/DLC3/solutionalhaunt/matSHVines.mat"; public static string matSHVinesopt = "RoR2/DLC3/solutionalhaunt/matSHVines_opt.mat"; public static string matSHWater = "RoR2/DLC3/solutionalhaunt/matSHWater.mat"; public static string matSHWateropt = "RoR2/DLC3/solutionalhaunt/matSHWater_opt.mat"; public static string matSHWaterB = "RoR2/DLC3/solutionalhaunt/matSHWaterB.mat"; public static string matSHWaterC = "RoR2/DLC3/solutionalhaunt/matSHWaterC.mat"; public static string matSHWaterDiorama = "RoR2/DLC3/solutionalhaunt/matSHWaterDiorama.mat"; public static string matSHWaterFallA = "RoR2/DLC3/solutionalhaunt/matSHWaterFallA.mat"; public static string matSHWaterFallB = "RoR2/DLC3/solutionalhaunt/matSHWaterFallB.mat"; public static string matSHWaterSparkles = "RoR2/DLC3/solutionalhaunt/matSHWaterSparkles.mat"; public static string matSHWaterSparklesopt = "RoR2/DLC3/solutionalhaunt/matSHWaterSparkles_opt.mat"; public static string Glow1 = "RoR2/DLC3/solutionalhaunt/Glow 1.mat"; public static string Glow = "RoR2/DLC3/solutionalhaunt/Glow.mat"; public static string matCharacterTube = "RoR2/DLC3/solutionalhaunt/matCharacterTube.mat"; public static string matEmissiveOff = "RoR2/DLC3/solutionalhaunt/matEmissiveOff.mat"; public static string matEmissiveOn = "RoR2/DLC3/solutionalhaunt/matEmissiveOn.mat"; public static string matGlassEmissive = "RoR2/DLC3/solutionalhaunt/matGlassEmissive.mat"; public static string matGlassEmissiveopt = "RoR2/DLC3/solutionalhaunt/matGlassEmissive_opt.mat"; public static string matSHCatWalk = "RoR2/DLC3/solutionalhaunt/matSH_CatWalk.mat"; public static string matSHCables02 = "RoR2/DLC3/solutionalhaunt/matSHCables02.mat"; public static string matSHCables03 = "RoR2/DLC3/solutionalhaunt/matSHCables03.mat"; public static string matSHCablesDiorama = "RoR2/DLC3/solutionalhaunt/matSHCablesDiorama.mat"; public static string matSHCablesDioramaopt = "RoR2/DLC3/solutionalhaunt/matSHCablesDiorama_opt.mat"; public static string matSHConcreteA = "RoR2/DLC3/solutionalhaunt/matSHConcreteA.mat"; public static string matSHDrip = "RoR2/DLC3/solutionalhaunt/matSHDrip.mat"; public static string matSHDripopt = "RoR2/DLC3/solutionalhaunt/matSHDrip_opt.mat"; public static string matSHEnvSmoke = "RoR2/DLC3/solutionalhaunt/matSHEnvSmoke.mat"; public static string matSHEnvSmokeopt = "RoR2/DLC3/solutionalhaunt/matSHEnvSmoke_opt.mat"; public static string matShFogCard = "RoR2/DLC3/solutionalhaunt/matShFogCard.mat"; public static string matShFogCardDark = "RoR2/DLC3/solutionalhaunt/matShFogCard_Dark.mat"; public static string matSHglowflower01 = "RoR2/DLC3/solutionalhaunt/matSHglowflower01.mat"; public static string matSHGoo = "RoR2/DLC3/solutionalhaunt/matSHGoo.mat"; public static string matSHGooshallow1 = "RoR2/DLC3/solutionalhaunt/matSHGooshallow 1.mat"; public static string matSHGooshallow = "RoR2/DLC3/solutionalhaunt/matSHGooshallow.mat"; public static string matSHGooshallowBoss = "RoR2/DLC3/solutionalhaunt/matSHGooshallowBoss.mat"; public static string matSHGrass = "RoR2/DLC3/solutionalhaunt/matSHGrass.mat"; public static string MatSHGrassSparse = "RoR2/DLC3/solutionalhaunt/MatSHGrassSparse.mat"; public static string MatSHGrassSparsegreen = "RoR2/DLC3/solutionalhaunt/MatSHGrassSparsegreen.mat"; public static string matSHHatch = "RoR2/DLC3/solutionalhaunt/matSHHatch.mat"; public static string matSHIronGround = "RoR2/DLC3/solutionalhaunt/matSHIronGround.mat"; public static string matSHLargeChute = "RoR2/DLC3/solutionalhaunt/matSHLargeChute.mat"; public static string matSHLiftTubedoublesided = "RoR2/DLC3/solutionalhaunt/matSHLiftTube_doublesided.mat"; public static string matSHLiftTubedoublesidedopt = "RoR2/DLC3/solutionalhaunt/matSHLiftTube_doublesided_opt.mat"; public static string matSHMetal01A = "RoR2/DLC3/solutionalhaunt/matSHMetal01A.mat"; public static string matSHMetal01Aopt = "RoR2/DLC3/solutionalhaunt/matSHMetal01A_opt.mat"; public static string matSHMetal01B = "RoR2/DLC3/solutionalhaunt/matSHMetal01B.mat"; public static string matSHMetal01Bopt = "RoR2/DLC3/solutionalhaunt/matSHMetal01B_opt.mat"; public static string matSHMetal01C = "RoR2/DLC3/solutionalhaunt/matSHMetal01C.mat"; public static string matSHMetal01Copt = "RoR2/DLC3/solutionalhaunt/matSHMetal01C_opt.mat"; public static string matSHMetal01D = "RoR2/DLC3/solutionalhaunt/matSHMetal01D.mat"; public static string matSHMetal01Dopt = "RoR2/DLC3/solutionalhaunt/matSHMetal01D_opt.mat"; public static string matSHMetal02A = "RoR2/DLC3/solutionalhaunt/matSHMetal02A.mat"; public static string matSHMetal02Aopt = "RoR2/DLC3/solutionalhaunt/matSHMetal02A_opt.mat"; public static string matSHMetal02B = "RoR2/DLC3/solutionalhaunt/matSHMetal02B.mat"; public static string matSHMetal03 = "RoR2/DLC3/solutionalhaunt/matSHMetal03.mat"; public static string matSHMetal04 = "RoR2/DLC3/solutionalhaunt/matSHMetal04.mat"; public static string matSHMetal05 = "RoR2/DLC3/solutionalhaunt/matSHMetal05.mat"; public static string matSHMetal05opt = "RoR2/DLC3/solutionalhaunt/matSHMetal05_opt.mat"; public static string matSHMetal06 = "RoR2/DLC3/solutionalhaunt/matSHMetal06.mat"; public static string matSHMetal06opt = "RoR2/DLC3/solutionalhaunt/matSHMetal06_opt.mat"; public static string matSHMetalTEMP2 = "RoR2/DLC3/solutionalhaunt/matSHMetalTEMP2.mat"; public static string matSHMetalTEMP2opt = "RoR2/DLC3/solutionalhaunt/matSHMetalTEMP2_opt.mat"; public static string matSHMush01 = "RoR2/DLC3/solutionalhaunt/matSHMush01.mat"; public static string matSHMush02 = "RoR2/DLC3/solutionalhaunt/matSHMush02.mat"; public static string matSHMushSup1 = "RoR2/DLC3/solutionalhaunt/matSHMushSup1.mat"; public static string matSHOpaqueWaterFoam = "RoR2/DLC3/solutionalhaunt/matSHOpaqueWaterFoam.mat"; public static string matSHOpaqueWaterFoamopt = "RoR2/DLC3/solutionalhaunt/matSHOpaqueWaterFoam_opt.mat"; public static string matSHOpaqueWaterSplash = "RoR2/DLC3/solutionalhaunt/matSHOpaqueWaterSplash.mat"; public static string matSHOpaqueWaterSplashopt = "RoR2/DLC3/solutionalhaunt/matSHOpaqueWaterSplash_opt.mat"; public static string matSHPebble = "RoR2/DLC3/solutionalhaunt/matSHPebble.mat"; public static string matSHPlatform01 = "RoR2/DLC3/solutionalhaunt/matSHPlatform01.mat"; public static string matSHPlatform02 = "RoR2/DLC3/solutionalhaunt/matSHPlatform02.mat"; public static string matSHPylonGlassOff = "RoR2/DLC3/solutionalhaunt/matSHPylonGlassOff.mat"; public static string matSHPylonGlassOn = "RoR2/DLC3/solutionalhaunt/matSHPylonGlassOn.mat"; public static string matSHShieldB2 = "RoR2/DLC3/solutionalhaunt/matSHShieldB2.mat"; public static string matSHShieldB2opt = "RoR2/DLC3/solutionalhaunt/matSHShieldB2_opt.mat"; public static string matSHShieldPattern2 = "RoR2/DLC3/solutionalhaunt/matSHShieldPattern2.mat"; public static string matSHShieldPattern2opt = "RoR2/DLC3/solutionalhaunt/matSHShieldPattern2_opt.mat"; public static string matSHShieldPattern3 = "RoR2/DLC3/solutionalhaunt/matSHShieldPattern3.mat"; public static string matSHShieldPattern3opt = "RoR2/DLC3/solutionalhaunt/matSHShieldPattern3_opt.mat"; public static string matSHSkybox = "RoR2/DLC3/solutionalhaunt/matSHSkybox.mat"; public static string matSHSplashRipple = "RoR2/DLC3/solutionalhaunt/matSHSplashRipple.mat"; public static string matSHSplashRippleopt = "RoR2/DLC3/solutionalhaunt/matSHSplashRipple_opt.mat"; public static string matSHTallGrass = "RoR2/DLC3/solutionalhaunt/matSHTallGrass.mat"; public static string matSHTerrainTriplanar = "RoR2/DLC3/solutionalhaunt/matSHTerrainTriplanar.mat"; public static string matSHTerrainTriplanaropt = "RoR2/DLC3/solutionalhaunt/matSHTerrainTriplanar_opt.mat"; public static string matSHTerrainTriplanarToWalls = "RoR2/DLC3/solutionalhaunt/matSHTerrainTriplanarToWalls.mat"; public static string matSHTerrainTriplanarToWallsopt = "RoR2/DLC3/solutionalhaunt/matSHTerrainTriplanarToWalls_opt.mat"; public static string matSHTerrainTriplanarWaterUnderlay = "RoR2/DLC3/solutionalhaunt/matSHTerrainTriplanarWaterUnderlay.mat"; public static string matSHTruss = "RoR2/DLC3/solutionalhaunt/matSHTruss.mat"; public static string matSHVIne01 = "RoR2/DLC3/solutionalhaunt/matSHVIne01.mat"; public static string matSHVines02 = "RoR2/DLC3/solutionalhaunt/matSHVines02.mat"; public static string matSHWallR1 = "RoR2/DLC3/solutionalhaunt/matSHWallR1.mat"; public static string matSHWallR2 = "RoR2/DLC3/solutionalhaunt/matSHWallR2.mat"; public static string matSHWallR3 = "RoR2/DLC3/solutionalhaunt/matSHWallR3.mat"; public static string matSHWaterfall1 = "RoR2/DLC3/solutionalhaunt/matSHWaterfall 1.mat"; public static string matSHWaterfall2 = "RoR2/DLC3/solutionalhaunt/matSHWaterfall 2.mat"; public static string matSHWaterfall3 = "RoR2/DLC3/solutionalhaunt/matSHWaterfall 3.mat"; public static string matSHWaterfall = "RoR2/DLC3/solutionalhaunt/matSHWaterfall.mat"; public static string matSHWaterfallMist = "RoR2/DLC3/solutionalhaunt/matSHWaterfallMist.mat"; public static string matSHWaterFoam1 = "RoR2/DLC3/solutionalhaunt/matSHWaterFoam 1.mat"; public static string matSHWindTrail = "RoR2/DLC3/solutionalhaunt/matSHWindTrail.mat"; public static string matSolusDecorLampFireFlies = "RoR2/DLC3/solutionalhaunt/matSolusDecorLampFireFlies.mat"; public static string matSolusDecorVent = "RoR2/DLC3/solutionalhaunt/matSolusDecorVent.mat"; public static string matSolusDecorVentopt = "RoR2/DLC3/solutionalhaunt/matSolusDecorVent_opt.mat"; public static string matSolusDecorVFX = "RoR2/DLC3/solutionalhaunt/matSolusDecorVFX.mat"; public static string matSolusDecorVFXopt = "RoR2/DLC3/solutionalhaunt/matSolusDecorVFX_opt.mat"; public static string matSWPreFightDownloading = "RoR2/DLC3/solutionalhaunt/matSWPreFightDownloading.mat"; public static string matSWPreFightDownloading21 = "RoR2/DLC3/solutionalhaunt/matSWPreFightDownloading2 1.mat"; public static string matSWPreFightDownloading2 = "RoR2/DLC3/solutionalhaunt/matSWPreFightDownloading2.mat"; public static string matSWPreFightDownloading3 = "RoR2/DLC3/solutionalhaunt/matSWPreFightDownloading3.mat"; public static string matSWPreFightDownloading4 = "RoR2/DLC3/solutionalhaunt/matSWPreFightDownloading4.mat"; public static string matSWPreFightDownloading5 = "RoR2/DLC3/solutionalhaunt/matSWPreFightDownloading5.mat"; public static string SHIronGround01 = "RoR2/DLC3/solutionalhaunt/SH_Iron_Ground_01.mat"; public static string SHIronGround02 = "RoR2/DLC3/solutionalhaunt/SH_Iron_Ground_02.mat"; public static string SHMetal01 = "RoR2/DLC3/solutionalhaunt/SH_Metal_01.mat"; public static string SHMetalInner = "RoR2/DLC3/solutionalhaunt/SH_Metal_Inner.mat"; public static string SHSurfaceLight = "RoR2/DLC3/solutionalhaunt/SH_SurfaceLight.mat"; public static string shtEMPwALLS = "RoR2/DLC3/solutionalhaunt/sh_tEMPwALLS.mat"; public static string SHTestMetal03 = "RoR2/DLC3/solutionalhaunt/SH_TestMetal_03.mat"; public static string SHTestMetal04 = "RoR2/DLC3/solutionalhaunt/SH_TestMetal_04.mat"; public static string SHTestMetal04b = "RoR2/DLC3/solutionalhaunt/SH_TestMetal_04b.mat"; public static string SHTestMetal04bopt = "RoR2/DLC3/solutionalhaunt/SH_TestMetal_04b_opt.mat"; public static string SHWalkway2 = "RoR2/DLC3/solutionalhaunt/SH_Walkway.mat"; public static string SHWhitebox = "RoR2/DLC3/solutionalhaunt/SH_Whitebox.mat"; public static string ttesttrussalpha01 = "RoR2/DLC3/solutionalhaunt/t_test_truss_alpha_01.mat"; public static string matWaterFoam29 = "RoR2/DLC3/solutionalhaunt/matWaterFoam.mat"; public static string FogCard = "RoR2/DLC3/solutionalhaunt/FogCard.mat"; public static string FogCarddirectionalTeal = "RoR2/DLC3/solutionalhaunt/FogCard_directionalTeal.mat"; public static string matBazaarSeerSolutionalHaunt = "RoR2/DLC3/solutionalhaunt/matBazaarSeerSolutionalHaunt.mat"; public static string matTrimSheetGrassyRuinsSHDio = "RoR2/DLC3/solutionalhaunt/matTrimSheetGrassyRuinsSHDio.mat"; public static string matSecurityGridBeam = "RoR2/DLC3/solutionalhaunt/matSecurityGridBeam.mat"; public static string matSecurityGridElectric = "RoR2/DLC3/solutionalhaunt/matSecurityGridElectric.mat"; public static string matSecurityGridExplosion = "RoR2/DLC3/solutionalhaunt/matSecurityGridExplosion.mat"; public static string matSecurityGridGlob = "RoR2/DLC3/solutionalhaunt/matSecurityGridGlob.mat"; public static string matUIIconDronePurchase = "RoR2/DLC3/UI/matUIIconDronePurchase.mat"; public static string matArtifact = "RoR2/GlobalContent/matArtifact.mat"; public static string matEcho = "RoR2/InDev/matEcho.mat"; public static string matEchoHunterGhostSphere = "RoR2/InDev/matEchoHunterGhostSphere.mat"; public static string matFunballExplosionFlash = "RoR2/Junk/Bomb/matFunballExplosionFlash.mat"; public static string matFunballExplosionShrapnel = "RoR2/Junk/Bomb/matFunballExplosionShrapnel.mat"; public static string matFunballExplosionSpeckles = "RoR2/Junk/Bomb/matFunballExplosionSpeckles.mat"; public static string matArtifactCloud = "RoR2/Junk/matArtifactCloud.mat"; public static string matAncientWisp = "RoR2/Junk/AncientWisp/matAncientWisp.mat"; public static string matAncientWispFire = "RoR2/Junk/AncientWisp/matAncientWispFire.mat"; public static string matAncientWillowispSpiral = "RoR2/Junk/AncientWisp/matAncientWillowispSpiral.mat"; public static string matMeleeTrail1 = "RoR2/Junk/AncientWisp/matMeleeTrail1.mat"; public static string matWispEnrage = "RoR2/Junk/AncientWisp/matWispEnrage.mat"; public static string matArchWisp = "RoR2/Junk/ArchWisp/matArchWisp.mat"; public static string matArchWispTile = "RoR2/Junk/ArchWisp/matArchWispTile.mat"; public static string matAssassin = "RoR2/Junk/Assassin/matAssassin.mat"; public static string matAssassinSwingTrail = "RoR2/Junk/Assassin/matAssassinSwingTrail.mat"; public static string matSparkCutout01 = "RoR2/Junk/Bandit/matSparkCutout01.mat"; public static string matBanditChargePistol = "RoR2/Junk/Bandit/matBanditChargePistol.mat"; public static string matBanditGrenade = "RoR2/Junk/Bandit/matBanditGrenade.mat"; public static string matBanditPistol = "RoR2/Junk/Bandit/matBanditPistol.mat"; public static string matBanditSmokescreen = "RoR2/Junk/Bandit/matBanditSmokescreen.mat"; public static string matOmniRing1Bandit = "RoR2/Junk/Bandit/matOmniRing1Bandit.mat"; public static string matUIRemapCrosshairStandard = "RoR2/Junk/Bandit/matUIRemapCrosshairStandard.mat"; public static string matBanditExplosion = "RoR2/Junk/Bandit/matBanditExplosion.mat"; public static string matThermiteCloud = "RoR2/Junk/Bandit/matThermiteCloud.mat"; public static string matThermiteDroplet = "RoR2/Junk/Bandit/matThermiteDroplet.mat"; public static string matThermiteFlame = "RoR2/Junk/Bandit/matThermiteFlame.mat"; public static string matThermiteFlare = "RoR2/Junk/Bandit/matThermiteFlare.mat"; public static string matBeetleGrub = "RoR2/Junk/BeetleQueen/matBeetleGrub.mat"; public static string matBeetleSpitTiling = "RoR2/Junk/BeetleQueen/matBeetleSpitTiling.mat"; public static string matQueenWeakspot = "RoR2/Junk/BeetleQueen/matQueenWeakspot.mat"; public static string matBellBuff = "RoR2/Junk/Bell/matBellBuff.mat"; public static string matBellExplosion = "RoR2/Junk/Bell/matBellExplosion.mat"; public static string matTestClay = "RoR2/Junk/Clay/matTestClay.mat"; public static string matMuzzleFlarePlaceholder = "RoR2/Junk/ClayBruiser/matMuzzleFlarePlaceholder.mat"; public static string matMuzzleRayPlaceholder = "RoR2/Junk/ClayBruiser/matMuzzleRayPlaceholder.mat"; public static string matClayman = "RoR2/Junk/ClayMan/matClayman.mat"; public static string matClaymanGear = "RoR2/Junk/ClayMan/matClaymanGear.mat"; public static string matClaySwingtrail = "RoR2/Junk/ClayMan/matClaySwingtrail.mat"; public static string matCommandoFmjWindUpDistortion = "RoR2/Junk/Commando/matCommandoFmjWindUpDistortion.mat"; public static string matCutBlackhole = "RoR2/Junk/Commando/matCutBlackhole.mat"; public static string matCutDroneShockwave = "RoR2/Junk/Drones/matCutDroneShockwave.mat"; public static string matEngiExplosionLarge = "RoR2/Junk/Engi/matEngiExplosionLarge.mat"; public static string matEngiHarpoonCore = "RoR2/Junk/Engi/matEngiHarpoonCore.mat"; public static string matEngiSmokeTrail = "RoR2/Junk/Engi/matEngiSmokeTrail.mat"; public static string matUIRemapWide = "RoR2/Junk/Engi/matUIRemapWide.mat"; public static string matGrandparentDeathEnergyBlasts = "RoR2/Junk/GrandParent/matGrandparentDeathEnergyBlasts.mat"; public static string matGrandparentMeleeSwipe = "RoR2/Junk/GrandParent/matGrandparentMeleeSwipe.mat"; public static string matGrandparentTeleportFlash = "RoR2/Junk/GrandParent/matGrandparentTeleportFlash.mat"; public static string matDustExhaust2 = "RoR2/Junk/Gravekeeper/matDustExhaust2.mat"; public static string matExplosion1 = "RoR2/Junk/GreaterWisp/matExplosion1.mat"; public static string matHAND = "RoR2/Junk/HAND/matHAND.mat"; public static string matHANDHammer = "RoR2/Junk/HAND/matHANDHammer.mat"; public static string matOverclockOverlay = "RoR2/Junk/HAND/matOverclockOverlay.mat"; public static string matRepairModeOverlay = "RoR2/Junk/HAND/matRepairModeOverlay.mat"; public static string matWinch = "RoR2/Junk/HAND/matWinch.mat"; public static string MeleeTrail2 = "RoR2/Junk/HAND/MeleeTrail2.mat"; public static string matHauler = "RoR2/Junk/Hauler/matHauler.mat"; public static string matHaulerWheel = "RoR2/Junk/Hauler/matHaulerWheel.mat"; public static string matOmniHitspark2Huntress = "RoR2/Junk/Huntress/matOmniHitspark2Huntress.mat"; public static string matOmniRing1Loader = "RoR2/Junk/Loader/matOmniRing1Loader.mat"; public static string matLunarWispBombClouds = "RoR2/Junk/LunarWisp/matLunarWispBombClouds.mat"; public static string matMageFireLaser = "RoR2/Junk/Mage/matMageFireLaser.mat"; public static string matMageIceLaser = "RoR2/Junk/Mage/matMageIceLaser.mat"; public static string matMageLightningLaser = "RoR2/Junk/Mage/matMageLightningLaser.mat"; public static string matMageMatrixTileLightning = "RoR2/Junk/Mage/matMageMatrixTileLightning.mat"; public static string matMageMatrixDirectionalFire = "RoR2/Junk/Mage/matMageMatrixDirectionalFire.mat"; public static string matSporeExhaust = "RoR2/Junk/MiniMushroom/matSporeExhaust.mat"; public static string matSporeGrenadeExplosion = "RoR2/Junk/MiniMushroom/matSporeGrenadeExplosion.mat"; public static string matSporeGrenadeGasImpact = "RoR2/Junk/MiniMushroom/matSporeGrenadeGasImpact.mat"; public static string matPaladin = "RoR2/Junk/Paladin/matPaladin.mat"; public static string matParentSpawnClouds = "RoR2/Junk/Parent/matParentSpawnClouds.mat"; public static string matParentTeleportIndicator = "RoR2/Junk/Parent/matParentTeleportIndicator.mat"; public static string matPot = "RoR2/Junk/Pot2/matPot.mat"; public static string matPotMobile = "RoR2/Junk/PotMobile/matPotMobile.mat"; public static string matLaserPointerBeamSniper = "RoR2/Junk/Sniper/matLaserPointerBeamSniper.mat"; public static string matLaserPointerBloom = "RoR2/Junk/Sniper/matLaserPointerBloom.mat"; public static string matScopeSniper = "RoR2/Junk/Sniper/matScopeSniper.mat"; public static string matSquidTurret30 = "RoR2/Junk/Squid/matSquidTurret.mat"; public static string matTank = "RoR2/Junk/Tank/matTank.mat"; public static string matSonicBoomDustCloud = "RoR2/Junk/Treebot/matSonicBoomDustCloud.mat"; public static string matSonicBoomGroundDust = "RoR2/Junk/Treebot/matSonicBoomGroundDust.mat"; public static string matFirePuff = "RoR2/Junk/Wisp/matFirePuff.mat"; public static string matSmokePuff = "RoR2/Junk/Wisp/matSmokePuff.mat"; public static string matSuspended = "RoR2/Junk/Common/matSuspended.mat"; public static string Branches031 = "RoR2/Junk/Common/Props/Branches_0.mat"; public static string Branches124 = "RoR2/Junk/Common/Props/Branches_1.mat"; public static string Fronds215 = "RoR2/Junk/Common/Props/Fronds_2.mat"; public static string Fronds135 = "RoR2/Junk/Common/Props/Fronds_1.mat"; public static string Leaves036 = "RoR2/Junk/Common/Props/Leaves_0.mat"; public static string Leaves115 = "RoR2/Junk/Common/Props/Leaves_1.mat"; public static string matSkyboxFoggyDays = "RoR2/Junk/Common/Skyboxes/matSkyboxFoggyDays.mat"; public static string matStarrySky1 = "RoR2/Junk/Common/Skyboxes/matStarrySky1.mat"; public static string flareGlowPaint = "RoR2/Junk/Common/VFX/flareGlowPaint.mat"; public static string matBanditBulletTrail = "RoR2/Junk/Common/VFX/matBanditBulletTrail.mat"; public static string matBleed = "RoR2/Junk/Common/VFX/matBleed.mat"; public static string matBleedOnHitExplosionClouds = "RoR2/Junk/Common/VFX/matBleedOnHitExplosionClouds.mat"; public static string matBloodParticle = "RoR2/Junk/Common/VFX/matBloodParticle.mat"; public static string matChrome = "RoR2/Junk/Common/VFX/matChrome.mat"; public static string matClaybossMulchAreaIndicator = "RoR2/Junk/Common/VFX/matClaybossMulchAreaIndicator.mat"; public static string matCutFire = "RoR2/Junk/Common/VFX/matCutFire.mat"; public static string matCutLightning1 = "RoR2/Junk/Common/VFX/matCutLightning1.mat"; public static string matCutLightningSphere1 = "RoR2/Junk/Common/VFX/matCutLightningSphere1.mat"; public static string matCutShockwave = "RoR2/Junk/Common/VFX/matCutShockwave.mat"; public static string matCutSmoke = "RoR2/Junk/Common/VFX/matCutSmoke.mat"; public static string matCutWispLarge = "RoR2/Junk/Common/VFX/matCutWispLarge.mat"; public static string matDustPuff = "RoR2/Junk/Common/VFX/matDustPuff.mat"; public static string matDustSmall = "RoR2/Junk/Common/VFX/matDustSmall.mat"; public static string matFireActive = "RoR2/Junk/Common/VFX/matFireActive.mat"; public static string matFireworkSmoke = "RoR2/Junk/Common/VFX/matFireworkSmoke.mat"; public static string matFireworkSmoke2Opaque = "RoR2/Junk/Common/VFX/matFireworkSmoke2Opaque.mat"; public static string matFlamingSmoke = "RoR2/Junk/Common/VFX/matFlamingSmoke.mat"; public static string matFlamingSmokeTrail = "RoR2/Junk/Common/VFX/matFlamingSmokeTrail.mat"; public static string matGeyser = "RoR2/Junk/Common/VFX/matGeyser.mat"; public static string matGeyserBillboard = "RoR2/Junk/Common/VFX/matGeyserBillboard.mat"; public static string matGeyserSpray = "RoR2/Junk/Common/VFX/matGeyserSpray.mat"; public static string matGlowPaint = "RoR2/Junk/Common/VFX/matGlowPaint.mat"; public static string matGooSkirt = "RoR2/Junk/Common/VFX/matGooSkirt.mat"; public static string matGooTrailSiphon = "RoR2/Junk/Common/VFX/matGooTrailSiphon.mat"; public static string matHealthglobeRim = "RoR2/Junk/Common/VFX/matHealthglobeRim.mat"; public static string matHealthOrbSparkle = "RoR2/Junk/Common/VFX/matHealthOrbSparkle.mat"; public static string matLightning = "RoR2/Junk/Common/VFX/matLightning.mat"; public static string matLunarGolemBlastDustSM = "RoR2/Junk/Common/VFX/matLunarGolemBlastDustSM.mat"; public static string matLunarWispBombRings = "RoR2/Junk/Common/VFX/matLunarWispBombRings.mat"; public static string matMissileGlow = "RoR2/Junk/Common/VFX/matMissileGlow.mat"; public static string matOmniHitspark4Generic = "RoR2/Junk/Common/VFX/matOmniHitspark4Generic.mat"; public static string matPingParticle = "RoR2/Junk/Common/VFX/matPingParticle.mat"; public static string matPlanetClouds = "RoR2/Junk/Common/VFX/matPlanetClouds.mat"; public static string matPlanetEclipse = "RoR2/Junk/Common/VFX/matPlanetEclipse.mat"; public static string matPodFire = "RoR2/Junk/Common/VFX/matPodFire.mat"; public static string matShield = "RoR2/Junk/Common/VFX/matShield.mat"; public static string matSlash1 = "RoR2/Junk/Common/VFX/matSlash1.mat"; public static string matSniperScopeTextGlow = "RoR2/Junk/Common/VFX/matSniperScopeTextGlow.mat"; public static string matSnowCloud = "RoR2/Junk/Common/VFX/matSnowCloud.mat"; public static string matSprintDust = "RoR2/Junk/Common/VFX/matSprintDust.mat"; public static string matTeleportOutBodyGlow = "RoR2/Junk/Common/VFX/matTeleportOutBodyGlow.mat"; public static string matVFXFlameRings = "RoR2/Junk/Common/VFX/matVFXFlameRings.mat"; public static string maxCutIndicatorFlame = "RoR2/Junk/Common/VFX/maxCutIndicatorFlame.mat"; public static string matMenuMysteryGlow = "RoR2/Junk/Common/VFX/matMenuMysteryGlow.mat"; public static string matMenuNebula = "RoR2/Junk/Common/VFX/matMenuNebula.mat"; public static string matMenuPlanet = "RoR2/Junk/Common/VFX/matMenuPlanet.mat"; public static string matMenuPlanetAtmosphere = "RoR2/Junk/Common/VFX/matMenuPlanetAtmosphere.mat"; public static string matWaterSpit1 = "RoR2/Junk/Common/VFX/matWaterSpit1.mat"; public static string matWaterSpit2 = "RoR2/Junk/Common/VFX/matWaterSpit2.mat"; public static string matRedAffixMissile = "RoR2/Junk/EliteFire/matRedAffixMissile.mat"; public static string matEliteGreenPickup = "RoR2/Junk/EliteGreen/matEliteGreenPickup.mat"; public static string matHelfireAura = "RoR2/Junk/BurnNearby/matHelfireAura.mat"; public static string matMeteorPickup = "RoR2/Junk/Meteor/matMeteorPickup.mat"; public static string matLaserPointerBeam32 = "RoR2/Junk/OrbitalLaser/matLaserPointerBeam.mat"; public static string matLaserPointerFlare = "RoR2/Junk/OrbitalLaser/matLaserPointerFlare.mat"; public static string matOrbitalLaserCharging = "RoR2/Junk/OrbitalLaser/matOrbitalLaserCharging.mat"; public static string matOrbitalLaserFiring = "RoR2/Junk/OrbitalLaser/matOrbitalLaserFiring.mat"; public static string matWoodSpriteSparkle = "RoR2/Junk/PassiveHealing/matWoodSpriteSparkle.mat"; public static string matBarrel1 = "RoR2/Junk/Barrel 1/matBarrel1.mat"; public static string matBarrelEquipment = "RoR2/Junk/Barrel 1/matBarrelEquipment.mat"; public static string matCacheBarrelPlaceholder = "RoR2/Junk/Barrel 1/matCacheBarrelPlaceholder.mat"; public static string matChest2 = "RoR2/Junk/Chests/matChest2.mat"; public static string matDropship = "RoR2/Junk/Dropship/matDropship.mat"; public static string matYoungTeleporter = "RoR2/Junk/matYoungTeleporter.mat"; public static string matOldChest1 = "RoR2/Junk/Old Chest 1/matOldChest1.mat"; public static string matShrine1 = "RoR2/Junk/Shrine 1/matShrine1.mat"; public static string matShrineHealingDecal = "RoR2/Junk/Shrine, Healing/matShrineHealingDecal.mat"; public static string matShrineWisp = "RoR2/Junk/Shrine, Wisp/matShrineWisp.mat"; public static string matShrineWispTotem = "RoR2/Junk/Shrine, Wisp/matShrineWispTotem.mat"; public static string matTPTrail = "RoR2/Junk/Teleporter/matTPTrail.mat"; public static string matTeleporterBeacon = "RoR2/Junk/Teleporter/matTeleporterBeacon.mat"; public static string matItemBase = "RoR2/Junk/Base/matItemBase.mat"; public static string matCutLightning1Long = "RoR2/Junk/ChainLightning/matCutLightning1Long.mat"; public static string matSkull9 = "RoR2/Junk/CooldownOnCrit/matSkull.mat"; public static string matCrabClawMat = "RoR2/Junk/Crab Claw/matCrabClawMat.mat"; public static string matDeathMarkSmoke = "RoR2/Junk/DeathMark/matDeathMarkSmoke.mat"; public static string matFireworkFlash00 = "RoR2/Junk/Fireworks/matFireworkFlash00.mat"; public static string matAncestralIncubator = "RoR2/Junk/Incubator/matAncestralIncubator.mat"; public static string matParentPod = "RoR2/Junk/Incubator/matParentPod.mat"; public static string matMedkitCharge = "RoR2/Junk/Medkit/matMedkitCharge.mat"; public static string matRocketFlare = "RoR2/Junk/Missile/matRocketFlare.mat"; public static string matShrineGenericRock = "RoR2/Junk/MonstersOnShrineUse/matShrineGenericRock.mat"; public static string matDevilOrb = "RoR2/Junk/NovaOnHeal/matDevilOrb.mat"; public static string matDevilTrail = "RoR2/Junk/NovaOnHeal/matDevilTrail.mat"; public static string matCutLightning2Long = "RoR2/Junk/PlasmaCore/matCutLightning2Long.mat"; public static string matCutLightning2Short = "RoR2/Junk/PlasmaCore/matCutLightning2Short.mat"; public static string matTrailSiphonHealthBurst = "RoR2/Junk/SiphonOnLowHealth/matTrailSiphonHealthBurst.mat"; public static string matBanditCoin1 = "RoR2/Junk/SkullCounter/matBanditCoin 1.mat"; public static string matBanditCoin = "RoR2/Junk/SkullCounter/matBanditCoin.mat"; public static string matStickyBombPlaceholder = "RoR2/Junk/StickyBomb/matStickyBombPlaceholder.mat"; public static string matBlueprintScreen = "RoR2/Junk/Misc/matBlueprintScreen.mat"; public static string matIcicleAura = "RoR2/Junk/Misc/matIcicleAura.mat"; public static string matPickupBlueprint = "RoR2/Junk/Misc/matPickupBlueprint.mat"; public static string matPoisonAura = "RoR2/Junk/Misc/matPoisonAura.mat"; public static string matSkyboxDampcave = "RoR2/Junk/dampcave/matSkyboxDampcave.mat"; public static string Leaves018_Alt = "RoR2/Junk/dampcave/Leaves_0.mat"; public static string Billboard8 = "RoR2/Junk/dampcave/Billboard.mat"; public static string matDCCeilingFilm = "RoR2/Junk/dampcave/matDCCeilingFilm.mat"; public static string matDCWater = "RoR2/Junk/dampcave/matDCWater.mat"; public static string matShrineChanceAlt = "RoR2/Junk/golemplains_trailer/matShrineChanceAlt.mat"; public static string matGolemBridge1 = "RoR2/Junk/Old Stage1/matGolemBridge1.mat"; public static string matGravestone = "RoR2/Junk/Old Stage1/matGravestone.mat"; public static string matEggplant1 = "RoR2/Junk/Old Stage1/matEggplant1.mat"; public static string matLeaves1 = "RoR2/Junk/Old Stage1/matLeaves1.mat"; public static string matPolyp1 = "RoR2/Junk/Old Stage1/matPolyp1.mat"; public static string matTree1 = "RoR2/Junk/Old Stage1/matTree1.mat"; public static string matRock = "RoR2/Junk/Old Stage1/matRock.mat"; public static string matRockFlat = "RoR2/Junk/Old Stage1/matRockFlat.mat"; public static string matColumn1 = "RoR2/Junk/Old Stage1/matColumn1.mat"; public static string matTempleBridge1 = "RoR2/Junk/Old Stage1/matTempleBridge1.mat"; public static string matTempleCeiling1 = "RoR2/Junk/Old Stage1/matTempleCeiling1.mat"; public static string matTemplePillar1 = "RoR2/Junk/Old Stage1/matTemplePillar1.mat"; public static string matTempleWall1 = "RoR2/Junk/Old Stage1/matTempleWall1.mat"; public static string matTempleWallHuge1 = "RoR2/Junk/Old Stage1/matTempleWallHuge1.mat"; public static string matGravpadTemple2 = "RoR2/Junk/Old Stage1/matGravpadTemple2.mat"; public static string matTemple2CrateProjection = "RoR2/Junk/Old Stage1/matTemple2CrateProjection.mat"; public static string matTemple2MinaretProjection = "RoR2/Junk/Old Stage1/matTemple2MinaretProjection.mat"; public static string matTemple2Projection = "RoR2/Junk/Old Stage1/matTemple2Projection.mat"; public static string matTemple2ProjectionLight = "RoR2/Junk/Old Stage1/matTemple2ProjectionLight.mat"; public static string matTemple2Vertex = "RoR2/Junk/Old Stage1/matTemple2Vertex.mat"; public static string matCliffProjectedSnow = "RoR2/Junk/Old Stage1/matCliffProjectedSnow.mat"; public static string matRockProjectedLightSnow = "RoR2/Junk/Old Stage1/matRockProjectedLightSnow.mat"; public static string matRockProjectedSnow = "RoR2/Junk/Old Stage1/matRockProjectedSnow.mat"; public static string matFlower1 = "RoR2/Junk/Old Stage1/matFlower1.mat"; public static string matGrass1 = "RoR2/Junk/Old Stage1/matGrass1.mat"; public static string matIce = "RoR2/Junk/Old Stage1/matIce.mat"; public static string matTerrain1Distant = "RoR2/Junk/Old Stage1/matTerrain1Distant.mat"; public static string matSatelliteSceneSkybox = "RoR2/Junk/satellitescene/matSatelliteSceneSkybox.mat"; public static string matSatellite = "RoR2/Junk/satellitescene/matSatellite.mat"; public static string matCliff1 = "RoR2/Junk/slice1/matCliff1.mat"; public static string matCliff1Moldy = "RoR2/Junk/slice1/matCliff1Moldy.mat"; public static string matCliff1SlightlyMossy = "RoR2/Junk/slice1/matCliff1SlightlyMossy.mat"; public static string matGoalpost1Ribbon = "RoR2/Junk/slice1/matGoalpost1Ribbon.mat"; public static string matRampFogSlice1 = "RoR2/Junk/slice1/matRampFogSlice1.mat"; public static string matSkybox2 = "RoR2/Junk/slice1/matSkybox2.mat"; public static string matStruct1 = "RoR2/Junk/slice1/matStruct1.mat"; public static string matTerrainSlice1 = "RoR2/Junk/slice1/matTerrainSlice1.mat"; public static string matBeachColumn = "RoR2/Junk/slice2/matBeachColumn.mat"; public static string matColossusHead = "RoR2/Junk/slice2/matColossusHead.mat"; public static string matRampFogSlice2 = "RoR2/Junk/slice2/matRampFogSlice2.mat"; public static string matSandCliffsSides1 = "RoR2/Junk/slice2/matSandCliffsSides1.mat"; public static string matSandCliffsSides2 = "RoR2/Junk/slice2/matSandCliffsSides2.mat"; public static string matTerrainSlice2 = "RoR2/Junk/slice2/matTerrainSlice2.mat"; public static string matWhorlShell = "RoR2/Junk/slice2/matWhorlShell.mat"; public static string matPlanet = "RoR2/Junk/space/matPlanet.mat"; public static string matPlanetEmissions = "RoR2/Junk/space/matPlanetEmissions.mat"; public static string matWaterDust = "RoR2/Junk/stage1/matWaterDust.mat"; public static string matWaterSplash = "RoR2/Junk/stage1/matWaterSplash.mat"; public static string matTestsceneWorld = "RoR2/Junk/testscene/matTestsceneWorld.mat"; public static string matTestsceneWorldDark = "RoR2/Junk/testscene/matTestsceneWorldDark.mat"; public static string matTestsceneWorldGood = "RoR2/Junk/testscene/matTestsceneWorldGood.mat"; public static string matSkyboxTitle = "RoR2/Junk/title/matSkyboxTitle.mat"; public static string matUIRemapCrosshairEngi = "RoR2/Junk/UI/matUIRemapCrosshairEngi.mat"; public static string matUIHPBar = "RoR2/Junk/UI/matUIHPBar.mat"; public static string matUIMoneyBar = "RoR2/Junk/UI/matUIMoneyBar.mat"; public static string matUISkillBar = "RoR2/Junk/UI/matUISkillBar.mat"; public static string matUIAnimateAlphaHighlights = "RoR2/Junk/UI/matUIAnimateAlphaHighlights.mat"; public static string matUIAnimateAlphaNearSolid = "RoR2/Junk/UI/matUIAnimateAlphaNearSolid.mat"; public static string matUISegmentedHealthbar = "RoR2/Junk/UI/matUISegmentedHealthbar.mat"; public static string matLogoPlanet = "RoR2/Junk/UI/matLogoPlanet.mat"; public static string matLogoText1 = "RoR2/Junk/UI/matLogoText1.mat"; public static string matLogoText2 = "RoR2/Junk/UI/matLogoText2.mat"; public static string matMinorConstructBismuthOld = "RoR2/Junk_DLC1/MinorConstruct/matMinorConstructBismuthOld.mat"; public static string matRailgunnerSniperTargetVisualizer = "RoR2/Junk_DLC1/Railgunner/matRailgunnerSniperTargetVisualizer.mat"; public static string matOrbRobot = "RoR2/Junk_DLC1/EmpowerItems/matOrbRobot.mat"; public static string matOrbRobotGlass = "RoR2/Junk_DLC1/EmpowerItems/matOrbRobotGlass.mat"; public static string matOrbRobotGlow = "RoR2/Junk_DLC1/EmpowerItems/matOrbRobotGlow.mat"; public static string matAchievementRewardTest = "RoR2/AchievementRewardTest/matAchievementRewardTest.mat"; public static string matColossusItem = "RoR2/matColossusItem.mat"; public static string matColossusItemGlow = "RoR2/matColossusItemGlow.mat"; public static string protoBrown1 = "RoR2/protoBrown1.mat"; public static string protoBrown2 = "RoR2/protoBrown2.mat"; public static string protoBrown3 = "RoR2/protoBrown3.mat"; public static string protoGreen1 = "RoR2/protoGreen1.mat"; public static string protoGreen2 = "RoR2/protoGreen2.mat"; public static string protoGreen3 = "RoR2/protoGreen3.mat"; } public static class UnlockableDef { public static string ArtifactsBomb = "RoR2/Base/Bomb/Artifacts.Bomb.asset"; public static string ArtifactsCommand = "RoR2/Base/Command/Artifacts.Command.asset"; public static string ArtifactsEliteOnly = "RoR2/Base/EliteOnly/Artifacts.EliteOnly.asset"; public static string ArtifactsEnigma = "RoR2/Base/Enigma/Artifacts.Enigma.asset"; public static string ArtifactsFriendlyFire = "RoR2/Base/FriendlyFire/Artifacts.FriendlyFire.asset"; public static string ArtifactsGlass = "RoR2/Base/Glass/Artifacts.Glass.asset"; public static string ArtifactsMixEnemy = "RoR2/Base/MixEnemy/Artifacts.MixEnemy.asset"; public static string ArtifactsMonsterTeamGainsItems = "RoR2/Base/MonsterTeamGainsItems/Artifacts.MonsterTeamGainsItems.asset"; public static string ArtifactsRandomSurvivorOnRespawn = "RoR2/Base/RandomSurvivorOnRespawn/Artifacts.RandomSurvivorOnRespawn.asset"; public static string ArtifactsSacrifice = "RoR2/Base/Sacrifice/Artifacts.Sacrifice.asset"; public static string ArtifactsShadowClone = "RoR2/Base/ShadowClone/Artifacts.ShadowClone.asset"; public static string ArtifactsSingleMonsterType = "RoR2/Base/SingleMonsterType/Artifacts.SingleMonsterType.asset"; public static string ArtifactsSwarms = "RoR2/Base/Swarms/Artifacts.Swarms.asset"; public static string ArtifactsTeamDeath = "RoR2/Base/TeamDeath/Artifacts.TeamDeath.asset"; public static string ArtifactsWeakAssKnees = "RoR2/Base/WeakAssKnees/Artifacts.WeakAssKnees.asset"; public static string ArtifactsWispOnDeath = "RoR2/Base/WispOnDeath/Artifacts.WispOnDeath.asset"; public static string CharactersBandit2 = "RoR2/Base/Bandit2/Characters.Bandit2.asset"; public static string SkillsBandit2Rifle = "RoR2/Base/Bandit2/Skills.Bandit2.Rifle.asset"; public static string SkillsBandit2SerratedShivs = "RoR2/Base/Bandit2/Skills.Bandit2.SerratedShivs.asset"; public static string SkillsBandit2SkullRevolver = "RoR2/Base/Bandit2/Skills.Bandit2.SkullRevolver.asset"; public static string SkinsBandit2Alt2 = "RoR2/Base/Bandit2/Skins.Bandit2.Alt2.asset"; public static string SkinsBandit2AltSkinSolus = "RoR2/Base/Bandit2/Skins.Bandit2.AltSkinSolus.asset"; public static string SkinsBandit2Alt1 = "RoR2/Base/Bandit2/Skins.Bandit2.Alt1.asset"; public static string LogsBeetleBody0 = "RoR2/Base/Beetle/Logs.BeetleBody.0.asset"; public static string LogsBeetleGuardBody0 = "RoR2/Base/BeetleGuard/Logs.BeetleGuardBody.0.asset"; public static string LogsBeetleQueenBody0 = "RoR2/Base/BeetleQueen/Logs.BeetleQueenBody.0.asset"; public static string LogsBellBody0 = "RoR2/Base/Bell/Logs.BellBody.0.asset"; public static string LogsBisonBody0 = "RoR2/Base/Bison/Logs.BisonBody.0.asset"; public static string LogsBrotherBody0 = "RoR2/Base/Brother/Logs.BrotherBody.0.asset"; public static string CharactersCaptain = "RoR2/Base/Captain/Characters.Captain.asset"; public static string SkillsCaptainCaptainSupplyDropEquipmentRestock = "RoR2/Base/Captain/Skills.Captain.CaptainSupplyDropEquipmentRestock.asset"; public static string SkillsCaptainCaptainSupplyDropHacking = "RoR2/Base/Captain/Skills.Captain.CaptainSupplyDropHacking.asset"; public static string SkillsCaptainUtilityAlt1 = "RoR2/Base/Captain/Skills.Captain.UtilityAlt1.asset"; public static string SkinsCaptainAlt1 = "RoR2/Base/Captain/Skins.Captain.Alt1.asset"; public static string SkinsCaptainAlt2 = "RoR2/Base/Captain/Skins.Captain.Alt2.asset"; public static string SkinsCaptainAltSkinSolus = "RoR2/Base/Captain/Skins.Captain.AltSkinSolus.asset"; public static string LogsClayBossBody0 = "RoR2/Base/ClayBoss/Logs.ClayBossBody.0.asset"; public static string LogsClayBruiserBody0 = "RoR2/Base/ClayBruiser/Logs.ClayBruiserBody.0.asset"; public static string SkillsCommandoFireShotgunBlast = "RoR2/Base/Commando/Skills.Commando.FireShotgunBlast.asset"; public static string SkillsCommandoSlideJet = "RoR2/Base/Commando/Skills.Commando.SlideJet.asset"; public static string SkillsCommandoThrowGrenade = "RoR2/Base/Commando/Skills.Commando.ThrowGrenade.asset"; public static string SkinsCommandoAlt1 = "RoR2/Base/Commando/Skins.Commando.Alt1.asset"; public static string SkinsCommandoAlt2 = "RoR2/Base/Commando/Skins.Commando.Alt2.asset"; public static string SkinsCommandoAltSkinVulture = "RoR2/Base/Commando/Skins.Commando.AltSkinVulture.asset"; public static string CharactersCroco = "RoR2/Base/Croco/Characters.Croco.asset"; public static string SkillsCrocoChainableLeap = "RoR2/Base/Croco/Skills.Croco.ChainableLeap.asset"; public static string SkillsCrocoCrocoBite = "RoR2/Base/Croco/Skills.Croco.CrocoBite.asset"; public static string SkillsCrocoPassivePoisonLethal = "RoR2/Base/Croco/Skills.Croco.PassivePoisonLethal.asset"; public static string SkinsCrocoAlt1 = "RoR2/Base/Croco/Skins.Croco.Alt1.asset"; public static string SkinsCrocoAlt2 = "RoR2/Base/Croco/Skins.Croco.Alt2.asset"; public static string SkinsCrocoAltSkinVulture = "RoR2/Base/Croco/Skins.Croco.AltSkinVulture.asset"; public static string LogsElectricWormBody0 = "RoR2/Base/ElectricWorm/Logs.ElectricWormBody.0.asset"; public static string CharactersEngineer = "RoR2/Base/Engi/Characters.Engineer.asset"; public static string SkillsEngiHarpoon = "RoR2/Base/Engi/Skills.Engi.Harpoon.asset"; public static string SkillsEngiSpiderMine = "RoR2/Base/Engi/Skills.Engi.SpiderMine.asset"; public static string SkillsEngiWalkerTurret = "RoR2/Base/Engi/Skills.Engi.WalkerTurret.asset"; public static string SkinsEngiAlt1 = "RoR2/Base/Engi/Skins.Engi.Alt1.asset"; public static string SkinsEngiAlt2 = "RoR2/Base/Engi/Skins.Engi.Alt2.asset"; public static string SkinsEngiAltSkinVulture = "RoR2/Base/Engi/Skins.Engi.AltSkinVulture.asset"; public static string LogsGolemBody0 = "RoR2/Base/Golem/Logs.GolemBody.0.asset"; public static string LogsGrandparentBody0 = "RoR2/Base/Grandparent/Logs.GrandparentBody.0.asset"; public static string LogsGravekeeperBody0 = "RoR2/Base/Gravekeeper/Logs.GravekeeperBody.0.asset"; public static string LogsGreaterWispBody0 = "RoR2/Base/GreaterWisp/Logs.GreaterWispBody.0.asset"; public static string LogsHermitCrabBody0 = "RoR2/Base/HermitCrab/Logs.HermitCrabBody.0.asset"; public static string SkillsHuntressFlurryArrow = "RoR2/Base/Huntress/Skills.Huntress.FlurryArrow.asset"; public static string SkillsHuntressMiniBlink = "RoR2/Base/Huntress/Skills.Huntress.MiniBlink.asset"; public static string SkillsHuntressSnipe = "RoR2/Base/Huntress/Skills.Huntress.Snipe.asset"; public static string SkinsHuntressAlt1 = "RoR2/Base/Huntress/Skins.Huntress.Alt1.asset"; public static string SkinsHuntressAlt2 = "RoR2/Base/Huntress/Skins.Huntress.Alt2.asset"; public static string SkinsHuntressAltSkinVulture = "RoR2/Base/Huntress/Skins.Huntress.AltSkinVulture.asset"; public static string LogsImpBody0 = "RoR2/Base/Imp/Logs.ImpBody.0.asset"; public static string LogsImpBossBody0 = "RoR2/Base/ImpBoss/Logs.ImpBossBody.0.asset"; public static string LogsJellyfishBody0 = "RoR2/Base/Jellyfish/Logs.JellyfishBody.0.asset"; public static string LogsLemurianBody0 = "RoR2/Base/Lemurian/Logs.LemurianBody.0.asset"; public static string LogsLemurianBruiserBody0 = "RoR2/Base/LemurianBruiser/Logs.LemurianBruiserBody.0.asset"; public static string CharactersLoader = "RoR2/Base/Loader/Characters.Loader.asset"; public static string SkillsLoaderThunderslam = "RoR2/Base/Loader/Skills.Loader.Thunderslam.asset"; public static string SkillsLoaderYankHook = "RoR2/Base/Loader/Skills.Loader.YankHook.asset"; public static string SkillsLoaderZapFist = "RoR2/Base/Loader/Skills.Loader.ZapFist.asset"; public static string SkinsLoaderAlt1 = "RoR2/Base/Loader/Skins.Loader.Alt1.asset"; public static string SkinsLoaderAlt2 = "RoR2/Base/Loader/Skins.Loader.Alt2.asset"; public static string SkinsLoaderAltSkinSolus = "RoR2/Base/Loader/Skins.Loader.AltSkinSolus.asset"; public static string LogsLunarExploder0 = "RoR2/Base/LunarExploder/Logs.LunarExploder.0.asset"; public static string LogsLunarGolem0 = "RoR2/Base/LunarGolem/Logs.LunarGolem.0.asset"; public static string LogsLunarWisp0 = "RoR2/Base/LunarWisp/Logs.LunarWisp.0.asset"; public static string SkillsMageFlyUp = "RoR2/Base/Mage/Skills.Mage.FlyUp.asset"; public static string SkillsMageIceBomb = "RoR2/Base/Mage/Skills.Mage.IceBomb.asset"; public static string SkillsMageLightningBolt = "RoR2/Base/Mage/Skills.Mage.LightningBolt.asset"; public static string SkinsMageAlt1 = "RoR2/Base/Mage/Skins.Mage.Alt1.asset"; public static string SkinsMageAlt2 = "RoR2/Base/Mage/Skins.Mage.Alt2.asset"; public static string SkinsMageAltSkinSolus = "RoR2/Base/Mage/Skins.Mage.AltSkinSolus.asset"; public static string LogsMagmaWormBody0 = "RoR2/Base/MagmaWorm/Logs.MagmaWormBody.0.asset"; public static string CharactersMage = "RoR2/Base/Merc/Characters.Mage.asset"; public static string CharactersMercenary = "RoR2/Base/Merc/Characters.Mercenary.asset"; public static string SkillsMercEvisProjectile = "RoR2/Base/Merc/Skills.Merc.EvisProjectile.asset"; public static string SkillsMercFocusedAssault = "RoR2/Base/Merc/Skills.Merc.FocusedAssault.asset"; public static string SkillsMercUppercut = "RoR2/Base/Merc/Skills.Merc.Uppercut.asset"; public static string SkinsMercAlt1 = "RoR2/Base/Merc/Skins.Merc.Alt1.asset"; public static string SkinsMercAlt2 = "RoR2/Base/Merc/Skins.Merc.Alt2.asset"; public static string SkinsMercAltSkinVulture = "RoR2/Base/Merc/Skins.Merc.AltSkinVulture.asset"; public static string LogsMiniMushroom0 = "RoR2/Base/MiniMushroom/Logs.MiniMushroom.0.asset"; public static string LogsNullifier0 = "RoR2/Base/Nullifier/Logs.Nullifier.0.asset"; public static string LogsParent0 = "RoR2/Base/Parent/Logs.Parent.0.asset"; public static string LogsRoboBallBossBody0 = "RoR2/Base/RoboBallBoss/Logs.RoboBallBossBody.0.asset"; public static string LogsRoboBallMiniBody0 = "RoR2/Base/RoboBallBoss/Logs.RoboBallMiniBody.0.asset"; public static string LogsSuperRoboBallBossBody0 = "RoR2/Base/RoboBallBoss/Logs.SuperRoboBallBossBody.0.asset"; public static string LogsScav0 = "RoR2/Base/Scav/Logs.Scav.0.asset"; public static string LogsTitanBody0 = "RoR2/Base/Titan/Logs.TitanBody.0.asset"; public static string LogsTitanGoldBody0 = "RoR2/Base/Titan/Logs.TitanGoldBody.0.asset"; public static string CharactersToolbot = "RoR2/Base/Toolbot/Characters.Toolbot.asset"; public static string SkillsToolbotBuzzsaw = "RoR2/Base/Toolbot/Skills.Toolbot.Buzzsaw.asset"; public static string SkillsToolbotGrenade = "RoR2/Base/Toolbot/Skills.Toolbot.Grenade.asset"; public static string SkillsToolbotSpecialAlt = "RoR2/Base/Toolbot/Skills.Toolbot.SpecialAlt.asset"; public static string SkinsToolbotAlt1 = "RoR2/Base/Toolbot/Skins.Toolbot.Alt1.asset"; public static string SkinsToolbotAlt2 = "RoR2/Base/Toolbot/Skins.Toolbot.Alt2.asset"; public static string SkinsToolbotAltSkinVulture = "RoR2/Base/Toolbot/Skins.Toolbot.AltSkinVulture.asset"; public static string CharactersTreebot = "RoR2/Base/Treebot/Characters.Treebot.asset"; public static string SkillsTreebotBarrage = "RoR2/Base/Treebot/Skills.Treebot.Barrage.asset"; public static string SkillsTreebotPlantSonicBoom = "RoR2/Base/Treebot/Skills.Treebot.PlantSonicBoom.asset"; public static string SkillsTreebotSpecialAlt1 = "RoR2/Base/Treebot/Skills.Treebot.SpecialAlt1.asset"; public static string SkinsTreebotAlt1 = "RoR2/Base/Treebot/Skins.Treebot.Alt1.asset"; public static string SkinsTreebotAlt2 = "RoR2/Base/Treebot/Skins.Treebot.Alt2.asset"; public static string SkinsTreebotAltSkinSolus = "RoR2/Base/Treebot/Skins.Treebot.AltSkinSolus.asset"; public static string LogsVagrantBody0 = "RoR2/Base/Vagrant/Logs.VagrantBody.0.asset"; public static string LogsVultureBody0 = "RoR2/Base/Vulture/Logs.VultureBody.0.asset"; public static string LogsWispBody0 = "RoR2/Base/Wisp/Logs.WispBody.0.asset"; public static string ItemsBFG = "RoR2/Base/BFG/Items.BFG.asset"; public static string ItemsBurnNearby = "RoR2/Base/BurnNearby/Items.BurnNearby.asset"; public static string ItemsCleanse = "RoR2/Base/Cleanse/Items.Cleanse.asset"; public static string ItemsDeathProjectile = "RoR2/Base/DeathProjectile/Items.DeathProjectile.asset"; public static string ItemsDroneBackup = "RoR2/Base/DroneBackup/Items.DroneBackup.asset"; public static string ItemsGateway = "RoR2/Base/Gateway/Items.Gateway.asset"; public static string ItemsGoldGat = "RoR2/Base/GoldGat/Items.GoldGat.asset"; public static string ItemsLightning = "RoR2/Base/Lightning/Items.Lightning.asset"; public static string ItemsMeteor = "RoR2/Base/Meteor/Items.Meteor.asset"; public static string ItemsPassiveHealing = "RoR2/Base/PassiveHealing/Items.PassiveHealing.asset"; public static string ItemsRecycle = "RoR2/Base/Recycle/Items.Recycle.asset"; public static string ItemsScanner = "RoR2/Base/Scanner/Items.Scanner.asset"; public static string ItemsTonic = "RoR2/Base/Tonic/Items.Tonic.asset"; public static string ItemsAttackSpeedOnCrit = "RoR2/Base/AttackSpeedOnCrit/Items.AttackSpeedOnCrit.asset"; public static string ItemsAutoCastEquipment = "RoR2/Base/AutoCastEquipment/Items.AutoCastEquipment.asset"; public static string ItemsBear = "RoR2/Base/Bear/Items.Bear.asset"; public static string ItemsBossDamageBonus = "RoR2/Base/BossDamageBonus/Items.BossDamageBonus.asset"; public static string ItemsBounceNearby = "RoR2/Base/BounceNearby/Items.BounceNearby.asset"; public static string ItemsClover = "RoR2/Base/Clover/Items.Clover.asset"; public static string ItemsCrippleWardOnLevel = "RoR2/Base/CrippleWardOnLevel/Items.CrippleWardOnLevel.asset"; public static string ItemsCrowbar = "RoR2/Base/Crowbar/Items.Crowbar.asset"; public static string ItemsElementalRings = "RoR2/Base/ElementalRings/Items.ElementalRings.asset"; public static string ItemsEnergizedOnEquipmentUse = "RoR2/Base/EnergizedOnEquipmentUse/Items.EnergizedOnEquipmentUse.asset"; public static string ItemsEquipmentMagazine = "RoR2/Base/EquipmentMagazine/Items.EquipmentMagazine.asset"; public static string ItemsExecuteLowHealthElite = "RoR2/Base/ExecuteLowHealthElite/Items.ExecuteLowHealthElite.asset"; public static string ItemsExtraLife = "RoR2/Base/ExtraLife/Items.ExtraLife.asset"; public static string ItemsFirework = "RoR2/Base/Firework/Items.Firework.asset"; public static string ItemsFocusConvergence = "RoR2/Base/FocusConvergence/Items.FocusConvergence.asset"; public static string ItemsHealOnCrit = "RoR2/Base/HealOnCrit/Items.HealOnCrit.asset"; public static string ItemsHoof = "RoR2/Base/Hoof/Items.Hoof.asset"; public static string ItemsIncreaseHealing = "RoR2/Base/IncreaseHealing/Items.IncreaseHealing.asset"; public static string ItemsInfusion = "RoR2/Base/Infusion/Items.Infusion.asset"; public static string ItemsJumpBoost = "RoR2/Base/JumpBoost/Items.JumpBoost.asset"; public static string ItemsKillEliteFrenzy = "RoR2/Base/KillEliteFrenzy/Items.KillEliteFrenzy.asset"; public static string ItemsLunarBadLuck = "RoR2/Base/LunarBadLuck/Items.LunarBadLuck.asset"; public static string ItemsLunarSkillReplacements = "RoR2/Base/LunarSkillReplacements/Items.LunarSkillReplacements.asset"; public static string ItemsMedkit = "RoR2/Base/Medkit/Items.Medkit.asset"; public static string ItemsNovaOnHeal = "RoR2/Base/NovaOnHeal/Items.NovaOnHeal.asset"; public static string ItemsSecondarySkillMagazine = "RoR2/Base/SecondarySkillMagazine/Items.SecondarySkillMagazine.asset"; public static string ItemsShockNearby = "RoR2/Base/ShockNearby/Items.ShockNearby.asset"; public static string ItemsSquid = "RoR2/Base/Squid/Items.Squid.asset"; public static string ItemsTalisman = "RoR2/Base/Talisman/Items.Talisman.asset"; public static string ItemsTreasureCache = "RoR2/Base/TreasureCache/Items.TreasureCache.asset"; public static string ItemsWarCryOnMultiKill = "RoR2/Base/WarCryOnMultiKill/Items.WarCryOnMultiKill.asset"; public static string LogsStagesarena = "RoR2/Base/arena/Logs.Stages.arena.asset"; public static string LogsStagesartifactworld = "RoR2/Base/artifactworld/Logs.Stages.artifactworld.asset"; public static string LogsStagesbazaar = "RoR2/Base/bazaar/Logs.Stages.bazaar.asset"; public static string LogsStagesblackbeach = "RoR2/Base/blackbeach/Logs.Stages.blackbeach.asset"; public static string NewtStatueblackbeach0 = "RoR2/Base/blackbeach/NewtStatue.blackbeach.0.asset"; public static string NewtStatueblackbeach1 = "RoR2/Base/blackbeach/NewtStatue.blackbeach.1.asset"; public static string NewtStatueblackbeach2 = "RoR2/Base/blackbeach/NewtStatue.blackbeach.2.asset"; public static string NewtStatueblackbeach20 = "RoR2/Base/blackbeach2/NewtStatue.blackbeach2.0.asset"; public static string NewtStatueblackbeach21 = "RoR2/Base/blackbeach2/NewtStatue.blackbeach2.1.asset"; public static string NewtStatueblackbeach22 = "RoR2/Base/blackbeach2/NewtStatue.blackbeach2.2.asset"; public static string LogsStagesdampcavesimple = "RoR2/Base/dampcavesimple/Logs.Stages.dampcavesimple.asset"; public static string NewtStatuedampcavesimple0 = "RoR2/Base/dampcavesimple/NewtStatue.dampcavesimple.0.asset"; public static string NewtStatuedampcavesimple1 = "RoR2/Base/dampcavesimple/NewtStatue.dampcavesimple.1.asset"; public static string NewtStatuedampcavesimple2 = "RoR2/Base/dampcavesimple/NewtStatue.dampcavesimple.2.asset"; public static string LogsStagesfoggyswamp = "RoR2/Base/foggyswamp/Logs.Stages.foggyswamp.asset"; public static string NewtStatuefoggyswamp0 = "RoR2/Base/foggyswamp/NewtStatue.foggyswamp.0.asset"; public static string NewtStatuefoggyswamp1 = "RoR2/Base/foggyswamp/NewtStatue.foggyswamp.1.asset"; public static string NewtStatuefoggyswamp2 = "RoR2/Base/foggyswamp/NewtStatue.foggyswamp.2.asset"; public static string LogsStagesfrozenwall = "RoR2/Base/frozenwall/Logs.Stages.frozenwall.asset"; public static string NewtStatuefrozenwall0 = "RoR2/Base/frozenwall/NewtStatue.frozenwall.0.asset"; public static string NewtStatuefrozenwall1 = "RoR2/Base/frozenwall/NewtStatue.frozenwall.1.asset"; public static string NewtStatuefrozenwall2 = "RoR2/Base/frozenwall/NewtStatue.frozenwall.2.asset"; public static string LogsStagesgoldshores = "RoR2/Base/goldshores/Logs.Stages.goldshores.asset"; public static string LogsStagesgolemplains = "RoR2/Base/golemplains/Logs.Stages.golemplains.asset"; public static string NewtStatuegolemplains0 = "RoR2/Base/golemplains/NewtStatue.golemplains.0.asset"; public static string NewtStatuegolemplains1 = "RoR2/Base/golemplains/NewtStatue.golemplains.1.asset"; public static string NewtStatuegolemplains2 = "RoR2/Base/golemplains/NewtStatue.golemplains.2.asset"; public static string NewtStatuegolemplains20 = "RoR2/Base/golemplains2/NewtStatue.golemplains2.0.asset"; public static string NewtStatuegolemplains21 = "RoR2/Base/golemplains2/NewtStatue.golemplains2.1.asset"; public static string NewtStatuegolemplains22 = "RoR2/Base/golemplains2/NewtStatue.golemplains2.2.asset"; public static string NewtStatuegolemplains23 = "RoR2/Base/golemplains2/NewtStatue.golemplains2.3.asset"; public static string LogsStagesgoolake = "RoR2/Base/goolake/Logs.Stages.goolake.asset"; public static string NewtStatuegoolake0 = "RoR2/Base/goolake/NewtStatue.goolake.0.asset"; public static string NewtStatuegoolake1 = "RoR2/Base/goolake/NewtStatue.goolake.1.asset"; public static string NewtStatuegoolake2 = "RoR2/Base/goolake/NewtStatue.goolake.2.asset"; public static string LogsStageslimbo = "RoR2/Base/limbo/Logs.Stages.limbo.asset"; public static string LogsStagesmoon2 = "RoR2/Base/moon2/Logs.Stages.moon2.asset"; public static string LogsStagesmysteryspace = "RoR2/Base/mysteryspace/Logs.Stages.mysteryspace.asset"; public static string LogsStagesrootjungle = "RoR2/Base/rootjungle/Logs.Stages.rootjungle.asset"; public static string NewtStatuerootjungle0 = "RoR2/Base/rootjungle/NewtStatue.rootjungle.0.asset"; public static string NewtStatuerootjungle1 = "RoR2/Base/rootjungle/NewtStatue.rootjungle.1.asset"; public static string NewtStatuerootjungle2 = "RoR2/Base/rootjungle/NewtStatue.rootjungle.2.asset"; public static string LogsStagesshipgraveyard = "RoR2/Base/shipgraveyard/Logs.Stages.shipgraveyard.asset"; public static string NewtStatueshipgraveyard0 = "RoR2/Base/shipgraveyard/NewtStatue.shipgraveyard.0.asset"; public static string NewtStatueshipgraveyard1 = "RoR2/Base/shipgraveyard/NewtStatue.shipgraveyard.1.asset"; public static string NewtStatueshipgraveyard2 = "RoR2/Base/shipgraveyard/NewtStatue.shipgraveyard.2.asset"; public static string LogsStagesskymeadow = "RoR2/Base/skymeadow/Logs.Stages.skymeadow.asset"; public static string NewtStatueskymeadow0 = "RoR2/Base/skymeadow/NewtStatue.skymeadow.0.asset"; public static string NewtStatueskymeadow1 = "RoR2/Base/skymeadow/NewtStatue.skymeadow.1.asset"; public static string NewtStatueskymeadow2 = "RoR2/Base/skymeadow/NewtStatue.skymeadow.2.asset"; public static string NewtStatueskymeadow3 = "RoR2/Base/skymeadow/NewtStatue.skymeadow.3.asset"; public static string NewtStatueskymeadow4 = "RoR2/Base/skymeadow/NewtStatue.skymeadow.4.asset"; public static string LogsStageswispgraveyard = "RoR2/Base/wispgraveyard/Logs.Stages.wispgraveyard.asset"; public static string NewtStatuewispgraveyard0 = "RoR2/Base/wispgraveyard/NewtStatue.wispgraveyard.0.asset"; public static string NewtStatuewispgraveyard1 = "RoR2/Base/wispgraveyard/NewtStatue.wispgraveyard.1.asset"; public static string NewtStatuewispgraveyard2 = "RoR2/Base/wispgraveyard/NewtStatue.wispgraveyard.2.asset"; public static string ArtifactsDelusion = "RoR2/CU8/Artifacts.Delusion.asset"; public static string ArtifactsDevotion = "RoR2/CU8/Artifacts.Devotion.asset"; public static string itemsLemurianHarness = "RoR2/CU8/Harness/items.LemurianHarness.asset"; public static string LogsAcidLarva = "RoR2/DLC1/AcidLarva/Logs.AcidLarva.asset"; public static string LogsAssassin2Body = "RoR2/DLC1/Assassin2/Logs.Assassin2Body.asset"; public static string LogsClayGrenadierBody = "RoR2/DLC1/ClayGrenadier/Logs.ClayGrenadierBody.asset"; public static string SkinsCommandoAltDLC1 = "RoR2/DLC1/Skins.Commando.AltDLC1.asset"; public static string LogsFlyingVerminBody0 = "RoR2/DLC1/FlyingVermin/Logs.FlyingVerminBody.0.asset"; public static string LogsGupBody0 = "RoR2/DLC1/Gup/Logs.GupBody.0.asset"; public static string LogsMegaConstructBody = "RoR2/DLC1/MajorAndMinorConstruct/Logs.MegaConstructBody.asset"; public static string LogsMinorConstructBody = "RoR2/DLC1/MajorAndMinorConstruct/Logs.MinorConstructBody.asset"; public static string SkillsRailgunnerSecondaryAlt1 = "RoR2/DLC1/Railgunner/Skills.Railgunner.SecondaryAlt1.asset"; public static string SkillsRailgunnerSpecialAlt1 = "RoR2/DLC1/Railgunner/Skills.Railgunner.SpecialAlt1.asset"; public static string SkillsRailgunnerUtilityAlt1 = "RoR2/DLC1/Railgunner/Skills.Railgunner.UtilityAlt1.asset"; public static string SkinsRailGunnerAlt1 = "RoR2/DLC1/Railgunner/Skins.RailGunner.Alt1.asset"; public static string SkinsRailGunnerAlt2 = "RoR2/DLC1/Railgunner/Skins.RailGunner.Alt2.asset"; public static string LogsVerminBody0 = "RoR2/DLC1/Vermin/Logs.VerminBody.0.asset"; public static string LogsVoidBarnacleBody = "RoR2/DLC1/VoidBarnacle/Logs.VoidBarnacleBody.asset"; public static string LogsVoidJailerBody = "RoR2/DLC1/VoidJailer/Logs.VoidJailerBody.asset"; public static string LogsVoidMegaCrab = "RoR2/DLC1/VoidMegaCrab/Logs.VoidMegaCrab.asset"; public static string LogsMiniVoidRaidCrab = "RoR2/DLC1/VoidRaidCrab/Logs.MiniVoidRaidCrab.asset"; public static string CharactersVoidSurvivor = "RoR2/DLC1/VoidSurvivor/Characters.VoidSurvivor.asset"; public static string SkinsVoidSurvivorAlt1 = "RoR2/DLC1/VoidSurvivor/Skins.VoidSurvivor.Alt1.asset"; public static string SkinsVoidSurvivorAlt2 = "RoR2/DLC1/VoidSurvivor/Skins.VoidSurvivor.Alt2.asset"; public static string LogsVoidInfestorBody = "RoR2/DLC1/EliteVoid/Logs.VoidInfestorBody.asset"; public static string LogsStagesancientloft = "RoR2/DLC1/ancientloft/Logs.Stages.ancientloft.asset"; public static string NewtStatueancientloft0 = "RoR2/DLC1/ancientloft/NewtStatue.ancientloft.0.asset"; public static string NewtStatueancientloft1 = "RoR2/DLC1/ancientloft/NewtStatue.ancientloft.1.asset"; public static string NewtStatueancientloft2 = "RoR2/DLC1/ancientloft/NewtStatue.ancientloft.2.asset"; public static string LogsStagessnowyforest = "RoR2/DLC1/snowyforest/Logs.Stages.snowyforest.asset"; public static string NewtStatuesnowyforest0 = "RoR2/DLC1/snowyforest/NewtStatue.snowyforest.0.asset"; public static string NewtStatuesnowyforest1 = "RoR2/DLC1/snowyforest/NewtStatue.snowyforest.1.asset"; public static string NewtStatuesnowyforest2 = "RoR2/DLC1/snowyforest/NewtStatue.snowyforest.2.asset"; public static string LogsStagessulfurpools = "RoR2/DLC1/sulfurpools/Logs.Stages.sulfurpools.asset"; public static string NewtStatuesulfurpools0 = "RoR2/DLC1/sulfurpools/NewtStatue.sulfurpools.0.asset"; public static string NewtStatuesulfurpools1 = "RoR2/DLC1/sulfurpools/NewtStatue.sulfurpools.1.asset"; public static string NewtStatuesulfurpools2 = "RoR2/DLC1/sulfurpools/NewtStatue.sulfurpools.2.asset"; public static string LogsStagesvoidraid = "RoR2/DLC1/voidraid/Logs.Stages.voidraid.asset"; public static string LogsStagesvoidstage = "RoR2/DLC1/voidstage/Logs.Stages.voidstage.asset"; public static string ArtifactsRebirth = "RoR2/DLC2/Artifacts.Rebirth.asset"; public static string CharactersChef = "RoR2/DLC2/Chef/Characters.Chef.asset"; public static string SkillsChefIceBox = "RoR2/DLC2/Chef/Skills.Chef.IceBox.asset"; public static string SkillsChefYesChef = "RoR2/DLC2/Chef/Skills.Chef.YesChef.asset"; public static string SkillsChefOilSpill = "RoR2/DLC2/Chef/Skills.Chef.OilSpill.asset"; public static string SkinsChefAlt1 = "RoR2/DLC2/Chef/Skins.Chef.Alt1.asset"; public static string LogsChildBody0 = "RoR2/DLC2/Child/Logs.ChildBody.0.asset"; public static string CharactersFalseSon = "RoR2/DLC2/FalseSon/Characters.FalseSon.asset"; public static string SkillsFalseSonLunarStake = "RoR2/DLC2/FalseSon/Skills.FalseSon.LunarStake.asset"; public static string SkillsFalseSonLaserBurst = "RoR2/DLC2/FalseSon/Skills.FalseSon.LaserBurst.asset"; public static string SkillsFalseSonMeridiansWill = "RoR2/DLC2/FalseSon/Skills.FalseSon.MeridiansWill.asset"; public static string SkinsFalseSonAlt1 = "RoR2/DLC2/FalseSon/Skins.FalseSon.Alt1.asset"; public static string LogsFalseSonBossBody0 = "RoR2/DLC2/FalseSonBoss/Logs.FalseSonBossBody.0.asset"; public static string LogsHalcyoniteBody0 = "RoR2/DLC2/Halcyonite/Logs.HalcyoniteBody.0.asset"; public static string LogsScorchlingBody0 = "RoR2/DLC2/Scorchling/Logs.ScorchlingBody.0.asset"; public static string SkillsSeekerReprieve = "RoR2/DLC2/Seeker/Skills.Seeker.Reprieve.asset"; public static string SkillsSeekerSoulSearch = "RoR2/DLC2/Seeker/Skills.Seeker.SoulSearch.asset"; public static string SkillsSeekerPalmBlast = "RoR2/DLC2/Seeker/Skills.Seeker.PalmBlast.asset"; public static string SkinsSeekerAlt1 = "RoR2/DLC2/Seeker/Skins.Seeker.Alt1.asset"; public static string ItemsHealAndRevive = "RoR2/DLC2/HealAndRevive/Items.HealAndRevive.asset"; public static string ItemsAttackSpeedPerNearbyAllyOrEnemy = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/Items.AttackSpeedPerNearbyAllyOrEnemy.asset"; public static string itemsBarrageOnBoss = "RoR2/DLC2/Items/BarrageOnBoss/items.BarrageOnBoss.asset"; public static string itemsDelayedDamage = "RoR2/DLC2/Items/DelayedDamage/items.DelayedDamage.asset"; public static string itemsExtraStatsOnLevelUp = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/items.ExtraStatsOnLevelUp.asset"; public static string itemsIncreaseDamageOnMultiKill = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/items.IncreaseDamageOnMultiKill.asset"; public static string itemsIncreasePrimaryDamage = "RoR2/DLC2/Items/IncreasePrimaryDamage/items.IncreasePrimaryDamage.asset"; public static string ItemsKnockBackHitEnemies = "RoR2/DLC2/Items/KnockBackHitEnemies/Items.KnockBackHitEnemies.asset"; public static string ItemsSaleStar = "RoR2/DLC2/Items/LowerPricedChests/Items.SaleStar.asset"; public static string itemsMeteorAttackOnHighDamage = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/items.MeteorAttackOnHighDamage.asset"; public static string itemsOnLevelUpFreeUnlock = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/items.OnLevelUpFreeUnlock.asset"; public static string ItemsElusiveAntlers = "RoR2/DLC2/Items/SpeedBoostPickup/Items.ElusiveAntlers.asset"; public static string itemsTeleportOnLowHealth = "RoR2/DLC2/Items/TeleportOnLowHealth/items.TeleportOnLowHealth.asset"; public static string LogsStagesartifactworld01 = "RoR2/DLC2/artifactworld01/Logs.Stages.artifactworld01.asset"; public static string LogsStagesartifactworld02 = "RoR2/DLC2/artifactworld02/Logs.Stages.artifactworld02.asset"; public static string LogsStagesartifactworld7 = "RoR2/DLC2/artifactworld03/Logs.Stages.artifactworld.asset"; public static string LogsStagesartifactworld03 = "RoR2/DLC2/artifactworld03/Logs.Stages.artifactworld03.asset"; public static string LogsStageshabitat = "RoR2/DLC2/habitat/Logs.Stages.habitat.asset"; public static string NewtStatuehabitat0 = "RoR2/DLC2/habitat/NewtStatue.habitat.0.asset"; public static string NewtStatuehabitat1 = "RoR2/DLC2/habitat/NewtStatue.habitat.1.asset"; public static string NewtStatuehabitat2 = "RoR2/DLC2/habitat/NewtStatue.habitat.2.asset"; public static string LogsStageshabitatfall = "RoR2/DLC2/habitatfall/Logs.Stages.habitatfall.asset"; public static string NewtStatuehabitatfall0 = "RoR2/DLC2/habitatfall/NewtStatue.habitatfall.0.asset"; public static string NewtStatuehabitatfall1 = "RoR2/DLC2/habitatfall/NewtStatue.habitatfall.1.asset"; public static string NewtStatuehabitatfall2 = "RoR2/DLC2/habitatfall/NewtStatue.habitatfall.2.asset"; public static string LogsStageshelminthroost = "RoR2/DLC2/helminthroost/Logs.Stages.helminthroost.asset"; public static string NewtStatuehelminthroost0 = "RoR2/DLC2/helminthroost/NewtStatue.helminthroost.0.asset"; public static string NewtStatuehelminthroost1 = "RoR2/DLC2/helminthroost/NewtStatue.helminthroost.1.asset"; public static string NewtStatuehelminthroost2 = "RoR2/DLC2/helminthroost/NewtStatue.helminthroost.2.asset"; public static string NewtStatuehelminthroost3 = "RoR2/DLC2/helminthroost/NewtStatue.helminthroost.3.asset"; public static string NewtStatuehelminthroost4 = "RoR2/DLC2/helminthroost/NewtStatue.helminthroost.4.asset"; public static string NewtStatuehelminthroost5 = "RoR2/DLC2/helminthroost/NewtStatue.helminthroost.5.asset"; public static string NewtStatuehelminthroost6 = "RoR2/DLC2/helminthroost/NewtStatue.helminthroost.6.asset"; public static string LogsStageslakesnight = "RoR2/DLC2/lakes/Logs.Stages.lakesnight.asset"; public static string LogsStageslakes = "RoR2/DLC2/lakes/Logs.Stages.lakes.asset"; public static string NewtStatuelakes0 = "RoR2/DLC2/lakes/NewtStatue.lakes.0.asset"; public static string NewtStatuelakes1 = "RoR2/DLC2/lakes/NewtStatue.lakes.1.asset"; public static string NewtStatuelakes2 = "RoR2/DLC2/lakes/NewtStatue.lakes.2.asset"; public static string LogsStageslakesnight36 = "RoR2/DLC2/lakesnight/Logs.Stages.lakesnight.asset"; public static string NewtStatuelakesnight0 = "RoR2/DLC2/lakesnight/NewtStatue.lakesnight.0.asset"; public static string NewtStatuelakesnight1 = "RoR2/DLC2/lakesnight/NewtStatue.lakesnight.1.asset"; public static string LogsStageslemuriantemple = "RoR2/DLC2/lemuriantemple/Logs.Stages.lemuriantemple.asset"; public static string NewtStatuelemuriantemple0 = "RoR2/DLC2/lemuriantemple/NewtStatue.lemuriantemple.0.asset"; public static string NewtStatuelemuriantemple1 = "RoR2/DLC2/lemuriantemple/NewtStatue.lemuriantemple.1.asset"; public static string NewtStatuelemuriantemple2 = "RoR2/DLC2/lemuriantemple/NewtStatue.lemuriantemple.2.asset"; public static string NewtStatuelemuriantemple3 = "RoR2/DLC2/lemuriantemple/NewtStatue.lemuriantemple.3.asset"; public static string LogsStagesmeridian = "RoR2/DLC2/meridian/Logs.Stages.meridian.asset"; public static string LogsStagesvilage = "RoR2/DLC2/village/Logs.Stages.vilage.asset"; public static string LogsStagesvillage = "RoR2/DLC2/village/Logs.Stages.village.asset"; public static string NewtStatuevillage0 = "RoR2/DLC2/village/NewtStatue.village.0.asset"; public static string NewtStatuevillage1 = "RoR2/DLC2/village/NewtStatue.village.1.asset"; public static string NewtStatuevillage2 = "RoR2/DLC2/village/NewtStatue.village.2.asset"; public static string NewtStatuevillage3 = "RoR2/DLC2/village/NewtStatue.village.3.asset"; public static string LogsStagesvilagenight = "RoR2/DLC2/villagenight/Logs.Stages.vilagenight.asset"; public static string LogsStagesvillagenight = "RoR2/DLC2/villagenight/Logs.Stages.villagenight.asset"; public static string NewtStatuevillagenight0 = "RoR2/DLC2/villagenight/NewtStatue.villagenight.0.asset"; public static string NewtStatuevillagenight1 = "RoR2/DLC2/villagenight/NewtStatue.villagenight.1.asset"; public static string NewtStatuevillagenight2 = "RoR2/DLC2/villagenight/NewtStatue.villagenight.2.asset"; public static string NewtStatuevillagenight3 = "RoR2/DLC2/villagenight/NewtStatue.villagenight.3.asset"; public static string ArtifactsPrestige = "RoR2/DLC3/Artifacts.Prestige.asset"; public static string LogsDefectiveUnitBody0 = "RoR2/DLC3/DefectiveUnit/Logs.DefectiveUnitBody.0.asset"; public static string SkinsDrifterAlt1 = "RoR2/DLC3/Drifter/Skins.Drifter.Alt1.asset"; public static string CharactersDrifter = "RoR2/DLC3/Drifter/Characters.Drifter.asset"; public static string SkillsDrifterJunkCube = "RoR2/DLC3/Drifter/Skills.Drifter.JunkCube.asset"; public static string SkillsDrifterTinker = "RoR2/DLC3/Drifter/Skills.Drifter.Tinker.asset"; public static string SkillsDrifterTornado = "RoR2/DLC3/Drifter/Skills.Drifter.Tornado.asset"; public static string SkillsDroneTechDroneHauler = "RoR2/DLC3/Drone Tech/Skills.DroneTech.DroneHauler.asset"; public static string SkillsDroneTechCommandHeadbutt = "RoR2/DLC3/Drone Tech/Skills.DroneTech.CommandHeadbutt.asset"; public static string SkillsDroneTechDroneBallShootable = "RoR2/DLC3/Drone Tech/Skills.DroneTech.DroneBallShootable.asset"; public static string SkillsDroneTechShieldFormation = "RoR2/DLC3/Drone Tech/Skills.DroneTech.ShieldFormation.asset"; public static string SkinsDroneTechAlt1 = "RoR2/DLC3/Drone Tech/Skins.DroneTech.Alt1.asset"; public static string LogsExtractorUnitBody0 = "RoR2/DLC3/ExtractorUnit/Logs.ExtractorUnitBody.0.asset"; public static string LogsIronHaulerBody0 = "RoR2/DLC3/IronHauler/Logs.IronHaulerBody.0.asset"; public static string LogsMinePodBody = "RoR2/DLC3/MinePod/Logs.MinePodBody.asset"; public static string LogsSolusAmalgamatorBody0 = "RoR2/DLC3/SolusAmalgamator/Logs.SolusAmalgamatorBody.0.asset"; public static string LogSolusHeart = "RoR2/DLC3/SolusHeart/Log.SolusHeart.asset"; public static string LogsSolusWingBody0 = "RoR2/DLC3/SolusWing/Logs.SolusWingBody.0.asset"; public static string LogsTankerBody0 = "RoR2/DLC3/Tanker/Logs.TankerBody.0.asset"; public static string LogsVultureHunter0 = "RoR2/DLC3/VultureHunter/Logs.VultureHunter.0.asset"; public static string LogsWorkerUnitBody0 = "RoR2/DLC3/WorkerUnit/Logs.WorkerUnitBody.0.asset"; public static string LogsStagesComputationalExchange = "RoR2/DLC3/computationalexchange/Logs.Stages.ComputationalExchange.asset"; public static string LogsStagesConduitCanyon = "RoR2/DLC3/conduitcanyon/Logs.Stages.ConduitCanyon.asset"; public static string LogsStagesIronAlluvium = "RoR2/DLC3/ironalluvium/Logs.Stages.IronAlluvium.asset"; public static string NewtStatueironalluvium0 = "RoR2/DLC3/ironalluvium/NewtStatue.ironalluvium.0.asset"; public static string NewtStatueironalluvium1 = "RoR2/DLC3/ironalluvium/NewtStatue.ironalluvium.1.asset"; public static string NewtStatueironalluvium2 = "RoR2/DLC3/ironalluvium/NewtStatue.ironalluvium.2.asset"; public static string LogsStagesironalluvium2 = "RoR2/DLC3/ironalluvium2/Logs.Stages.ironalluvium2.asset"; public static string NewtStatueironalluvium20 = "RoR2/DLC3/ironalluvium2/NewtStatue.ironalluvium2.0.asset"; public static string NewtStatueironalluvium21 = "RoR2/DLC3/ironalluvium2/NewtStatue.ironalluvium2.1.asset"; public static string NewtStatueironalluvium22 = "RoR2/DLC3/ironalluvium2/NewtStatue.ironalluvium2.2.asset"; public static string LogsStagesNest = "RoR2/DLC3/nest/Logs.Stages.Nest.asset"; public static string NewtStatuenest0 = "RoR2/DLC3/nest/NewtStatue.nest.0.asset"; public static string NewtStatuenest1 = "RoR2/DLC3/nest/NewtStatue.nest.1.asset"; public static string NewtStatuenest2 = "RoR2/DLC3/nest/NewtStatue.nest.2.asset"; public static string LogsStagesRepurposedCrater = "RoR2/DLC3/repurposedcrater/Logs.Stages.RepurposedCrater.asset"; public static string NewtStatuerepurposedcrater0 = "RoR2/DLC3/repurposedcrater/NewtStatue.repurposedcrater.0.asset"; public static string NewtStatuerepurposedcrater1 = "RoR2/DLC3/repurposedcrater/NewtStatue.repurposedcrater.1.asset"; public static string NewtStatuerepurposedcrater2 = "RoR2/DLC3/repurposedcrater/NewtStatue.repurposedcrater.2.asset"; public static string LogsStagesSolusWeb = "RoR2/DLC3/solusweb/Logs.Stages.SolusWeb.asset"; public static string LogsStagesSolutionalHaunt = "RoR2/DLC3/solutionalhaunt/Logs.Stages.SolutionalHaunt.asset"; public static string LogsAncientWispBody0 = "RoR2/Junk/AncientWisp/Logs.AncientWispBody.0.asset"; public static string CharactersBandit = "RoR2/Junk/Bandit/Characters.Bandit.asset"; public static string LogsClayBody0 = "RoR2/Junk/ClayMan/Logs.ClayBody.0.asset"; public static string CharactersHuntress = "RoR2/Junk/Huntress/Characters.Huntress.asset"; public static string LogsShopkeeperBody0 = "RoR2/Junk/Shopkeeper/Logs.ShopkeeperBody.0.asset"; public static string ItemsRepeatHeal = "RoR2/Junk/RepeatHeal/Items.RepeatHeal.asset"; public static string ItemsShieldOnly = "RoR2/Junk/ShieldOnly/Items.ShieldOnly.asset"; public static string NewtStatuebazaar0 = "RoR2/Junk/bazaar/NewtStatue.bazaar.0.asset"; public static string NewtStatuebazaar1 = "RoR2/Junk/bazaar/NewtStatue.bazaar.1.asset"; public static string NewtStatuebazaar2 = "RoR2/Junk/bazaar/NewtStatue.bazaar.2.asset"; public static string ShopBonusLunar1 = "RoR2/Junk/bazaar/Shop.BonusLunar.1.asset"; public static string ShopBonusLunar2 = "RoR2/Junk/bazaar/Shop.BonusLunar.2.asset"; public static string ShopBonusLunar3 = "RoR2/Junk/bazaar/Shop.BonusLunar.3.asset"; public static string itemsAchievementRewardTest = "RoR2/AchievementRewardTest/items.AchievementRewardTest.asset"; } public static class ArtifactDef { public static string Bomb = "RoR2/Base/Bomb/Bomb.asset"; public static string Command = "RoR2/Base/Command/Command.asset"; public static string EliteOnly = "RoR2/Base/EliteOnly/EliteOnly.asset"; public static string Enigma = "RoR2/Base/Enigma/Enigma.asset"; public static string FriendlyFire = "RoR2/Base/FriendlyFire/FriendlyFire.asset"; public static string Glass = "RoR2/Base/Glass/Glass.asset"; public static string MixEnemy = "RoR2/Base/MixEnemy/MixEnemy.asset"; public static string MonsterTeamGainsItems = "RoR2/Base/MonsterTeamGainsItems/MonsterTeamGainsItems.asset"; public static string RandomSurvivorOnRespawn = "RoR2/Base/RandomSurvivorOnRespawn/RandomSurvivorOnRespawn.asset"; public static string Sacrifice = "RoR2/Base/Sacrifice/Sacrifice.asset"; public static string ShadowClone = "RoR2/Base/ShadowClone/ShadowClone.asset"; public static string SingleMonsterType = "RoR2/Base/SingleMonsterType/SingleMonsterType.asset"; public static string Swarms = "RoR2/Base/Swarms/Swarms.asset"; public static string TeamDeath = "RoR2/Base/TeamDeath/TeamDeath.asset"; public static string WeakAssKnees = "RoR2/Base/WeakAssKnees/WeakAssKnees.asset"; public static string WispOnDeath = "RoR2/Base/WispOnDeath/WispOnDeath.asset"; public static string Delusion = "RoR2/CU8/Delusion.asset"; public static string Devotion = "RoR2/CU8/Devotion.asset"; public static string Rebirth = "RoR2/DLC2/Rebirth.asset"; public static string Prestige = "RoR2/DLC3/Prestige.asset"; } public static class ExplicitPickupDropTable { public static string CommandArtifactExcludedItems = "RoR2/Base/Command/CommandArtifactExcludedItems.asset"; public static string dtBossBeetleQueen = "RoR2/Base/BeetleQueen/dtBossBeetleQueen.asset"; public static string dtBossClayBoss = "RoR2/Base/ClayBoss/dtBossClayBoss.asset"; public static string dtBossElectricWorm = "RoR2/Base/ElectricWorm/dtBossElectricWorm.asset"; public static string dtBossGrandParent = "RoR2/Base/Grandparent/dtBossGrandParent.asset"; public static string dtBossGravekeeper = "RoR2/Base/Gravekeeper/dtBossGravekeeper.asset"; public static string dtBossImpBoss = "RoR2/Base/ImpBoss/dtBossImpBoss.asset"; public static string dtBossMagmaWorm = "RoR2/Base/MagmaWorm/dtBossMagmaWorm.asset"; public static string dtBossRoboBallBoss = "RoR2/Base/RoboBallBoss/dtBossRoboBallBoss.asset"; public static string dtBossTitan = "RoR2/Base/Titan/dtBossTitan.asset"; public static string dtBossTitanGold = "RoR2/Base/Titan/dtBossTitanGold.asset"; public static string dtBossVagrant = "RoR2/Base/Vagrant/dtBossVagrant.asset"; public static string pdtUnscrappableItems = "RoR2/Base/Scrapper/pdtUnscrappableItems.asset"; public static string dtPearls = "RoR2/Base/ShrineCleanse/dtPearls.asset"; public static string dtArtifactKey = "RoR2/Base/artifactworld/dtArtifactKey.asset"; public static string dtFireRing = "RoR2/Base/goolake/dtFireRing.asset"; public static string dtIceRing = "RoR2/Base/goolake/dtIceRing.asset"; public static string dtBossMegaConstruct = "RoR2/DLC1/MajorAndMinorConstruct/dtBossMegaConstruct.asset"; public static string dtBossVoidMegaCrab = "RoR2/DLC1/VoidMegaCrab/dtBossVoidMegaCrab.asset"; public static string dtVoidCoin = "RoR2/DLC1/Common/DropTables/dtVoidCoin.asset"; public static string dtArtifactKey4 = "RoR2/DLC2/artifactworld03/dtArtifactKey.asset"; public static string ExcludedItemsCleanupDroneDropTable = "RoR2/DLC3/Drones/ExcludedItemsCleanupDroneDropTable.asset"; public static string dtBossSolusAmalgamator = "RoR2/DLC3/SolusAmalgamator/dtBossSolusAmalgamator.asset"; public static string dtBossVultureHunter = "RoR2/DLC3/VultureHunter/dtBossVultureHunter.asset"; public static string dtPowerKeyDropTable = "RoR2/DLC3/CoinSlot/dtPowerKeyDropTable.asset"; public static string ExcludedItemsDropTable = "RoR2/DLC3/DroneAssemblyStation/ExcludedItemsDropTable.asset"; public static string DroneScrapperPickupDroneTable = "RoR2/DLC3/DroneScrapper/DroneScrapperPickupDroneTable.asset"; public static string DroneVendorPickupDroneTable = "RoR2/DLC3/DroneVendorPickupDroneTable.asset"; public static string dtTripleDroneShopBlacklist = "RoR2/DLC3/TripleDroneShop/dtTripleDroneShopBlacklist.asset"; public static string dtFoodTier1 = "RoR2/DLC3/MealPrep/dtFoodTier1.asset"; public static string dtFoodTier2 = "RoR2/DLC3/MealPrep/dtFoodTier2.asset"; public static string dtFoodTier3 = "RoR2/DLC3/MealPrep/dtFoodTier3.asset"; public static string dtSolusVendorKeyBlacklist = "RoR2/DLC3/SolusVendorShrine/dtSolusVendorKeyBlacklist.asset"; public static string dtSolusVendorMaxTradesWhitelist = "RoR2/DLC3/SolusVendorShrine/dtSolusVendorMaxTradesWhitelist.asset"; public static string dtTempHoof = "RoR2/DLC3/conduitcanyon/dtTempHoof.asset"; } public static class InspectDef { public static string CommandCubePickupInspectDef = "RoR2/Base/Command/CommandCubePickupInspectDef.asset"; public static string ArtifactShellInspectDef = "RoR2/Base/ArtifactShell/ArtifactShellInspectDef.asset"; public static string Drone1BrokenInspectDef = "RoR2/Base/Drones/Drone1BrokenInspectDef.asset"; public static string Drone2BrokenInspectDef = "RoR2/Base/Drones/Drone2BrokenInspectDef.asset"; public static string EmergencyDroneBrokenInspectDef = "RoR2/Base/Drones/EmergencyDroneBrokenInspectDef.asset"; public static string EquipmentDroneBrokenInspectDef = "RoR2/Base/Drones/EquipmentDroneBrokenInspectDef.asset"; public static string FlameDroneBrokenInspectDef = "RoR2/Base/Drones/FlameDroneBrokenInspectDef.asset"; public static string MegaDroneBrokenInspectDef = "RoR2/Base/Drones/MegaDroneBrokenInspectDef.asset"; public static string MissileDroneBrokenInspectDef = "RoR2/Base/Drones/MissileDroneBrokenInspectDef.asset"; public static string TurretBrokenInspectDef = "RoR2/Base/Drones/TurretBrokenInspectDef.asset"; public static string LockedMageInspectDef = "RoR2/Base/Mage/LockedMageInspectDef.asset"; public static string ScavBackpackInspectDef = "RoR2/Base/Scav/ScavBackpackInspectDef.asset"; public static string ZiprailInspectDef = "RoR2/Base/Common/ZiprailInspectDef.asset"; public static string Barrle1InspectDef = "RoR2/Base/Barrel1/Barrle1InspectDef.asset"; public static string CasionChestInspectDef = "RoR2/Base/CasinoChest/CasionChestInspectDef.asset"; public static string DamageChestInspectDef = "RoR2/Base/CategoryChest/DamageChestInspectDef.asset"; public static string HealthChestInspectDef = "RoR2/Base/CategoryChest/HealthChestInspectDef.asset"; public static string UtilityChestInspectDef = "RoR2/Base/CategoryChest/UtilityChestInspectDef.asset"; public static string Chest1InspectDef = "RoR2/Base/Chest1/Chest1InspectDef.asset"; public static string CloakedChestInspectDef = "RoR2/Base/Chest1StealthedVariant/CloakedChestInspectDef.asset"; public static string Chest2InspectDef = "RoR2/Base/Chest2/Chest2InspectDef.asset"; public static string DuplicatorInspectDef = "RoR2/Base/Duplicator/DuplicatorInspectDef.asset"; public static string LargeDuplicatorInspectDef = "RoR2/Base/DuplicatorLarge/LargeDuplicatorInspectDef.asset"; public static string MilitaryDuplicatorInspectDef = "RoR2/Base/DuplicatorMilitary/MilitaryDuplicatorInspectDef.asset"; public static string WildDuplicatorInspectDef = "RoR2/Base/DuplicatorWild/WildDuplicatorInspectDef.asset"; public static string EquipmentBarrelInspectDef = "RoR2/Base/EquipmentBarrel/EquipmentBarrelInspectDef.asset"; public static string GoldChestInspectDef = "RoR2/Base/GoldChest/GoldChestInspectDef.asset"; public static string CauldronInspectDef = "RoR2/Base/LunarCauldrons/CauldronInspectDef.asset"; public static string LunarChestInspectDef = "RoR2/Base/LunarChest/LunarChestInspectDef.asset"; public static string LunarRecyclerInspectDef = "RoR2/Base/LunarRecycler/LunarRecyclerInspectDef.asset"; public static string LunarShopTerminalInspectDef = "RoR2/Base/LunarShopTerminal/LunarShopTerminalInspectDef.asset"; public static string MysteryItemInspectDef = "RoR2/Base/MultiShopTerminal/MysteryItemInspectDef.asset"; public static string NewtStatueInspectableDef = "RoR2/Base/NewtStatue/NewtStatueInspectableDef.asset"; public static string RadioTowerInspectDef = "RoR2/Base/RadarTower/RadioTowerInspectDef.asset"; public static string ScrapperInspectDef = "RoR2/Base/Scrapper/ScrapperInspectDef.asset"; public static string ShrineOfBloodInspectDef = "RoR2/Base/ShrineBlood/ShrineOfBloodInspectDef.asset"; public static string ShrineBossInspectDef = "RoR2/Base/ShrineBoss/ShrineBossInspectDef.asset"; public static string ShrineChanceInspectDef = "RoR2/Base/ShrineChance/ShrineChanceInspectDef.asset"; public static string ShrineCleanseInspectDef = "RoR2/Base/ShrineCleanse/ShrineCleanseInspectDef.asset"; public static string ShrineCombatInspectDef = "RoR2/Base/ShrineCombat/ShrineCombatInspectDef.asset"; public static string ShrineGoldInspectDef = "RoR2/Base/ShrineGoldshoresAccess/ShrineGoldInspectDef.asset"; public static string ShrineHealingInspectDef = "RoR2/Base/ShrineHealing/ShrineHealingInspectDef.asset"; public static string ShrineRestackInspectDef = "RoR2/Base/ShrineRestack/ShrineRestackInspectDef.asset"; public static string TimedChestInspectDef = "RoR2/Base/TimedChest/TimedChestInspectDef.asset"; public static string LockboxInspectDef = "RoR2/Base/TreasureCache/LockboxInspectDef.asset"; public static string SeerStationInspectDef = "RoR2/Base/bazaar/SeerStationInspectDef.asset"; public static string HumanFanInspectDef = "RoR2/Base/frozenwall/HumanFanInspectDef.asset"; public static string GoldshoreBeaconInspectDef = "RoR2/Base/goldshores/GoldshoreBeaconInspectDef.asset"; public static string PortalDialerLaptopInspectDef = "RoR2/Base/skymeadow/PortalDialerLaptopInspectDef.asset"; public static string MissingInspectInfoFallbackDef = "RoR2/Base/UI/MissingInspectInfoFallbackDef.asset"; public static string UnknownItemInspectInfo = "RoR2/Base/UI/UnknownItemInspectInfo.asset"; public static string Chest2DamageInspectDef = "RoR2/DLC1/CategoryChest2/Chest2DamageInspectDef.asset"; public static string Chest2HealingInspectDef = "RoR2/DLC1/CategoryChest2/Chest2HealingInspectDef.asset"; public static string Chest2UtilityInspectDef = "RoR2/DLC1/CategoryChest2/Chest2UtilityInspectDef.asset"; public static string OptionPIckupInspectDef = "RoR2/DLC1/OptionPickup/OptionPIckupInspectDef.asset"; public static string VoidChestInspectDef = "RoR2/DLC1/VoidChest/VoidChestInspectDef.asset"; public static string VoidTripleInspectDef = "RoR2/DLC1/VoidTriple/VoidTripleInspectDef.asset"; public static string LockboxVoidInspectDef = "RoR2/DLC1/TreasureCacheVoid/LockboxVoidInspectDef.asset"; public static string GeodeInspectDef = "RoR2/DLC2/GeodeInspectDef.asset"; public static string LemurianEggInspectDef = "RoR2/DLC2/LemurianEggInspectDef.asset"; public static string AurelioniteFragmentInspectDef = "RoR2/DLC2/AurelioniteFragmentInspectDef.asset"; public static string ShrineHalcyoniteInspectDef = "RoR2/DLC2/ShrineHalcyoniteInspectDef.asset"; public static string ShrineColossusInspectDef = "RoR2/DLC2/ShrineColossusInspectDef.asset"; public static string ShrineRebirthInspectDef = "RoR2/DLC2/ShrineRebirthInspectDef.asset"; public static string BombardmentDroneBrokenInspectDef = "RoR2/DLC3/Drones/BombardmentDroneBrokenInspectDef.asset"; public static string CleanupDroneBrokenInspectDef = "RoR2/DLC3/Drones/CleanupDroneBrokenInspectDef.asset"; public static string CopycatDroneBrokenInspectDef = "RoR2/DLC3/Drones/CopycatDroneBrokenInspectDef.asset"; public static string DTGunnerDroneBrokenInspectDef = "RoR2/DLC3/Drones/DTGunnerDroneBrokenInspectDef.asset"; public static string DTHaulerDroneBrokenInspectDef = "RoR2/DLC3/Drones/DTHaulerDroneBrokenInspectDef.asset"; public static string DTHealingDroneBrokenInspectDef = "RoR2/DLC3/Drones/DTHealingDroneBrokenInspectDef.asset"; public static string HaulerDroneBrokenInspectDef = "RoR2/DLC3/Drones/HaulerDroneBrokenInspectDef.asset"; public static string JailerDroneBrokenInspectDef = "RoR2/DLC3/Drones/JailerDroneBrokenInspectDef.asset"; public static string JunkDroneBrokenInspectDef = "RoR2/DLC3/Drones/JunkDroneBrokenInspectDef.asset"; public static string RechargeDroneBrokenInspectDef = "RoR2/DLC3/Drones/RechargeDroneBrokenInspectDef.asset"; public static string AccessCodesNodeInspectableDef = "RoR2/DLC3/AccessCodesNode/AccessCodesNodeInspectableDef.asset"; public static string BrokenRobotInspectDef = "RoR2/DLC3/BrokenHAND/BrokenRobotInspectDef.asset"; public static string CoinSlotStatueStatueInspectableDef = "RoR2/DLC3/CoinSlot/CoinSlotStatueStatueInspectableDef.asset"; public static string ShrineCombatCollectiveInspectDef = "RoR2/DLC3/ShrineCombatCollectiveInspectDef.asset"; public static string DrifterBagChestInspectDef = "RoR2/DLC3/DrifterBagChest/DrifterBagChestInspectDef.asset"; public static string DroneAssemblyInspectDef = "RoR2/DLC3/DroneAssemblyStation/DroneAssemblyInspectDef.asset"; public static string DroneCombinerInspectDef = "RoR2/DLC3/DroneCombinerStation/DroneCombinerInspectDef.asset"; public static string DroneScrapperInspectDef = "RoR2/DLC3/DroneScrapper/DroneScrapperInspectDef.asset"; public static string DroneVendorInspectDef = "RoR2/DLC3/DroneVendorInspectDef.asset"; public static string idFriendUnitUnlock = "RoR2/DLC3/FriendUnitUnlockInteractable/idFriendUnitUnlock.asset"; public static string idMealPrep = "RoR2/DLC3/MealPrep/idMealPrep.asset"; public static string PowerCubePedestalInspectDef = "RoR2/DLC3/PowerOrbPedestal/PowerCubePedestalInspectDef.asset"; public static string PowerOrbPedestalInspectDef = "RoR2/DLC3/PowerOrbPedestal/PowerOrbPedestalInspectDef.asset"; public static string PowerPyramidPedestalInspectDef = "RoR2/DLC3/PowerOrbPedestal/PowerPyramidPedestalInspectDef.asset"; public static string PowerShieldTankInspectDef = "RoR2/DLC3/PowerOrbShieldTank/PowerShieldTankInspectDef.asset"; public static string SolusVendorShrineInspectDef = "RoR2/DLC3/SolusVendorShrine/SolusVendorShrineInspectDef.asset"; public static string TemporaryItemDistributorInspectDef = "RoR2/DLC3/TemporaryItemsDistributor/TemporaryItemDistributorInspectDef.asset"; public static string UnknownDroneInspectInfo = "RoR2/DLC3/UI/UnknownDroneInspectInfo.asset"; } public static class NetworkSoundEventDef { public static string nseUIItemLandCommand = "RoR2/Base/Command/nseUIItemLandCommand.asset"; public static string nseBandit2ShivHit = "RoR2/Base/Bandit2/nseBandit2ShivHit.asset"; public static string nseCaptainAirstrikeAltPreImpact = "RoR2/Base/Captain/nseCaptainAirstrikeAltPreImpact.asset"; public static string nseCommandoGrenadeBounce = "RoR2/Base/Commando/nseCommandoGrenadeBounce.asset"; public static string nseAcridBiteHit = "RoR2/Base/Croco/nseAcridBiteHit.asset"; public static string nseAcridM1Hit = "RoR2/Base/Croco/nseAcridM1Hit.asset"; public static string nseAcridShiftLand = "RoR2/Base/Croco/nseAcridShiftLand.asset"; public static string nseLoaderM2Impact = "RoR2/Base/Loader/nseLoaderM2Impact.asset"; public static string nseMageIcePillarRumble = "RoR2/Base/Mage/nseMageIcePillarRumble.asset"; public static string nseMercAssaulterImpact = "RoR2/Base/Merc/nseMercAssaulterImpact.asset"; public static string nseMercSwordImpact = "RoR2/Base/Merc/nseMercSwordImpact.asset"; public static string nseNullifiedBuffApplied = "RoR2/Base/Nullifier/nseNullifiedBuffApplied.asset"; public static string nseNullifierAttack1BombPreDetonate = "RoR2/Base/Nullifier/nseNullifierAttack1BombPreDetonate.asset"; public static string nseTreebotFruitImpact = "RoR2/Base/Treebot/nseTreebotFruitImpact.asset"; public static string nseArmorPlateBlock = "RoR2/Base/ArmorPlate/nseArmorPlateBlock.asset"; public static string nsePulverizeBuildupBuffApplied = "RoR2/Base/ArmorReductionOnHit/nsePulverizeBuildupBuffApplied.asset"; public static string nseProcCritAttackSpeed1 = "RoR2/Base/AttackSpeedOnCrit/nseProcCritAttackSpeed1.asset"; public static string nseProcCritAttackSpeed2 = "RoR2/Base/AttackSpeedOnCrit/nseProcCritAttackSpeed2.asset"; public static string nseProcCritAttackSpeed3 = "RoR2/Base/AttackSpeedOnCrit/nseProcCritAttackSpeed3.asset"; public static string nseLunarSecondaryProjectileBounce = "RoR2/Base/LunarSkillReplacements/nseLunarSecondaryProjectileBounce.asset"; public static string nseParentEggHeal = "RoR2/Base/ParentEgg/nseParentEggHeal.asset"; public static string nseEnvHiddenLabFail = "RoR2/Base/skymeadow/nseEnvHiddenLabFail.asset"; public static string nseEnvHiddenLabSuccess = "RoR2/Base/skymeadow/nseEnvHiddenLabSuccess.asset"; public static string nseActivateDevotionEvolution = "RoR2/CU8/nseActivateDevotionEvolution.asset"; public static string nseAcidLarvaLand = "RoR2/DLC1/AcidLarva/nseAcidLarvaLand.asset"; public static string nseSniperHeadshotConfirm = "RoR2/DLC1/Railgunner/nseSniperHeadshotConfirm.asset"; public static string nseOptionPickupLand = "RoR2/DLC1/OptionPickup/nseOptionPickupLand.asset"; public static string nseRegeneratingScrapConsumed = "RoR2/DLC1/RegeneratingScrap/nseRegeneratingScrapConsumed.asset"; public static string nseRegeneratingScrapRegenerated = "RoR2/DLC1/RegeneratingScrap/nseRegeneratingScrapRegenerated.asset"; public static string nseBoostAllStats = "RoR2/DLC2/nseBoostAllStats.asset"; public static string nseTrackingProjectileExplosion = "RoR2/DLC2/Child/nseTrackingProjectileExplosion.asset"; public static string nseFalseSonSkill1Impact = "RoR2/DLC2/FalseSon/nseFalseSonSkill1Impact.asset"; public static string nseFalseSonBossSlamImpact = "RoR2/DLC2/FalseSonBoss/nseFalseSonBossSlamImpact.asset"; public static string nseStealGold = "RoR2/DLC2/Elites/EliteAurelionite/nseStealGold.asset"; public static string nseTinkerJitter = "RoR2/DLC3/Drifter/nseTinkerJitter.asset"; public static string nseTrash2Treasure = "RoR2/DLC3/Buffs/nseTrash2Treasure.asset"; public static string nseLoaderM1Impact = "RoR2/Junk/Loader/nseLoaderM1Impact.asset"; public static string nseProcRegenOnKill = "RoR2/Junk/Common/nseProcRegenOnKill.asset"; } public static class DirectorCardCategorySelection { public static string dccsMixEnemy = "RoR2/Base/MixEnemy/dccsMixEnemy.asset"; public static string dccsNullifiersOnly = "RoR2/Base/Common/DirectorCardCategorySelections/dccsNullifiersOnly.asset"; public static string dccsGenericMonstersBase = "RoR2/Base/_DCCS_Generic/dccsGenericMonsters_Base.asset"; public static string dccsGenericMonstersDlc1BlackBeach = "RoR2/Base/_DCCS_Generic/dccsGenericMonsters_Dlc1_BlackBeach.asset"; public static string dccsGenericMonstersDLC2BlackBeach = "RoR2/Base/_DCCS_Generic/dccsGenericMonsters_DLC2_BlackBeach.asset"; public static string dccsArenaInteractables = "RoR2/Base/arena/dccsArenaInteractables.asset"; public static string dccsArenaInteractablesDLC1 = "RoR2/Base/arena/dccsArenaInteractablesDLC1.asset"; public static string dccsArenaMonsters = "RoR2/Base/arena/dccsArenaMonsters.asset"; public static string dccsArenaMonstersDLC1 = "RoR2/Base/arena/dccsArenaMonstersDLC1.asset"; public static string dccsArenaMonstersDLC3 = "RoR2/Base/arena/dccsArenaMonstersDLC3.asset"; public static string dccsArtifactWorldInteractables = "RoR2/Base/artifactworld/dccsArtifactWorldInteractables.asset"; public static string dccsArtifactWorldInteractablesDLC3 = "RoR2/Base/artifactworld/dccsArtifactWorldInteractablesDLC3.asset"; public static string dccsArtifactWorldMonsters = "RoR2/Base/artifactworld/dccsArtifactWorldMonsters.asset"; public static string dccsArtifactWorldMonstersDLC1 = "RoR2/Base/artifactworld/dccsArtifactWorldMonstersDLC1.asset"; public static string dccsBlackBeachInteractables = "RoR2/Base/blackbeach/dccsBlackBeachInteractables.asset"; public static string dccsBlackBeachInteractablesDLC1 = "RoR2/Base/blackbeach/dccsBlackBeachInteractablesDLC1.asset"; public static string dccsBlackBeachInteractablesDLC3 = "RoR2/Base/blackbeach/dccsBlackBeachInteractablesDLC3.asset"; public static string dccsBlackBeachMonsters = "RoR2/Base/blackbeach/dccsBlackBeachMonsters.asset"; public static string dccsBlackBeachMonstersDLCUNUSED = "RoR2/Base/blackbeach/dccsBlackBeachMonstersDLC_UNUSED.asset"; public static string dccsDampCaveInteractables = "RoR2/Base/dampcave/dccsDampCaveInteractables.asset"; public static string dccsDampCaveInteractablesDLC1 = "RoR2/Base/dampcave/dccsDampCaveInteractablesDLC1.asset"; public static string dccsDampCaveInteractablesDLC3 = "RoR2/Base/dampcave/dccsDampCaveInteractablesDLC3.asset"; public static string dccsDampCaveMonsters = "RoR2/Base/dampcave/dccsDampCaveMonsters.asset"; public static string dccsDampCaveMonstersDLC1 = "RoR2/Base/dampcave/dccsDampCaveMonstersDLC1.asset"; public static string dccsDampCaveMonstersDLC3 = "RoR2/Base/dampcave/dccsDampCaveMonstersDLC3.asset"; public static string dccsFoggySwampInteractables = "RoR2/Base/foggyswamp/dccsFoggySwampInteractables.asset"; public static string dccsFoggySwampInteractablesDLC1 = "RoR2/Base/foggyswamp/dccsFoggySwampInteractablesDLC1.asset"; public static string dccsFoggySwampInteractablesDLC3 = "RoR2/Base/foggyswamp/dccsFoggySwampInteractablesDLC3.asset"; public static string dccsFoggySwampMonsters = "RoR2/Base/foggyswamp/dccsFoggySwampMonsters.asset"; public static string dccsFoggySwampMonstersDLC = "RoR2/Base/foggyswamp/dccsFoggySwampMonstersDLC.asset"; public static string dccsFoggySwampMonstersDLC3 = "RoR2/Base/foggyswamp/dccsFoggySwampMonstersDLC3.asset"; public static string dccsFrozenWallInteractables = "RoR2/Base/frozenwall/dccsFrozenWallInteractables.asset"; public static string dccsFrozenWallInteractablesDLC1 = "RoR2/Base/frozenwall/dccsFrozenWallInteractablesDLC1.asset"; public static string dccsFrozenWallInteractablesDLC3 = "RoR2/Base/frozenwall/dccsFrozenWallInteractablesDLC3.asset"; public static string dccsFrozenWallMonsters = "RoR2/Base/frozenwall/dccsFrozenWallMonsters.asset"; public static string dccsFrozenWallMonstersDLC1 = "RoR2/Base/frozenwall/dccsFrozenWallMonstersDLC1.asset"; public static string dccsFrozenWallMonstersDLC3 = "RoR2/Base/frozenwall/dccsFrozenWallMonstersDLC3.asset"; public static string dccsGoldshoresInteractables = "RoR2/Base/goldshores/dccsGoldshoresInteractables.asset"; public static string dccsGoldshoresMonsters = "RoR2/Base/goldshores/dccsGoldshoresMonsters.asset"; public static string dccsGoldshoresMonstersDLC2 = "RoR2/Base/goldshores/dccsGoldshoresMonstersDLC2.asset"; public static string dccsGolemplainsInteractables = "RoR2/Base/golemplains/dccsGolemplainsInteractables.asset"; public static string dccsGolemplainsInteractablesDLC1 = "RoR2/Base/golemplains/dccsGolemplainsInteractablesDLC1.asset"; public static string dccsGolemplainsInteractablesDLC3 = "RoR2/Base/golemplains/dccsGolemplainsInteractablesDLC3.asset"; public static string dccsGolemplainsMonsters = "RoR2/Base/golemplains/dccsGolemplainsMonsters.asset"; public static string dccsGolemplainsMonstersDLC1 = "RoR2/Base/golemplains/dccsGolemplainsMonstersDLC1.asset"; public static string dccsGolemplainsMonstersDLC3 = "RoR2/Base/golemplains/dccsGolemplainsMonstersDLC3.asset"; public static string dccsGooLakeInteractables = "RoR2/Base/goolake/dccsGooLakeInteractables.asset"; public static string dccsGooLakeInteractablesDLC1 = "RoR2/Base/goolake/dccsGooLakeInteractablesDLC1.asset"; public static string dccsGooLakeInteractablesDLC3 = "RoR2/Base/goolake/dccsGooLakeInteractablesDLC3.asset"; public static string dccsGooLakeMonsters = "RoR2/Base/goolake/dccsGooLakeMonsters.asset"; public static string dccsGooLakeMonstersDLC1 = "RoR2/Base/goolake/dccsGooLakeMonstersDLC1.asset"; public static string dccsGooLakeMonstersDLC3 = "RoR2/Base/goolake/dccsGooLakeMonstersDLC3.asset"; public static string dccsMoonInteractables = "RoR2/Base/moon/dccsMoonInteractables.asset"; public static string dccsMoonInteractablesDLC1 = "RoR2/Base/moon/dccsMoonInteractablesDLC1.asset"; public static string dccsMoonMonsters = "RoR2/Base/moon/dccsMoonMonsters.asset"; public static string dccsRootJungleInteractables = "RoR2/Base/rootjungle/dccsRootJungleInteractables.asset"; public static string dccsRootJungleInteractablesDLC1 = "RoR2/Base/rootjungle/dccsRootJungleInteractablesDLC1.asset"; public static string dccsRootJungleInteractablesDLC3 = "RoR2/Base/rootjungle/dccsRootJungleInteractablesDLC3.asset"; public static string dccsRootJungleMonsters = "RoR2/Base/rootjungle/dccsRootJungleMonsters.asset"; public static string dccsRootJungleMonstersDLC1 = "RoR2/Base/rootjungle/dccsRootJungleMonstersDLC1.asset"; public static string dccsRootJungleMonstersDLC3 = "RoR2/Base/rootjungle/dccsRootJungleMonstersDLC3.asset"; public static string dccsShipgraveyardInteractables = "RoR2/Base/shipgraveyard/dccsShipgraveyardInteractables.asset"; public static string dccsShipgraveyardInteractablesDLC1 = "RoR2/Base/shipgraveyard/dccsShipgraveyardInteractablesDLC1.asset"; public static string dccsShipgraveyardInteractablesDLC3 = "RoR2/Base/shipgraveyard/dccsShipgraveyardInteractablesDLC3.asset"; public static string dccsShipgraveyardMonsters = "RoR2/Base/shipgraveyard/dccsShipgraveyardMonsters.asset"; public static string dccsShipgraveyardMonstersDLC1 = "RoR2/Base/shipgraveyard/dccsShipgraveyardMonstersDLC1.asset"; public static string dccsShipgraveyardMonstersDLC3 = "RoR2/Base/shipgraveyard/dccsShipgraveyardMonstersDLC3.asset"; public static string dccsSkyMeadowInteractables = "RoR2/Base/skymeadow/dccsSkyMeadowInteractables.asset"; public static string dccsSkyMeadowInteractablesDLC1 = "RoR2/Base/skymeadow/dccsSkyMeadowInteractablesDLC1.asset"; public static string dccsSkyMeadowInteractablesDLC3 = "RoR2/Base/skymeadow/dccsSkyMeadowInteractablesDLC3.asset"; public static string dccsSkyMeadowMonsters = "RoR2/Base/skymeadow/dccsSkyMeadowMonsters.asset"; public static string dccsSkyMeadowMonstersDLC1 = "RoR2/Base/skymeadow/dccsSkyMeadowMonstersDLC1.asset"; public static string dccsSkyMeadowMonstersDLC3 = "RoR2/Base/skymeadow/dccsSkyMeadowMonstersDLC3.asset"; public static string dccsWispGraveyardInteractables = "RoR2/Base/wispgraveyard/dccsWispGraveyardInteractables.asset"; public static string dccsWispGraveyardInteractablesDLC1 = "RoR2/Base/wispgraveyard/dccsWispGraveyardInteractablesDLC1.asset"; public static string dccsWispGraveyardInteractablesDLC3 = "RoR2/Base/wispgraveyard/dccsWispGraveyardInteractablesDLC3.asset"; public static string dccsWispGraveyardMonsters = "RoR2/Base/wispgraveyard/dccsWispGraveyardMonsters.asset"; public static string dccsInfiniteTowerInteractables = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/dccsInfiniteTowerInteractables.asset"; public static string dccsITScav = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/dccsITScav.asset"; public static string dccsITVoidMonsters = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/dccsITVoidMonsters.asset"; public static string dccsVoidCampFlavorProps = "RoR2/DLC1/VoidCamp/dccsVoidCampFlavorProps.asset"; public static string dccsVoidCampInteractables = "RoR2/DLC1/VoidCamp/dccsVoidCampInteractables.asset"; public static string dccsVoidCampMonsters = "RoR2/DLC1/VoidCamp/dccsVoidCampMonsters.asset"; public static string dccsAncientLoftInteractablesDLC1 = "RoR2/DLC1/ancientloft/dccsAncientLoftInteractablesDLC1.asset"; public static string dccsAncientLoftInteractablesDLC3 = "RoR2/DLC1/ancientloft/dccsAncientLoftInteractablesDLC3.asset"; public static string dccsAncientLoftMonstersDLC1 = "RoR2/DLC1/ancientloft/dccsAncientLoftMonstersDLC1.asset"; public static string dccsITAncientLoftMonsters = "RoR2/DLC1/itancientloft/dccsITAncientLoftMonsters.asset"; public static string dccsITAncientLoftMonstersDLC3 = "RoR2/DLC1/itancientloft/dccsITAncientLoftMonstersDLC3.asset"; public static string dccsITDampCaveMonsters = "RoR2/DLC1/itdampcave/dccsITDampCaveMonsters.asset"; public static string dccsITDampCaveMonstersDLC2 = "RoR2/DLC1/itdampcave/dccsITDampCaveMonstersDLC2.asset"; public static string dccsITDampCaveMonstersDLC3 = "RoR2/DLC1/itdampcave/dccsITDampCaveMonstersDLC3.asset"; public static string dccsITFrozenWallMonsters = "RoR2/DLC1/itfrozenwall/dccsITFrozenWallMonsters.asset"; public static string dccsITFrozenWallMonstersDLC2 = "RoR2/DLC1/itfrozenwall/dccsITFrozenWallMonstersDLC2.asset"; public static string dccsITGolemplainsMonsters = "RoR2/DLC1/itgolemplains/dccsITGolemplainsMonsters.asset"; public static string dccsITGolemplainsMonstersDLC2 = "RoR2/DLC1/itgolemplains/dccsITGolemplainsMonstersDLC2.asset"; public static string dccsITGolemplainsMonstersDLC3 = "RoR2/DLC1/itgolemplains/dccsITGolemplainsMonstersDLC3.asset"; public static string dccsITGooLakeMonsters = "RoR2/DLC1/itgoolake/dccsITGooLakeMonsters.asset"; public static string dccsITGooLakeMonstersDLC3 = "RoR2/DLC1/itgoolake/dccsITGooLakeMonstersDLC3.asset"; public static string dccsITMoonMonsters = "RoR2/DLC1/itmoon/dccsITMoonMonsters.asset"; public static string dccsITSkyMeadowMonsters = "RoR2/DLC1/itskymeadow/dccsITSkyMeadowMonsters.asset"; public static string dccsITSkyMeadowMonstersDLC2 = "RoR2/DLC1/itskymeadow/dccsITSkyMeadowMonstersDLC2.asset"; public static string dccsITSkyMeadowMonstersDLC3 = "RoR2/DLC1/itskymeadow/dccsITSkyMeadowMonstersDLC3.asset"; public static string dccsSnowyForestInteractablesDLC1 = "RoR2/DLC1/snowyforest/dccsSnowyForestInteractablesDLC1.asset"; public static string dccsSnowyForestInteractablesDLC3 = "RoR2/DLC1/snowyforest/dccsSnowyForestInteractablesDLC3.asset"; public static string dccsSnowyForestMonstersDLC1 = "RoR2/DLC1/snowyforest/dccsSnowyForestMonstersDLC1.asset"; public static string dccsSulfurPoolsInteractablesDLC1 = "RoR2/DLC1/sulfurpools/dccsSulfurPoolsInteractablesDLC1.asset"; public static string dccsSulfurPoolsInteractablesDLC3 = "RoR2/DLC1/sulfurpools/dccsSulfurPoolsInteractablesDLC3.asset"; public static string dccsSulfurPoolsMonstersDLC1 = "RoR2/DLC1/sulfurpools/dccsSulfurPoolsMonstersDLC1.asset"; public static string dccsSulfurPoolsMonstersDLC3 = "RoR2/DLC1/sulfurpools/dccsSulfurPoolsMonstersDLC3.asset"; public static string dccsVoidDonutMonsters = "RoR2/DLC1/voidraid/dccsVoidDonutMonsters.asset"; public static string dccsVoidStageInteractables = "RoR2/DLC1/voidstage/dccsVoidStageInteractables.asset"; public static string dccsVoidStageMonsters = "RoR2/DLC1/voidstage/dccsVoidStageMonsters.asset"; public static string dccsHalcyoniteShrineHalcyonite = "RoR2/DLC2/dccsHalcyoniteShrineHalcyonite.asset"; public static string dccsShrineHalcyonFlavorProps = "RoR2/DLC2/dccsShrineHalcyonFlavorProps.asset"; public static string dccsShrineHalcyonFlavorPropsOuterEdge = "RoR2/DLC2/dccsShrineHalcyonFlavorPropsOuterEdge.asset"; public static string dccsShrineHalcyoniteActivationMonsterWave = "RoR2/DLC2/dccsShrineHalcyoniteActivationMonsterWave.asset"; public static string dccsAncientLoftInteractablesDLC2 = "RoR2/DLC2/dccsAncientLoftInteractablesDLC2.asset"; public static string dccsAncientLoftMonstersDLC2 = "RoR2/DLC2/dccsAncientLoftMonstersDLC2.asset"; public static string dccsArtifactWorld01Interactables = "RoR2/DLC2/artifactworld01/dccsArtifactWorld01Interactables.asset"; public static string dccsArtifactWorld01InteractablesDLC3 = "RoR2/DLC2/artifactworld01/dccsArtifactWorld01Interactables_DLC3.asset"; public static string dccsArtifactWorld01Monsters = "RoR2/DLC2/artifactworld01/dccsArtifactWorld01Monsters.asset"; public static string dccsArtifactWorld01MonstersDLC1 = "RoR2/DLC2/artifactworld01/dccsArtifactWorld01Monsters_DLC1.asset"; public static string dccsArtifactWorld01MonstersDLC2 = "RoR2/DLC2/artifactworld01/dccsArtifactWorld01Monsters_DLC2.asset"; public static string dccsArtifactWorld02Monsters = "RoR2/DLC2/artifactworld02/dccsArtifactWorld02Monsters.asset"; public static string dccsArtifactWorld02MonstersDLC1 = "RoR2/DLC2/artifactworld02/dccsArtifactWorld02Monsters_DLC1.asset"; public static string dccsArtifactWorld02MonstersDLC2 = "RoR2/DLC2/artifactworld02/dccsArtifactWorld02Monsters_DLC2.asset"; public static string dccsArtifactWorld03Interactables = "RoR2/DLC2/artifactworld03/dccsArtifactWorld03Interactables.asset"; public static string dccsArtifactWorld03Monsters = "RoR2/DLC2/artifactworld03/dccsArtifactWorld03Monsters.asset"; public static string dccsArtifactWorld03MonstersDLC1 = "RoR2/DLC2/artifactworld03/dccsArtifactWorld03MonstersDLC1.asset"; public static string dccsArtifactWorld03MonstersDLC2 = "RoR2/DLC2/artifactworld03/dccsArtifactWorld03MonstersDLC2.asset"; public static string dccsBlackBeachInteractablesDLC2 = "RoR2/DLC2/dccsBlackBeachInteractablesDLC2.asset"; public static string dccsBlackBeachMonstersDLC2 = "RoR2/DLC2/dccsBlackBeachMonstersDLC2.asset"; public static string dccsDampCaveInteractablesDLC2 = "RoR2/DLC2/dccsDampCaveInteractablesDLC2.asset"; public static string dccsDampCaveMonstersDLC2Only = "RoR2/DLC2/dccsDampCaveMonstersDLC2Only.asset"; public static string dccsFoggySwampInteractablesDLC2 = "RoR2/DLC2/dccsFoggySwampInteractablesDLC2.asset"; public static string dccsFoggySwampMonstersDLC2Only = "RoR2/DLC2/dccsFoggySwampMonstersDLC2Only.asset"; public static string dccsFrozenWallInteractablesDLC2 = "RoR2/DLC2/dccsFrozenWallInteractablesDLC2.asset"; public static string dccsFrozenWallMonstersDLC2Only = "RoR2/DLC2/dccsFrozenWallMonstersDLC2Only.asset"; public static string dccsGolemplainsInteractablesDLC2 = "RoR2/DLC2/dccsGolemplainsInteractablesDLC2.asset"; public static string dccsGolemplainsMonstersDLC2Only = "RoR2/DLC2/dccsGolemplainsMonstersDLC2Only.asset"; public static string dccsGooLakeInteractablesDLC2 = "RoR2/DLC2/dccsGooLakeInteractablesDLC2.asset"; public static string dccsGooLakeMonstersDLC2Only = "RoR2/DLC2/dccsGooLakeMonstersDLC2Only.asset"; public static string dccsHabitatInteractablesDLC1 = "RoR2/DLC2/habitat/dccsHabitatInteractables_DLC1.asset"; public static string dccsHabitatInteractablesDLC2 = "RoR2/DLC2/habitat/dccsHabitatInteractables_DLC2.asset"; public static string dccsHabitatInteractablesDLC3 = "RoR2/DLC2/habitat/dccsHabitatInteractables_DLC3.asset"; public static string dccsHabitatMonsters = "RoR2/DLC2/habitat/dccsHabitatMonsters.asset"; public static string dccsHabitatMonstersDLC1 = "RoR2/DLC2/habitat/dccsHabitatMonsters_DLC1.asset"; public static string dccsHabitatFallInteractablesDLC2 = "RoR2/DLC2/habitatfall/dccsHabitatFallInteractables_DLC2.asset"; public static string dccsHabitatfallMonsters = "RoR2/DLC2/habitatfall/dccsHabitatfallMonsters.asset"; public static string dccsHabitatfallMonstersDLC1 = "RoR2/DLC2/habitatfall/dccsHabitatfallMonsters_DLC1.asset"; public static string dccsHelminthRoostInteractablesDLC1 = "RoR2/DLC2/helminthroost/dccsHelminthRoostInteractables_DLC1.asset"; public static string dccsHelminthRoostInteractablesDLC2 = "RoR2/DLC2/helminthroost/dccsHelminthRoostInteractables_DLC2.asset"; public static string dccsHelminthRoostInteractablesDLC3 = "RoR2/DLC2/helminthroost/dccsHelminthRoostInteractables_DLC3.asset"; public static string dccsHelminthRoostMonsters = "RoR2/DLC2/helminthroost/dccsHelminthRoostMonsters.asset"; public static string dccsHelminthRoostMonstersDLC2Only = "RoR2/DLC2/helminthroost/dccsHelminthRoostMonstersDLC2Only.asset"; public static string dccsHelminthRoostMonstersDLC3 = "RoR2/DLC2/helminthroost/dccsHelminthRoostMonstersDLC3.asset"; public static string dccsLakesInteractables = "RoR2/DLC2/lakes/dccsLakesInteractables.asset"; public static string dccsLakesInteractablesDLC2 = "RoR2/DLC2/lakes/dccsLakesInteractables_DLC2.asset"; public static string dccsLakesInteractablesDLC1 = "RoR2/DLC2/lakes/dccsLakesInteractablesDLC1.asset"; public static string dccsLakesInteractablesDLC3 = "RoR2/DLC2/lakes/dccsLakesInteractablesDLC3.asset"; public static string dccsLakesMonsters = "RoR2/DLC2/lakes/dccsLakesMonsters.asset"; public static string dccsLakesMonstersDLC1 = "RoR2/DLC2/lakes/dccsLakesMonstersDLC1.asset"; public static string dccsLakesMonstersDLC2 = "RoR2/DLC2/lakes/dccsLakesMonstersDLC2.asset"; public static string dccsLakesMonstersDLC3 = "RoR2/DLC2/lakes/dccsLakesMonstersDLC3.asset"; public static string dccsLakesnightInteractablesDLC1 = "RoR2/DLC2/lakesnight/dccsLakesnightInteractables_DLC1.asset"; public static string dccsLakesnightInteractablesDLC2 = "RoR2/DLC2/lakesnight/dccsLakesnightInteractables_DLC2.asset"; public static string dccsLakesnightInteractablesDLC3 = "RoR2/DLC2/lakesnight/dccsLakesnightInteractables_DLC3.asset"; public static string dccsLakesnightMonsters = "RoR2/DLC2/lakesnight/dccsLakesnightMonsters.asset"; public static string dccsLakesnightMonstersDLC1 = "RoR2/DLC2/lakesnight/dccsLakesnightMonsters_DLC1.asset"; public static string dccsLemurianTempleInteractablesDLC1 = "RoR2/DLC2/lemuriantemple/dccsLemurianTempleInteractables_DLC1.asset"; public static string dccsLemurianTempleInteractablesDLC2 = "RoR2/DLC2/lemuriantemple/dccsLemurianTempleInteractables_DLC2.asset"; public static string dccsLemurianTempleInteractablesDLC3 = "RoR2/DLC2/lemuriantemple/dccsLemurianTempleInteractables_DLC3.asset"; public static string dccsLemurianTempleMonsters = "RoR2/DLC2/lemuriantemple/dccsLemurianTempleMonsters.asset"; public static string dccsLemurianTempleMonstersDLC1 = "RoR2/DLC2/lemuriantemple/dccsLemurianTempleMonstersDLC1.asset"; public static string dccsFalseSonBossPhase2 = "RoR2/DLC2/meridian/dccsFalseSonBossPhase2.asset"; public static string dccsMeridianHalcyoniteEncounter = "RoR2/DLC2/meridian/dccsMeridianHalcyoniteEncounter.asset"; public static string dccsMeridianInteractables = "RoR2/DLC2/meridian/dccsMeridianInteractables.asset"; public static string dccsMeridianInteractablesDLC2Only = "RoR2/DLC2/meridian/dccsMeridianInteractablesDLC2Only.asset"; public static string dccsMeridianMonsters = "RoR2/DLC2/meridian/dccsMeridianMonsters.asset"; public static string dccsMeridianMonstersDLC1 = "RoR2/DLC2/meridian/dccsMeridianMonsters_DLC1.asset"; public static string dccsRootJungleInteractablesDLC2 = "RoR2/DLC2/dccsRootJungleInteractablesDLC2.asset"; public static string dccsRootJungleMonstersDLC2 = "RoR2/DLC2/dccsRootJungleMonstersDLC2.asset"; public static string dccsShipgraveyardInteractablesDLC2 = "RoR2/DLC2/dccsShipgraveyardInteractablesDLC2.asset"; public static string dccsShipgraveyardMonstersDLC2 = "RoR2/DLC2/dccsShipgraveyardMonstersDLC2.asset"; public static string dccsSkyMeadowInteractablesDLC2 = "RoR2/DLC2/dccsSkyMeadowInteractablesDLC2.asset"; public static string dccsSkyMeadowMonstersDLC2 = "RoR2/DLC2/dccsSkyMeadowMonstersDLC2.asset"; public static string dccsSnowyForestInteractablesDLC2 = "RoR2/DLC2/dccsSnowyForestInteractablesDLC2.asset"; public static string dccsSnowyForestMonstersDLC2 = "RoR2/DLC2/dccsSnowyForestMonstersDLC2.asset"; public static string dccsSulfurPoolsInteractablesDLC2 = "RoR2/DLC2/dccsSulfurPoolsInteractablesDLC2.asset"; public static string dccsVillageInteractablesDLC2 = "RoR2/DLC2/village/dccsVillageInteractables_DLC2.asset"; public static string dccsVillageInteractablesDLC1 = "RoR2/DLC2/village/dccsVillageInteractablesDLC1.asset"; public static string dccsVillageInteractablesDLC3 = "RoR2/DLC2/village/dccsVillageInteractablesDLC3.asset"; public static string dccsVillageMonsters = "RoR2/DLC2/village/dccsVillageMonsters.asset"; public static string dccsVillageMonstersDLC3 = "RoR2/DLC2/village/dccsVillageMonstersDLC3.asset"; public static string dccsVillageNightInteractables = "RoR2/DLC2/villagenight/dccsVillageNightInteractables.asset"; public static string dccsVillageNightInteractablesDLC1 = "RoR2/DLC2/villagenight/dccsVillageNightInteractablesDLC1.asset"; public static string dccsVillagenightInteractablesDLC2 = "RoR2/DLC2/villagenight/dccsVillagenightInteractablesDLC2.asset"; public static string dccsVillageNightInteractablesDLC3 = "RoR2/DLC2/villagenight/dccsVillageNightInteractablesDLC3.asset"; public static string dccsVillageNightMonstersAdditional = "RoR2/DLC2/villagenight/dccsVillageNightMonsters_Additional.asset"; public static string dccsWispGraveyardInteractablesDLC2 = "RoR2/DLC2/dccsWispGraveyardInteractablesDLC2.asset"; public static string dccsWispGraveyardMonstersDLC2 = "RoR2/DLC2/dccsWispGraveyardMonstersDLC2.asset"; public static string dccsFriendUnitVultureEncounter = "RoR2/DLC3/FriendUnitUnlockInteractable/dccsFriendUnitVultureEncounter.asset"; public static string dccsComputationalexchangeInteractables = "RoR2/DLC3/computationalexchange/dccsComputationalexchangeInteractables.asset"; public static string dccsComputationalexchangeMonsters = "RoR2/DLC3/computationalexchange/dccsComputationalexchangeMonsters.asset"; public static string dccsConduitcanyonBosses = "RoR2/DLC3/conduitcanyon/dccsConduitcanyonBosses.asset"; public static string dccsConduitcanyonInteractables = "RoR2/DLC3/conduitcanyon/dccsConduitcanyonInteractables.asset"; public static string dccsConduitcanyonInteractablesDLC1 = "RoR2/DLC3/conduitcanyon/dccsConduitcanyonInteractablesDLC1.asset"; public static string dccsConduitcanyonMonsters = "RoR2/DLC3/conduitcanyon/dccsConduitcanyonMonsters.asset"; public static string dccsIronalluviumInteractables = "RoR2/DLC3/ironalluvium/dccsIronalluviumInteractables.asset"; public static string dccsIronalluviumInteractablesDLC1 = "RoR2/DLC3/ironalluvium/dccsIronalluviumInteractablesDLC1.asset"; public static string dccsIronalluviumInteractablesDLC2 = "RoR2/DLC3/ironalluvium/dccsIronalluviumInteractablesDLC2.asset"; public static string dccsIronalluviumMonsters = "RoR2/DLC3/ironalluvium/dccsIronalluviumMonsters.asset"; public static string dccsIronalluviumMonstersDLC1 = "RoR2/DLC3/ironalluvium/dccsIronalluviumMonstersDLC1.asset"; public static string dccsIronalluviumMonstersDLC2 = "RoR2/DLC3/ironalluvium/dccsIronalluviumMonstersDLC2.asset"; public static string dccsIronalluvium2Interactables = "RoR2/DLC3/ironalluvium2/dccsIronalluvium2Interactables.asset"; public static string dccsIronalluvium2InteractablesDLC1 = "RoR2/DLC3/ironalluvium2/dccsIronalluvium2InteractablesDLC1.asset"; public static string dccsIronalluvium2InteractablesDLC2 = "RoR2/DLC3/ironalluvium2/dccsIronalluvium2InteractablesDLC2.asset"; public static string dccsIronalluvium2Monsters = "RoR2/DLC3/ironalluvium2/dccsIronalluvium2Monsters.asset"; public static string dccsIronalluvium2MonstersDLC1 = "RoR2/DLC3/ironalluvium2/dccsIronalluvium2MonstersDLC1.asset"; public static string dccsIronalluvium2MonstersDLC2 = "RoR2/DLC3/ironalluvium2/dccsIronalluvium2MonstersDLC2.asset"; public static string dccsNestInteractables = "RoR2/DLC3/nest/dccsNestInteractables.asset"; public static string dccsNestInteractablesDLC1 = "RoR2/DLC3/nest/dccsNestInteractablesDLC1.asset"; public static string dccsNestInteractablesDLC2 = "RoR2/DLC3/nest/dccsNestInteractablesDLC2.asset"; public static string dccsNestMonsters = "RoR2/DLC3/nest/dccsNestMonsters.asset"; public static string dccsNestMonstersDLC2 = "RoR2/DLC3/nest/dccsNestMonstersDLC2.asset"; public static string dccsRepurposedcraterInteractables = "RoR2/DLC3/repurposedcrater/dccsRepurposedcraterInteractables.asset"; public static string dccsRepurposedcraterInteractablesDLC1 = "RoR2/DLC3/repurposedcrater/dccsRepurposedcraterInteractablesDLC1.asset"; public static string dccsRepurposedcraterInteractablesDLC2 = "RoR2/DLC3/repurposedcrater/dccsRepurposedcraterInteractablesDLC2.asset"; public static string dccsRepurposedcraterMonsters = "RoR2/DLC3/repurposedcrater/dccsRepurposedcraterMonsters.asset"; public static string dccsRepurposedcraterMonstersDLC1 = "RoR2/DLC3/repurposedcrater/dccsRepurposedcraterMonstersDLC1.asset"; public static string dccsRepurposedcraterMonstersDLC2 = "RoR2/DLC3/repurposedcrater/dccsRepurposedcraterMonstersDLC2.asset"; public static string dccsSolusWebInteractables = "RoR2/DLC3/solusweb/dccsSolusWebInteractables.asset"; public static string dccsSolusWebMonsters = "RoR2/DLC3/solusweb/dccsSolusWebMonsters.asset"; public static string dccsSolutionalhauntInteractables = "RoR2/DLC3/solutionalhaunt/dccsSolutionalhauntInteractables.asset"; public static string dccsSolutionalhauntMonsters = "RoR2/DLC3/solutionalhaunt/dccsSolutionalhauntMonsters.asset"; public static string dccsTestingsceneInteractables = "RoR2/testingscene/dccsTestingsceneInteractables.asset"; public static string dccsTestingsceneMonsters = "RoR2/testingscene/dccsTestingsceneMonsters.asset"; } public static class BasicPickupDropTable { public static string dtMonsterTeamTier1Item = "RoR2/Base/MonsterTeamGainsItems/dtMonsterTeamTier1Item.asset"; public static string dtMonsterTeamTier2Item = "RoR2/Base/MonsterTeamGainsItems/dtMonsterTeamTier2Item.asset"; public static string dtMonsterTeamTier3Item = "RoR2/Base/MonsterTeamGainsItems/dtMonsterTeamTier3Item.asset"; public static string dtSacrificeArtifact = "RoR2/Base/Sacrifice/dtSacrificeArtifact.asset"; public static string dtAISafeTier1Item = "RoR2/Base/Common/dtAISafeTier1Item.asset"; public static string dtAISafeTier2Item = "RoR2/Base/Common/dtAISafeTier2Item.asset"; public static string dtAISafeTier3Item = "RoR2/Base/Common/dtAISafeTier3Item.asset"; public static string dtEquipment = "RoR2/Base/Common/dtEquipment.asset"; public static string dtTier1Item = "RoR2/Base/Common/dtTier1Item.asset"; public static string dtTier2Item = "RoR2/Base/Common/dtTier2Item.asset"; public static string dtTier3Item = "RoR2/Base/Common/dtTier3Item.asset"; public static string dtVoidChest = "RoR2/Base/Common/dtVoidChest.asset"; public static string dtCasinoChest = "RoR2/Base/CasinoChest/dtCasinoChest.asset"; public static string dtSmallChestDamage = "RoR2/Base/CategoryChest/dtSmallChestDamage.asset"; public static string dtSmallChestHealing = "RoR2/Base/CategoryChest/dtSmallChestHealing.asset"; public static string dtSmallChestUtility = "RoR2/Base/CategoryChest/dtSmallChestUtility.asset"; public static string dtChest1 = "RoR2/Base/Chest1/dtChest1.asset"; public static string dtChest2 = "RoR2/Base/Chest2/dtChest2.asset"; public static string dtDuplicatorTier1 = "RoR2/Base/Duplicator/dtDuplicatorTier1.asset"; public static string dtDuplicatorTier2 = "RoR2/Base/DuplicatorLarge/dtDuplicatorTier2.asset"; public static string dtDuplicatorTier3 = "RoR2/Base/DuplicatorMilitary/dtDuplicatorTier3.asset"; public static string dtDuplicatorWild = "RoR2/Base/DuplicatorWild/dtDuplicatorWild.asset"; public static string dtGoldChest = "RoR2/Base/GoldChest/dtGoldChest.asset"; public static string dtLunarChest = "RoR2/Base/LunarChest/dtLunarChest.asset"; public static string dtShrineChance = "RoR2/Base/ShrineChance/dtShrineChance.asset"; public static string dtLockbox = "RoR2/Base/TreasureCache/dtLockbox.asset"; public static string dtITBossWave = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/dtITBossWave.asset"; public static string dtITDefaultWave = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/dtITDefaultWave.asset"; public static string dtITLunar = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/dtITLunar.asset"; public static string dtITSpecialBossWave = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/dtITSpecialBossWave.asset"; public static string dtITVoid = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/dtITVoid.asset"; public static string dtCategoryChest2Damage = "RoR2/DLC1/CategoryChest2/dtCategoryChest2Damage.asset"; public static string dtCategoryChest2Healing = "RoR2/DLC1/CategoryChest2/dtCategoryChest2Healing.asset"; public static string dtCategoryChest2Utility = "RoR2/DLC1/CategoryChest2/dtCategoryChest2Utility.asset"; public static string dtVoidCamp = "RoR2/DLC1/VoidCamp/dtVoidCamp.asset"; public static string dtVoidTriple = "RoR2/DLC1/VoidTriple/dtVoidTriple.asset"; public static string dtVoidLockbox = "RoR2/DLC1/TreasureCacheVoid/dtVoidLockbox.asset"; public static string AurelioniteHeartPickupDropTable = "RoR2/DLC2/AurelioniteHeartPickupDropTable.asset"; public static string GeodeRewardDropTable = "RoR2/DLC2/GeodeRewardDropTable.asset"; public static string dtShrineHalcyoniteTier1 = "RoR2/DLC2/dtShrineHalcyoniteTier1.asset"; public static string dtShrineHalcyoniteTier2 = "RoR2/DLC2/dtShrineHalcyoniteTier2.asset"; public static string dtShrineHalcyoniteTier3 = "RoR2/DLC2/dtShrineHalcyoniteTier3.asset"; public static string dtChanceDoll = "RoR2/DLC2/Items/ExtraShrineItem/dtChanceDoll.asset"; public static string dtSonorousEcho = "RoR2/DLC2/Items/ItemDropChanceOnKill/dtSonorousEcho.asset"; public static string dtSalvage = "RoR2/DLC3/Drifter/dtSalvage.asset"; public static string dtJunkDrone = "RoR2/DLC3/Drones/dtJunkDrone.asset"; public static string dtSolusHeart = "RoR2/DLC3/SolusHeart/dtSolusHeart.asset"; public static string dtDrifterBagChest = "RoR2/DLC3/DrifterBagChest/dtDrifterBagChest.asset"; public static string dtTemporaryItemsDistributor = "RoR2/DLC3/TemporaryItemsDistributor/dtTemporaryItemsDistributor.asset"; public static string dtCommandChest = "RoR2/CommandChest/dtCommandChest.asset"; } public static class DoppelgangerDropTable { public static string dtDoppelganger = "RoR2/Base/ShadowClone/dtDoppelganger.asset"; } public static class SkinDef { public static string skinWispSoulBodyDefault = "RoR2/Base/WispOnDeath/skinWispSoulBodyDefault.asset"; public static string skinArtifactShellBodyDefault = "RoR2/Base/ArtifactShell/skinArtifactShellBodyDefault.asset"; public static string skinBandit2AltColossus = "RoR2/Base/Bandit2/skinBandit2AltColossus.asset"; public static string skinBandit2AltSolus = "RoR2/Base/Bandit2/skinBandit2AltSolus.asset"; public static string skinBandit2AltSolusopaque = "RoR2/Base/Bandit2/skinBandit2AltSolus_opaque.asset"; public static string skinBandit2Alt = "RoR2/Base/Bandit2/skinBandit2Alt.asset"; public static string skinBandit2Default = "RoR2/Base/Bandit2/skinBandit2Default.asset"; public static string skinBeetleDefault = "RoR2/Base/Beetle/skinBeetleDefault.asset"; public static string skinBeetleSulfur = "RoR2/Base/Beetle/skinBeetleSulfur.asset"; public static string skinBeetleGuardDefault = "RoR2/Base/BeetleGuard/skinBeetleGuardDefault.asset"; public static string skinBeetleGuardSulfur = "RoR2/Base/BeetleGuard/skinBeetleGuardSulfur.asset"; public static string skinBeetleQueen2Default = "RoR2/Base/BeetleQueen/skinBeetleQueen2Default.asset"; public static string skinBeetleQueen2Sulfur = "RoR2/Base/BeetleQueen/skinBeetleQueen2Sulfur.asset"; public static string skinBeetleWardDefault = "RoR2/Base/BeetleGroup/BeetleWard/skinBeetleWardDefault.asset"; public static string skinBeetleWardSulfur = "RoR2/Base/BeetleGroup/BeetleWard/skinBeetleWardSulfur.asset"; public static string skinBellBodyDefault = "RoR2/Base/Bell/skinBellBodyDefault.asset"; public static string skinBisonBodyDefault = "RoR2/Base/Bison/skinBisonBodyDefault.asset"; public static string skinBrotherBodyDefault = "RoR2/Base/Brother/skinBrotherBodyDefault.asset"; public static string skinBrotherHurtBodyDefault = "RoR2/Base/Brother/skinBrotherHurtBodyDefault.asset"; public static string skinBrotherHauntBodyDefault = "RoR2/Base/BrotherHaunt/skinBrotherHauntBodyDefault.asset"; public static string skinCaptainAlt = "RoR2/Base/Captain/skinCaptainAlt.asset"; public static string skinCaptainAltColossus = "RoR2/Base/Captain/skinCaptainAltColossus.asset"; public static string skinCaptainAltSolus = "RoR2/Base/Captain/skinCaptainAltSolus.asset"; public static string skinCaptainAltSolusopaque = "RoR2/Base/Captain/skinCaptainAltSolus_opaque.asset"; public static string skinCaptainDefault = "RoR2/Base/Captain/skinCaptainDefault.asset"; public static string skinClayBossBodyDefault = "RoR2/Base/ClayBoss/skinClayBossBodyDefault.asset"; public static string skinClayBruiserBodyDefault = "RoR2/Base/ClayBruiser/skinClayBruiserBodyDefault.asset"; public static string skinCommandoAlt = "RoR2/Base/Commando/skinCommandoAlt.asset"; public static string skinCommandoAltColorShift01 = "RoR2/Base/Commando/skinCommandoAltColorShift01.asset"; public static string skinCommandoAltColossus = "RoR2/Base/Commando/skinCommandoAltColossus.asset"; public static string skinCommandoAltVulture = "RoR2/Base/Commando/skinCommandoAltVulture.asset"; public static string skinCommandoDefault = "RoR2/Base/Commando/skinCommandoDefault.asset"; public static string skinCrocoAlt = "RoR2/Base/Croco/skinCrocoAlt.asset"; public static string skinCrocoAltColossus = "RoR2/Base/Croco/skinCrocoAltColossus.asset"; public static string skinCrocoAltVulture = "RoR2/Base/Croco/skinCrocoAltVulture.asset"; public static string skinCrocoDefault = "RoR2/Base/Croco/skinCrocoDefault.asset"; public static string skinBackupDroneBodyDefault = "RoR2/Base/Drones/skinBackupDroneBodyDefault.asset"; public static string skinDrone1BodyDefault = "RoR2/Base/Drones/skinDrone1BodyDefault.asset"; public static string skinDrone1BrokenDefault = "RoR2/Base/Drones/skinDrone1BrokenDefault.asset"; public static string skinDrone2BodyDefault = "RoR2/Base/Drones/skinDrone2BodyDefault.asset"; public static string skinDrone2BrokenDefault = "RoR2/Base/Drones/skinDrone2BrokenDefault.asset"; public static string skinEmergencyDroneBodyDefault = "RoR2/Base/Drones/skinEmergencyDroneBodyDefault.asset"; public static string skinEmergencyDroneBrokenDefault = "RoR2/Base/Drones/skinEmergencyDroneBrokenDefault.asset"; public static string skinEquipmentDroneBodyDefault = "RoR2/Base/Drones/skinEquipmentDroneBodyDefault.asset"; public static string skinEquipmentDroneBrokenDefault = "RoR2/Base/Drones/skinEquipmentDroneBrokenDefault.asset"; public static string skinFlameDroneBodyDefault = "RoR2/Base/Drones/skinFlameDroneBodyDefault.asset"; public static string skinFlameDroneBrokenDefault = "RoR2/Base/Drones/skinFlameDroneBrokenDefault.asset"; public static string skinMegaDroneBodyDefault = "RoR2/Base/Drones/skinMegaDroneBodyDefault.asset"; public static string skinMegaDroneBrokenDefault = "RoR2/Base/Drones/skinMegaDroneBrokenDefault.asset"; public static string skinMissileDroneBodyDefault = "RoR2/Base/Drones/skinMissileDroneBodyDefault.asset"; public static string skinMissileDroneBrokenDefault = "RoR2/Base/Drones/skinMissileDroneBrokenDefault.asset"; public static string skinTurret1BodyDefault = "RoR2/Base/Drones/skinTurret1BodyDefault.asset"; public static string skinElectricWormBodyDefault = "RoR2/Base/ElectricWorm/skinElectricWormBodyDefault.asset"; public static string skinEngiTurretAlt = "RoR2/Base/Engi/skinEngiTurretAlt.asset"; public static string skinEngiTurretAltColossus = "RoR2/Base/Engi/skinEngiTurretAltColossus.asset"; public static string skinEngiTurretAltVulture = "RoR2/Base/Engi/skinEngiTurretAltVulture.asset"; public static string skinEngiTurretDefault = "RoR2/Base/Engi/skinEngiTurretDefault.asset"; public static string skinEngiWalkerTurretAlt = "RoR2/Base/Engi/skinEngiWalkerTurretAlt.asset"; public static string skinEngiWalkerTurretAltColossus = "RoR2/Base/Engi/skinEngiWalkerTurretAltColossus.asset"; public static string skinEngiWalkerTurretDefault = "RoR2/Base/Engi/skinEngiWalkerTurretDefault.asset"; public static string skinEngiWalkerTurretVulture = "RoR2/Base/Engi/skinEngiWalkerTurretVulture.asset"; public static string skinEngiAlt = "RoR2/Base/Engi/skinEngiAlt.asset"; public static string skinEngiAltColossus = "RoR2/Base/Engi/skinEngiAltColossus.asset"; public static string skinEngiAltVulture = "RoR2/Base/Engi/skinEngiAltVulture.asset"; public static string skinEngiDefault = "RoR2/Base/Engi/skinEngiDefault.asset"; public static string skinExplosivePotDestructibleBodyDefault = "RoR2/Base/ExplosivePotDestructible/skinExplosivePotDestructibleBodyDefault.asset"; public static string skinFusionCellDestructibleBodyDefault = "RoR2/Base/FusionCellDestructible/skinFusionCellDestructibleBodyDefault.asset"; public static string skinGolemDefault = "RoR2/Base/Golem/skinGolemDefault.asset"; public static string skinGolemNature = "RoR2/Base/Golem/skinGolemNature.asset"; public static string skinGolemSandy = "RoR2/Base/Golem/skinGolemSandy.asset"; public static string skinGolemSnowy = "RoR2/Base/Golem/skinGolemSnowy.asset"; public static string skinGrandParentBodyDefault = "RoR2/Base/Grandparent/skinGrandParentBodyDefault.asset"; public static string skinGravekeeperBodyDefault = "RoR2/Base/Gravekeeper/skinGravekeeperBodyDefault.asset"; public static string skinGreaterWispBodyDefault = "RoR2/Base/GreaterWisp/skinGreaterWispBodyDefault.asset"; public static string skinHermitCrabBodyDefault = "RoR2/Base/HermitCrab/skinHermitCrabBodyDefault.asset"; public static string skinHuntressAlt = "RoR2/Base/Huntress/skinHuntressAlt.asset"; public static string skinHuntressAltColossus = "RoR2/Base/Huntress/skinHuntressAltColossus.asset"; public static string skinHuntressAltVulture = "RoR2/Base/Huntress/skinHuntressAltVulture.asset"; public static string skinHuntressDefault = "RoR2/Base/Huntress/skinHuntressDefault.asset"; public static string skinImpBodyDefault = "RoR2/Base/Imp/skinImpBodyDefault.asset"; public static string skinImpBossBodyDefault = "RoR2/Base/ImpBoss/skinImpBossBodyDefault.asset"; public static string skinJellyfishBodyDefault = "RoR2/Base/Jellyfish/skinJellyfishBodyDefault.asset"; public static string skinLemurianBodyDefault = "RoR2/Base/Lemurian/skinLemurianBodyDefault.asset"; public static string skinLemurianBruiserBodyDefault = "RoR2/Base/LemurianBruiser/skinLemurianBruiserBodyDefault.asset"; public static string skinLoaderAlt = "RoR2/Base/Loader/skinLoaderAlt.asset"; public static string skinLoaderAltColossus = "RoR2/Base/Loader/skinLoaderAltColossus.asset"; public static string skinLoaderAltSolus = "RoR2/Base/Loader/skinLoaderAltSolus.asset"; public static string skinLoaderAltSolusopaque = "RoR2/Base/Loader/skinLoaderAltSolus_opaque.asset"; public static string skinLoaderDefault = "RoR2/Base/Loader/skinLoaderDefault.asset"; public static string skinLunarExploderBodyDefault = "RoR2/Base/LunarExploder/skinLunarExploderBodyDefault.asset"; public static string skinLunarGolemBodyDefault = "RoR2/Base/LunarGolem/skinLunarGolemBodyDefault.asset"; public static string skinLunarWispBodyDefault = "RoR2/Base/LunarWisp/skinLunarWispBodyDefault.asset"; public static string skinMageAlt = "RoR2/Base/Mage/skinMageAlt.asset"; public static string skinMageAltColossus = "RoR2/Base/Mage/skinMageAltColossus.asset"; public static string skinMageAltSolus = "RoR2/Base/Mage/skinMageAltSolus.asset"; public static string skinMageAltSolusopaque = "RoR2/Base/Mage/skinMageAltSolus_opaque.asset"; public static string skinMageDefault = "RoR2/Base/Mage/skinMageDefault.asset"; public static string skinMagmaWormBodyDefault = "RoR2/Base/MagmaWorm/skinMagmaWormBodyDefault.asset"; public static string skinMercAlt = "RoR2/Base/Merc/skinMercAlt.asset"; public static string skinMercAltColossus = "RoR2/Base/Merc/skinMercAltColossus.asset"; public static string skinMercAltPrisoner = "RoR2/Base/Merc/skinMercAltPrisoner.asset"; public static string skinMercAltVulture = "RoR2/Base/Merc/skinMercAltVulture.asset"; public static string skinMercDefault = "RoR2/Base/Merc/skinMercDefault.asset"; public static string skinMiniMushroomBodyDefault = "RoR2/Base/MiniMushroom/skinMiniMushroomBodyDefault.asset"; public static string skinNullifierDefault = "RoR2/Base/Nullifier/skinNullifierDefault.asset"; public static string skinNullifierAllyBodyDefault = "RoR2/Base/Nullifier/skinNullifierAllyBodyDefault.asset"; public static string skinNullifierBodyDefault = "RoR2/Base/Nullifier/skinNullifierBodyDefault.asset"; public static string skinParentBodyDefault = "RoR2/Base/Parent/skinParentBodyDefault.asset"; public static string skinRoboBallMiniBodyDefault = "RoR2/Base/RoboBallBoss/skinRoboBallMiniBodyDefault.asset"; public static string skinRoboBallBossBodyDefault = "RoR2/Base/RoboBallBoss/skinRoboBallBossBodyDefault.asset"; public static string skinSuperRoboBallBossBodyDefault = "RoR2/Base/RoboBallBoss/skinSuperRoboBallBossBodyDefault.asset"; public static string skinScavBodyDefault = "RoR2/Base/Scav/skinScavBodyDefault.asset"; public static string skinScavLunarBodyDefault = "RoR2/Base/ScavLunar/skinScavLunarBodyDefault.asset"; public static string skinShopkeeperBodyDefault = "RoR2/Base/Shopkeeper/skinShopkeeperBodyDefault.asset"; public static string skinTitanBlackBeach = "RoR2/Base/Titan/skinTitanBlackBeach.asset"; public static string skinTitanDampCave = "RoR2/Base/Titan/skinTitanDampCave.asset"; public static string skinTitanDefault = "RoR2/Base/Titan/skinTitanDefault.asset"; public static string skinTitanGold = "RoR2/Base/Titan/skinTitanGold.asset"; public static string skinTitanGolemPlains = "RoR2/Base/Titan/skinTitanGolemPlains.asset"; public static string skinTitanGooLake = "RoR2/Base/Titan/skinTitanGooLake.asset"; public static string skinToolbotAlt = "RoR2/Base/Toolbot/skinToolbotAlt.asset"; public static string skinToolbotAltColossus = "RoR2/Base/Toolbot/skinToolbotAltColossus.asset"; public static string skinToolbotAltVulture = "RoR2/Base/Toolbot/skinToolbotAltVulture.asset"; public static string skinToolbotDefault = "RoR2/Base/Toolbot/skinToolbotDefault.asset"; public static string skinTreebotAlt = "RoR2/Base/Treebot/skinTreebotAlt.asset"; public static string skinTreebotAltColossus = "RoR2/Base/Treebot/skinTreebotAltColossus.asset"; public static string skinTreebotAltSolus = "RoR2/Base/Treebot/skinTreebotAltSolus.asset"; public static string skinTreebotAltSolusopaque = "RoR2/Base/Treebot/skinTreebotAltSolus_opaque.asset"; public static string skinTreebotDefault = "RoR2/Base/Treebot/skinTreebotDefault.asset"; public static string skinVagrantBodyDefault = "RoR2/Base/Vagrant/skinVagrantBodyDefault.asset"; public static string skinVultureBodyDefault = "RoR2/Base/Vulture/skinVultureBodyDefault.asset"; public static string skinWispBodyDefault = "RoR2/Base/Wisp/skinWispBodyDefault.asset"; public static string skinUrchinTurretBodyDefault = "RoR2/Base/ElitePoison/skinUrchinTurretBodyDefault.asset"; public static string skinTimeCrystalBodyDefault = "RoR2/Base/WeeklyRun/skinTimeCrystalBodyDefault.asset"; public static string skinBeetleGuardAllyDefault = "RoR2/Base/BeetleGland/skinBeetleGuardAllyDefault.asset"; public static string skinRoboBallGreenBuddyBodyDefault = "RoR2/Base/RoboBallBuddy/skinRoboBallGreenBuddyBodyDefault.asset"; public static string skinRoboBallRedBuddyBodyDefault = "RoR2/Base/RoboBallBuddy/skinRoboBallRedBuddyBodyDefault.asset"; public static string skinSquidTurretBodyDefault = "RoR2/Base/Squid/skinSquidTurretBodyDefault.asset"; public static string skinVultureEggBodyDefault = "RoR2/Base/shipgraveyard/skinVultureEggBodyDefault.asset"; public static string skinSMMaulingRockLargeDefault = "RoR2/Base/skymeadow/skinSMMaulingRockLargeDefault.asset"; public static string skinSMMaulingRockMediumDefault = "RoR2/Base/skymeadow/skinSMMaulingRockMediumDefault.asset"; public static string skinSMMaulingRockSmallDefault = "RoR2/Base/skymeadow/skinSMMaulingRockSmallDefault.asset"; public static string skinAcidLarvaBodyDefault = "RoR2/DLC1/AcidLarva/skinAcidLarvaBodyDefault.asset"; public static string skinAssassin2BodyDefault = "RoR2/DLC1/Assassin2/skinAssassin2BodyDefault.asset"; public static string skinClayGrenadierBodyDefault = "RoR2/DLC1/ClayGrenadier/skinClayGrenadierBodyDefault.asset"; public static string skinCommandoMarine = "RoR2/DLC1/skinCommandoMarine.asset"; public static string skinDroneCommanderBodyDefault = "RoR2/DLC1/DroneCommander/skinDroneCommanderBodyDefault.asset"; public static string skinFlyingVerminDefault = "RoR2/DLC1/FlyingVermin/skinFlyingVerminDefault.asset"; public static string skinFlyingVerminSnowy = "RoR2/DLC1/FlyingVermin/skinFlyingVerminSnowy.asset"; public static string skinGeepBodyDefault = "RoR2/DLC1/Gup/skinGeepBodyDefault.asset"; public static string skinGipBodyDefault = "RoR2/DLC1/Gup/skinGipBodyDefault.asset"; public static string skinGupBodyDefault = "RoR2/DLC1/Gup/skinGupBodyDefault.asset"; public static string skinMajorConstructBodyDefault = "RoR2/DLC1/MajorAndMinorConstruct/skinMajorConstructBodyDefault.asset"; public static string skinMegaConstructBodyDefault = "RoR2/DLC1/MajorAndMinorConstruct/skinMegaConstructBodyDefault.asset"; public static string skinMinorConstructBodyDefault = "RoR2/DLC1/MajorAndMinorConstruct/skinMinorConstructBodyDefault.asset"; public static string skinMinorConstructOnKillBodyDefault = "RoR2/DLC1/MajorAndMinorConstruct/skinMinorConstructOnKillBodyDefault.asset"; public static string skinRailGunnerAlt = "RoR2/DLC1/Railgunner/skinRailGunnerAlt.asset"; public static string skinRailGunnerAltColossus = "RoR2/DLC1/Railgunner/skinRailGunnerAltColossus.asset"; public static string skinRailGunnerDefault = "RoR2/DLC1/Railgunner/skinRailGunnerDefault.asset"; public static string skinSulfurPodBodyDefault = "RoR2/DLC1/SulfurPod/skinSulfurPodBodyDefault.asset"; public static string skinVermin = "RoR2/DLC1/Vermin/skinVermin.asset"; public static string skinVerminSnowy = "RoR2/DLC1/Vermin/skinVerminSnowy.asset"; public static string skinVoidBarnacleBodyDefault = "RoR2/DLC1/VoidBarnacle/skinVoidBarnacleBodyDefault.asset"; public static string skinVoidBarnacleNoCastBodyDefault = "RoR2/DLC1/VoidBarnacle/skinVoidBarnacleNoCastBodyDefault.asset"; public static string skinVoidJailerAlly = "RoR2/DLC1/VoidJailer/skinVoidJailerAlly.asset"; public static string skinVoidJailerDefault = "RoR2/DLC1/VoidJailer/skinVoidJailerDefault.asset"; public static string skinVoidJailerAllyBodyDefault = "RoR2/DLC1/VoidJailer/skinVoidJailerAllyBodyDefault.asset"; public static string skinVoidJailerBodyDefault = "RoR2/DLC1/VoidJailer/skinVoidJailerBodyDefault.asset"; public static string skinVoidMegaCrabAlly = "RoR2/DLC1/VoidMegaCrab/skinVoidMegaCrabAlly.asset"; public static string skinVoidMegaCrabDefault = "RoR2/DLC1/VoidMegaCrab/skinVoidMegaCrabDefault.asset"; public static string skinVoidMegaCrabAllyBodyDefault = "RoR2/DLC1/VoidMegaCrab/skinVoidMegaCrabAllyBodyDefault.asset"; public static string skinVoidMegaCrabBodyDefault = "RoR2/DLC1/VoidMegaCrab/skinVoidMegaCrabBodyDefault.asset"; public static string skinMiniVoidRaidCrabBodyBaseDefault = "RoR2/DLC1/VoidRaidCrab/skinMiniVoidRaidCrabBodyBaseDefault.asset"; public static string skinVoidRaidCrabBodyDefault = "RoR2/DLC1/VoidRaidCrab/skinVoidRaidCrabBodyDefault.asset"; public static string skinVoidRaidCrabJointBodyDefault = "RoR2/DLC1/VoidRaidCrab/skinVoidRaidCrabJointBodyDefault.asset"; public static string skinVoidSurvivorAlt = "RoR2/DLC1/VoidSurvivor/skinVoidSurvivorAlt.asset"; public static string skinVoidSurvivorAltColossus = "RoR2/DLC1/VoidSurvivor/skinVoidSurvivorAltColossus.asset"; public static string skinVoidSurvivorDefault = "RoR2/DLC1/VoidSurvivor/skinVoidSurvivorDefault.asset"; public static string skinAffixEarthHealerBodyDefault = "RoR2/DLC1/EliteEarth/skinAffixEarthHealerBodyDefault.asset"; public static string skinVoidInfestorBodyDefault = "RoR2/DLC1/EliteVoid/skinVoidInfestorBodyDefault.asset"; public static string skinSMInfiniteTowerMaulingRockLargeDefault = "RoR2/DLC1/itskymeadow/skinSMInfiniteTowerMaulingRockLargeDefault.asset"; public static string skinSMInfiniteTowerMaulingRockMediumDefault = "RoR2/DLC1/itskymeadow/skinSMInfiniteTowerMaulingRockMediumDefault.asset"; public static string skinSMInfiniteTowerMaulingRockSmallDefault = "RoR2/DLC1/itskymeadow/skinSMInfiniteTowerMaulingRockSmallDefault.asset"; public static string skinChefAlt = "RoR2/DLC2/Chef/skinChefAlt.asset"; public static string skinChefDefault = "RoR2/DLC2/Chef/skinChefDefault.asset"; public static string skinChildBodyDefault = "RoR2/DLC2/Child/skinChildBodyDefault.asset"; public static string skinCorruptionSpikeDefault = "RoR2/DLC2/CorruptionSpike/skinCorruptionSpikeDefault.asset"; public static string skinFalseSonAlt = "RoR2/DLC2/FalseSon/skinFalseSonAlt.asset"; public static string skinFalseSonDefault = "RoR2/DLC2/FalseSon/skinFalseSonDefault.asset"; public static string skinFalseSonBossBodyLunarShardDefault = "RoR2/DLC2/FalseSonBoss/skinFalseSonBossBodyLunarShardDefault.asset"; public static string skinFalseSonBossBodyBrokenLunarShardDefault = "RoR2/DLC2/FalseSonBoss/skinFalseSonBossBodyBrokenLunarShardDefault.asset"; public static string skinLunarRainDistanceTestDefault = "RoR2/DLC2/FalseSonBoss/skinLunarRain_DistanceTestDefault.asset"; public static string skinLunarRainDefault = "RoR2/DLC2/FalseSonBoss/skinLunarRainDefault.asset"; public static string skinLunarRainModelDefault = "RoR2/DLC2/FalseSonBoss/skinLunarRainModelDefault.asset"; public static string skinFalseSonBossBodyDefault = "RoR2/DLC2/FalseSonBoss/skinFalseSonBossBodyDefault.asset"; public static string skinHalcyoniteBodyDefault = "RoR2/DLC2/Halcyonite/skinHalcyoniteBodyDefault.asset"; public static string skinScorchlingBodyDefault = "RoR2/DLC2/Scorchling/skinScorchlingBodyDefault.asset"; public static string skinSeekerAlt = "RoR2/DLC2/Seeker/skinSeekerAlt.asset"; public static string skinSeekerDefault = "RoR2/DLC2/Seeker/skinSeekerDefault.asset"; public static string skinBHFruitBigDefault = "RoR2/DLC2/habitat/Assets/skinBHFruitBigDefault.asset"; public static string skinBHFruitSmallDefault = "RoR2/DLC2/habitat/Assets/skinBHFruitSmallDefault.asset"; public static string skinBHFallMushroomDripsDefault = "RoR2/DLC2/habitatfall/Assets/skinBHFallMushroomDripsDefault.asset"; public static string skinDefectiveUnitBodyDefault = "RoR2/DLC3/DefectiveUnit/skinDefectiveUnitBodyDefault.asset"; public static string skinDestructibleSpawnerObjectBodyDefault = "RoR2/DLC3/DestructibleSpawner/skinDestructibleSpawnerObjectBodyDefault.asset"; public static string DrifterSkinAlt1 = "RoR2/DLC3/Drifter/Drifter.Skin.Alt1.asset"; public static string DrifterSkinDefault = "RoR2/DLC3/Drifter/Drifter.Skin.Default.asset"; public static string skinJunkCubePrefabDefault = "RoR2/DLC3/Drifter/skinJunkCubePrefabDefault.asset"; public static string skinDroneTechDef = "RoR2/DLC3/Drone Tech/skinDroneTechDef.asset"; public static string skinDroneTechDefAlt = "RoR2/DLC3/Drone Tech/skinDroneTechDefAlt.asset"; public static string skinBombardmentDroneProjectilePrefabRemoteOpDefault = "RoR2/DLC3/Drones/skinBombardmentDroneProjectilePrefabRemoteOpDefault.asset"; public static string skinBombardmentDroneBodyDefault = "RoR2/DLC3/Drones/skinBombardmentDroneBodyDefault.asset"; public static string skinBombardmentDroneBrokenDefault = "RoR2/DLC3/Drones/skinBombardmentDroneBrokenDefault.asset"; public static string skinCleanupDroneBodyDefault = "RoR2/DLC3/Drones/skinCleanupDroneBodyDefault.asset"; public static string skinCleanupDroneBrokenDefault = "RoR2/DLC3/Drones/skinCleanupDroneBrokenDefault.asset"; public static string skinCopycatDroneBodyDefault = "RoR2/DLC3/Drones/skinCopycatDroneBodyDefault.asset"; public static string skinCopycatDroneBrokenDefault = "RoR2/DLC3/Drones/skinCopycatDroneBrokenDefault.asset"; public static string skinDroneBomberBodyDefault = "RoR2/DLC3/Drones/skinDroneBomberBodyDefault.asset"; public static string skinDTGunnerAlt = "RoR2/DLC3/Drones/skinDTGunnerAlt.asset"; public static string skinDTGunnerDroneBrokenDefault = "RoR2/DLC3/Drones/skinDTGunnerDroneBrokenDefault.asset"; public static string skinDTGunnerlDefault = "RoR2/DLC3/Drones/skinDTGunnerlDefault.asset"; public static string skinDTHaulerDroneBodyDefault = "RoR2/DLC3/Drones/skinDTHaulerDroneBodyDefault.asset"; public static string skinDTHealAlt = "RoR2/DLC3/Drones/skinDTHealAlt.asset"; public static string skinDTHealDefault = "RoR2/DLC3/Drones/skinDTHealDefault.asset"; public static string skinDTHealingDroneBrokenDefault = "RoR2/DLC3/Drones/skinDTHealingDroneBrokenDefault.asset"; public static string skinHaulerDroneBodyDefault = "RoR2/DLC3/Drones/skinHaulerDroneBodyDefault.asset"; public static string skinHaulerDroneBrokenDefault = "RoR2/DLC3/Drones/skinHaulerDroneBrokenDefault.asset"; public static string skinJailerDroneBodyDefault = "RoR2/DLC3/Drones/skinJailerDroneBodyDefault.asset"; public static string skinJailerDroneBrokenDefault = "RoR2/DLC3/Drones/skinJailerDroneBrokenDefault.asset"; public static string skinJunkDroneBodyDefault = "RoR2/DLC3/Drones/skinJunkDroneBodyDefault.asset"; public static string skinJunkDroneBrokenDefault = "RoR2/DLC3/Drones/skinJunkDroneBrokenDefault.asset"; public static string skinRechargeDroneBodyDefault = "RoR2/DLC3/Drones/skinRechargeDroneBodyDefault.asset"; public static string skinRechargeDroneBrokenDefault = "RoR2/DLC3/Drones/skinRechargeDroneBrokenDefault.asset"; public static string skinExplosiveJunkBombDestructibleBodyDefault = "RoR2/DLC3/ExplosiveJunkBombDestructible/skinExplosiveJunkBombDestructibleBodyDefault.asset"; public static string skinExtractorUnitBodyDefault = "RoR2/DLC3/ExtractorUnit/skinExtractorUnitBodyDefault.asset"; public static string skinFriendUnitBodyDefault = "RoR2/DLC3/FriendUnit/skinFriendUnitBodyDefault.asset"; public static string skinIronHaulerBodyDefault = "RoR2/DLC3/IronHauler/skinIronHaulerBodyDefault.asset"; public static string skinMinePodBodyDefault = "RoR2/DLC3/MinePod/skinMinePodBodyDefault.asset"; public static string skinSolusAmalgamatorFlamethrowerCannonBodyDefault = "RoR2/DLC3/SolusAmalgamator/skinSolusAmalgamatorFlamethrowerCannonBodyDefault.asset"; public static string skinSolusAmalgamatorMissilePodBodyDefault = "RoR2/DLC3/SolusAmalgamator/skinSolusAmalgamatorMissilePodBodyDefault.asset"; public static string skinSolusAmalgamatorBodyDefault = "RoR2/DLC3/SolusAmalgamator/skinSolusAmalgamatorBodyDefault.asset"; public static string skinSolusAmalgamatorThrusterBodyDefault = "RoR2/DLC3/SolusAmalgamator/skinSolusAmalgamatorThrusterBodyDefault.asset"; public static string skinSolusMineBodyDefault = "RoR2/DLC3/SolusMine/skinSolusMineBodyDefault.asset"; public static string skinSolusWingLogbookBodyDefault = "RoR2/DLC3/SolusWing/skinSolusWingLogbookBodyDefault.asset"; public static string skinSolusWingBodyDefault = "RoR2/DLC3/SolusWing/skinSolusWingBodyDefault.asset"; public static string skinExhaustPortWeakpointBodyDefault = "RoR2/DLC3/SolusWing/skinExhaustPortWeakpointBodyDefault.asset"; public static string skinFireExtinguisherPodBodyDefault = "RoR2/DLC3/SolusWingForm1/skinFireExtinguisherPodBodyDefault.asset"; public static string skinHeaterPodBodyDefault = "RoR2/DLC3/SolusWingForm1/skinHeaterPodBodyDefault.asset"; public static string skinHeaterPodBodyNoRespawnLargeDefault = "RoR2/DLC3/SolusWingForm1/skinHeaterPodBodyNoRespawn_LargeDefault.asset"; public static string skinHeaterPodBodyNoRespawnDefault = "RoR2/DLC3/SolusWingForm1/skinHeaterPodBodyNoRespawnDefault.asset"; public static string skinBasePodBodyDefault = "RoR2/DLC3/SolusWingForm1/skinBasePodBodyDefault.asset"; public static string skinTankerIgniteDoTProjectileGhostDefault = "RoR2/DLC3/Tanker/skinTankerIgniteDoTProjectileGhostDefault.asset"; public static string skinTankerLogbookBodyDefault = "RoR2/DLC3/Tanker/skinTankerLogbookBodyDefault.asset"; public static string skinTankerBodyDefault = "RoR2/DLC3/Tanker/skinTankerBodyDefault.asset"; public static string skinSolusVendorBodyDefault = "RoR2/DLC3/skinSolusVendorBodyDefault.asset"; public static string skinVultureHunterBodyDefault = "RoR2/DLC3/VultureHunter/skinVultureHunterBodyDefault.asset"; public static string skinWorkerUnitBodyDefault = "RoR2/DLC3/WorkerUnit/skinWorkerUnitBodyDefault.asset"; public static string skinHoloDrone1Default = "RoR2/DLC3/skinHoloDrone1Default.asset"; public static string skinHoloDrone2Default = "RoR2/DLC3/skinHoloDrone2Default.asset"; public static string skinHoloDroneBackupDefault = "RoR2/DLC3/skinHoloDroneBackupDefault.asset"; public static string skinHoloDroneBombardmentDefault = "RoR2/DLC3/skinHoloDroneBombardmentDefault.asset"; public static string skinHoloDroneCleanupDefault = "RoR2/DLC3/skinHoloDroneCleanupDefault.asset"; public static string skinHoloDroneCopycatDefault = "RoR2/DLC3/skinHoloDroneCopycatDefault.asset"; public static string skinHoloDroneEmergencyDefault = "RoR2/DLC3/skinHoloDroneEmergencyDefault.asset"; public static string skinHoloDroneEquipmentDefault = "RoR2/DLC3/skinHoloDroneEquipmentDefault.asset"; public static string skinHoloDroneFlameDefault = "RoR2/DLC3/skinHoloDroneFlameDefault.asset"; public static string skinHoloDroneHaulerDefault = "RoR2/DLC3/skinHoloDroneHaulerDefault.asset"; public static string skinHoloDroneJailerDefault = "RoR2/DLC3/skinHoloDroneJailerDefault.asset"; public static string skinHoloDroneJunkDefault = "RoR2/DLC3/skinHoloDroneJunkDefault.asset"; public static string skinHoloDroneMegaDefault = "RoR2/DLC3/skinHoloDroneMegaDefault.asset"; public static string skinHoloDroneMissileDefault = "RoR2/DLC3/skinHoloDroneMissileDefault.asset"; public static string skinHoloDroneRechargeDefault = "RoR2/DLC3/skinHoloDroneRechargeDefault.asset"; public static string skinPowerOrbShieldTankDefault = "RoR2/DLC3/PowerOrbShieldTank/skinPowerOrbShieldTankDefault.asset"; public static string skinPickupDestructibleSpawnerDefault = "RoR2/DLC3/Items/DestructibleSpawnerItem/skinPickupDestructibleSpawnerDefault.asset"; public static string skinDrifterShieldTankDefault = "RoR2/DLC3/computationalexchange/skinDrifterShieldTankDefault.asset"; public static string skinAncientWispBodyDefault = "RoR2/Junk/AncientWisp/skinAncientWispBodyDefault.asset"; public static string skinArchWispBodyDefault = "RoR2/Junk/ArchWisp/skinArchWispBodyDefault.asset"; public static string skinAssassinBodyDefault = "RoR2/Junk/Assassin/skinAssassinBodyDefault.asset"; public static string skinBackupDroneOldBodyDefault = "RoR2/Junk/BackupDroneOld/skinBackupDroneOldBodyDefault.asset"; public static string skinBanditBodyDefault = "RoR2/Junk/Bandit/skinBanditBodyDefault.asset"; public static string skinBomberBodyDefault = "RoR2/Junk/Bomber/skinBomberBodyDefault.asset"; public static string skinClayBodyDefault = "RoR2/Junk/ClayMan/skinClayBodyDefault.asset"; public static string skinEnforcerBodyDefault = "RoR2/Junk/Enforcer/skinEnforcerBodyDefault.asset"; public static string skinEngiBeamTurretBodyDefault = "RoR2/Junk/Engi/skinEngiBeamTurretBodyDefault.asset"; public static string skinHANDBodyDefault = "RoR2/Junk/HAND/skinHANDBodyDefault.asset"; public static string skinPaladinBodyDefault = "RoR2/Junk/Paladin/skinPaladinBodyDefault.asset"; public static string skinPotMobileBodyDefault = "RoR2/Junk/PotMobile/skinPotMobileBodyDefault.asset"; public static string skinPotMobile2BodyDefault = "RoR2/Junk/PotMobile2/skinPotMobile2BodyDefault.asset"; public static string skinSniperBodyDefault = "RoR2/Junk/Sniper/skinSniperBodyDefault.asset"; public static string skinParentPodBodyDefault = "RoR2/Junk/Incubator/skinParentPodBodyDefault.asset"; } public static class SkinDefParams { public static string skinWispSoulBodyDefaultparams = "RoR2/Base/WispOnDeath/skinWispSoulBodyDefault_params.asset"; public static string skinArtifactShellBodyDefaultparams = "RoR2/Base/ArtifactShell/skinArtifactShellBodyDefault_params.asset"; public static string skinBandit2AltColossusparams = "RoR2/Base/Bandit2/skinBandit2AltColossus_params.asset"; public static string skinBandit2AltSolusparams = "RoR2/Base/Bandit2/skinBandit2AltSolus_params.asset"; public static string skinBandit2AltSolusparamsopaque = "RoR2/Base/Bandit2/skinBandit2AltSolus_params_opaque.asset"; public static string skinBandit2Altparams = "RoR2/Base/Bandit2/skinBandit2Alt_params.asset"; public static string skinBandit2Defaultparams = "RoR2/Base/Bandit2/skinBandit2Default_params.asset"; public static string skinBeetleDefaultparams = "RoR2/Base/Beetle/skinBeetleDefault_params.asset"; public static string skinBeetleDefaultparamsopt = "RoR2/Base/Beetle/skinBeetleDefault_params_opt.asset"; public static string skinBeetleSulfurparams = "RoR2/Base/Beetle/skinBeetleSulfur_params.asset"; public static string skinBeetleSulfurparamsopt = "RoR2/Base/Beetle/skinBeetleSulfur_params_opt.asset"; public static string skinBeetleGuardDefaultparams = "RoR2/Base/BeetleGuard/skinBeetleGuardDefault_params.asset"; public static string skinBeetleGuardSulfurparams = "RoR2/Base/BeetleGuard/skinBeetleGuardSulfur_params.asset"; public static string skinBeetleQueen2Defaultparams = "RoR2/Base/BeetleQueen/skinBeetleQueen2Default_params.asset"; public static string skinBeetleQueen2Sulfurparams = "RoR2/Base/BeetleQueen/skinBeetleQueen2Sulfur_params.asset"; public static string skinBeetleWardDefaultparams = "RoR2/Base/BeetleGroup/BeetleWard/skinBeetleWardDefault_params.asset"; public static string skinBeetleWardSulfurparams = "RoR2/Base/BeetleGroup/BeetleWard/skinBeetleWardSulfur_params.asset"; public static string skinBellBodyDefaultparams = "RoR2/Base/Bell/skinBellBodyDefault_params.asset"; public static string skinBisonBodyDefaultparams = "RoR2/Base/Bison/skinBisonBodyDefault_params.asset"; public static string skinBisonBodyDefaultparamsopt = "RoR2/Base/Bison/skinBisonBodyDefault_params_opt.asset"; public static string skinBrotherBodyDefaultparams = "RoR2/Base/Brother/skinBrotherBodyDefault_params.asset"; public static string skinBrotherHurtBodyDefaultparams = "RoR2/Base/Brother/skinBrotherHurtBodyDefault_params.asset"; public static string skinBrotherHauntBodyDefaultparams = "RoR2/Base/BrotherHaunt/skinBrotherHauntBodyDefault_params.asset"; public static string skinCaptainAltparams = "RoR2/Base/Captain/skinCaptainAlt_params.asset"; public static string skinCaptainAltColossusparams = "RoR2/Base/Captain/skinCaptainAltColossus_params.asset"; public static string skinCaptainAltSolusparams = "RoR2/Base/Captain/skinCaptainAltSolus_params.asset"; public static string skinCaptainAltSolusparamsopaque = "RoR2/Base/Captain/skinCaptainAltSolus_params_opaque.asset"; public static string skinCaptainDefaultparams = "RoR2/Base/Captain/skinCaptainDefault_params.asset"; public static string skinClayBossBodyDefaultparams = "RoR2/Base/ClayBoss/skinClayBossBodyDefault_params.asset"; public static string skinClayBruiserBodyDefaultparams = "RoR2/Base/ClayBruiser/skinClayBruiserBodyDefault_params.asset"; public static string skinCommandoAltparams = "RoR2/Base/Commando/skinCommandoAlt_params.asset"; public static string skinCommandoAltColossusparams = "RoR2/Base/Commando/skinCommandoAltColossus_params.asset"; public static string skinCommandoAltVultureparams = "RoR2/Base/Commando/skinCommandoAltVulture_params.asset"; public static string skinCommandoDefaultparams = "RoR2/Base/Commando/skinCommandoDefault_params.asset"; public static string skinCrocoAltparams = "RoR2/Base/Croco/skinCrocoAlt_params.asset"; public static string skinCrocoAltColossusparams = "RoR2/Base/Croco/skinCrocoAltColossus_params.asset"; public static string skinCrocoAltVultureparams = "RoR2/Base/Croco/skinCrocoAltVulture_params.asset"; public static string skinCrocoDefaultparams = "RoR2/Base/Croco/skinCrocoDefault_params.asset"; public static string skinBackupDroneBodyDefaultparams = "RoR2/Base/Drones/skinBackupDroneBodyDefault_params.asset"; public static string skinDrone1BodyDefaultparams = "RoR2/Base/Drones/skinDrone1BodyDefault_params.asset"; public static string skinDrone1BrokenDefaultparams = "RoR2/Base/Drones/skinDrone1BrokenDefault_params.asset"; public static string skinDrone2BodyDefaultparams = "RoR2/Base/Drones/skinDrone2BodyDefault_params.asset"; public static string skinDrone2BrokenDefaultparams = "RoR2/Base/Drones/skinDrone2BrokenDefault_params.asset"; public static string skinEmergencyDroneBodyDefaultparams = "RoR2/Base/Drones/skinEmergencyDroneBodyDefault_params.asset"; public static string skinEmergencyDroneBrokenDefaultparams = "RoR2/Base/Drones/skinEmergencyDroneBrokenDefault_params.asset"; public static string skinEquipmentDroneBodyDefaultparams = "RoR2/Base/Drones/skinEquipmentDroneBodyDefault_params.asset"; public static string skinEquipmentDroneBrokenDefaultparams = "RoR2/Base/Drones/skinEquipmentDroneBrokenDefault_params.asset"; public static string skinFlameDroneBodyDefaultparams = "RoR2/Base/Drones/skinFlameDroneBodyDefault_params.asset"; public static string skinFlameDroneBrokenDefaultparams = "RoR2/Base/Drones/skinFlameDroneBrokenDefault_params.asset"; public static string skinMegaDroneBodyDefaultparams = "RoR2/Base/Drones/skinMegaDroneBodyDefault_params.asset"; public static string skinMegaDroneBrokenDefaultparams = "RoR2/Base/Drones/skinMegaDroneBrokenDefault_params.asset"; public static string skinMissileDroneBodyDefaultparams = "RoR2/Base/Drones/skinMissileDroneBodyDefault_params.asset"; public static string skinMissileDroneBrokenDefaultparams = "RoR2/Base/Drones/skinMissileDroneBrokenDefault_params.asset"; public static string skinTurret1BodyDefaultparams = "RoR2/Base/Drones/skinTurret1BodyDefault_params.asset"; public static string skinElectricWormBodyDefaultparams = "RoR2/Base/ElectricWorm/skinElectricWormBodyDefault_params.asset"; public static string skinEngiAltVultureparams = "RoR2/Base/Engi/skinEngiAltVulture_params.asset"; public static string skinEngiTurretAltparams = "RoR2/Base/Engi/skinEngiTurretAlt_params.asset"; public static string skinEngiTurretAltColossusparams = "RoR2/Base/Engi/skinEngiTurretAltColossus_params.asset"; public static string skinEngiTurretAltVultureparams = "RoR2/Base/Engi/skinEngiTurretAltVulture_params.asset"; public static string skinEngiTurretDefaultparams = "RoR2/Base/Engi/skinEngiTurretDefault_params.asset"; public static string skinEngiWalkerTurretAltparams = "RoR2/Base/Engi/skinEngiWalkerTurretAlt_params.asset"; public static string skinEngiWalkerTurretAltColossusparams = "RoR2/Base/Engi/skinEngiWalkerTurretAltColossus_params.asset"; public static string skinEngiWalkerTurretAltVultureparams = "RoR2/Base/Engi/skinEngiWalkerTurretAltVulture_params.asset"; public static string skinEngiWalkerTurretDefaultparams = "RoR2/Base/Engi/skinEngiWalkerTurretDefault_params.asset"; public static string skinEngiAltparams = "RoR2/Base/Engi/skinEngiAlt_params.asset"; public static string skinEngiAltColossusparams = "RoR2/Base/Engi/skinEngiAltColossus_params.asset"; public static string skinEngiDefaultparams = "RoR2/Base/Engi/skinEngiDefault_params.asset"; public static string skinExplosivePotDestructibleBodyDefaultparams = "RoR2/Base/ExplosivePotDestructible/skinExplosivePotDestructibleBodyDefault_params.asset"; public static string skinFusionCellDestructibleBodyDefaultparams = "RoR2/Base/FusionCellDestructible/skinFusionCellDestructibleBodyDefault_params.asset"; public static string skinGolemDefaultparams = "RoR2/Base/Golem/skinGolemDefault_params.asset"; public static string skinGolemNatureparams = "RoR2/Base/Golem/skinGolemNature_params.asset"; public static string skinGolemSandyparams = "RoR2/Base/Golem/skinGolemSandy_params.asset"; public static string skinGolemSnowyparams = "RoR2/Base/Golem/skinGolemSnowy_params.asset"; public static string skinGrandParentBodyDefaultparams = "RoR2/Base/Grandparent/skinGrandParentBodyDefault_params.asset"; public static string skinGravekeeperBodyDefaultparams = "RoR2/Base/Gravekeeper/skinGravekeeperBodyDefault_params.asset"; public static string skinGreaterWispBodyDefaultparams = "RoR2/Base/GreaterWisp/skinGreaterWispBodyDefault_params.asset"; public static string skinHermitCrabBodyDefaultparams = "RoR2/Base/HermitCrab/skinHermitCrabBodyDefault_params.asset"; public static string skinHermitCrabBodyDefaultparamsopt = "RoR2/Base/HermitCrab/skinHermitCrabBodyDefault_params_opt.asset"; public static string skinHuntressAltparams = "RoR2/Base/Huntress/skinHuntressAlt_params.asset"; public static string skinHuntressAltColossusparams = "RoR2/Base/Huntress/skinHuntressAltColossus_params.asset"; public static string skinHuntressAltVultureparams = "RoR2/Base/Huntress/skinHuntressAltVulture_params.asset"; public static string skinHuntressDefaultparams = "RoR2/Base/Huntress/skinHuntressDefault_params.asset"; public static string skinImpBodyDefaultparams = "RoR2/Base/Imp/skinImpBodyDefault_params.asset"; public static string skinImpBossBodyDefaultparams = "RoR2/Base/ImpBoss/skinImpBossBodyDefault_params.asset"; public static string skinJellyfishBodyDefaultparams = "RoR2/Base/Jellyfish/skinJellyfishBodyDefault_params.asset"; public static string skinLemurianBodyDefaultparams = "RoR2/Base/Lemurian/skinLemurianBodyDefault_params.asset"; public static string skinLemurianBruiserBodyDefaultparams = "RoR2/Base/LemurianBruiser/skinLemurianBruiserBodyDefault_params.asset"; public static string skinLemurianBruiserBodyDefaultparamsopt = "RoR2/Base/LemurianBruiser/skinLemurianBruiserBodyDefault_params_opt.asset"; public static string skinLoaderAltparams = "RoR2/Base/Loader/skinLoaderAlt_params.asset"; public static string skinLoaderAltColossusparams = "RoR2/Base/Loader/skinLoaderAltColossus_params.asset"; public static string skinLoaderAltSolusparams = "RoR2/Base/Loader/skinLoaderAltSolus_params.asset"; public static string skinLoaderAltSolusparamsopaque = "RoR2/Base/Loader/skinLoaderAltSolus_params_opaque.asset"; public static string skinLoaderDefaultparams = "RoR2/Base/Loader/skinLoaderDefault_params.asset"; public static string skinLunarExploderBodyDefaultparams = "RoR2/Base/LunarExploder/skinLunarExploderBodyDefault_params.asset"; public static string skinLunarExploderBodyDefaultparamsopt = "RoR2/Base/LunarExploder/skinLunarExploderBodyDefault_params_opt.asset"; public static string skinLunarGolemBodyDefaultparams = "RoR2/Base/LunarGolem/skinLunarGolemBodyDefault_params.asset"; public static string skinLunarGolemBodyDefaultparamsopt = "RoR2/Base/LunarGolem/skinLunarGolemBodyDefault_params_opt.asset"; public static string skinLunarWispBodyDefaultparams = "RoR2/Base/LunarWisp/skinLunarWispBodyDefault_params.asset"; public static string skinLunarWispBodyDefaultparamsopt = "RoR2/Base/LunarWisp/skinLunarWispBodyDefault_params_opt.asset"; public static string skinMageAltparams = "RoR2/Base/Mage/skinMageAlt_params.asset"; public static string skinMageAltColossusparams = "RoR2/Base/Mage/skinMageAltColossus_params.asset"; public static string skinMageAltSolusparams = "RoR2/Base/Mage/skinMageAltSolus_params.asset"; public static string skinMageAltSolusparamsopaque = "RoR2/Base/Mage/skinMageAltSolus_params_opaque.asset"; public static string skinMageDefaultparams = "RoR2/Base/Mage/skinMageDefault_params.asset"; public static string skinMagmaWormBodyDefaultparams = "RoR2/Base/MagmaWorm/skinMagmaWormBodyDefault_params.asset"; public static string skinMercAltparams = "RoR2/Base/Merc/skinMercAlt_params.asset"; public static string skinMercAltColossusparams = "RoR2/Base/Merc/skinMercAltColossus_params.asset"; public static string skinMercAltPrisonerparams = "RoR2/Base/Merc/skinMercAltPrisoner_params.asset"; public static string skinMercAltVultureparams = "RoR2/Base/Merc/skinMercAltVulture_params.asset"; public static string skinMercDefaultparams = "RoR2/Base/Merc/skinMercDefault_params.asset"; public static string skinMiniMushroomBodyDefaultparams = "RoR2/Base/MiniMushroom/skinMiniMushroomBodyDefault_params.asset"; public static string skinMiniMushroomBodyDefaultparamsopt = "RoR2/Base/MiniMushroom/skinMiniMushroomBodyDefault_params_opt.asset"; public static string skinNullifierAllyBodyDefaultparams = "RoR2/Base/Nullifier/skinNullifierAllyBodyDefault_params.asset"; public static string skinNullifierBodyDefaultparams = "RoR2/Base/Nullifier/skinNullifierBodyDefault_params.asset"; public static string skinParentBodyDefaultparams = "RoR2/Base/Parent/skinParentBodyDefault_params.asset"; public static string skinRoboBallMiniBodyDefaultparams = "RoR2/Base/RoboBallBoss/skinRoboBallMiniBodyDefault_params.asset"; public static string skinRoboBallBossBodyDefaultparams = "RoR2/Base/RoboBallBoss/skinRoboBallBossBodyDefault_params.asset"; public static string skinSuperRoboBallBossBodyDefaultparams = "RoR2/Base/RoboBallBoss/skinSuperRoboBallBossBodyDefault_params.asset"; public static string skinScavBodyDefaultparams = "RoR2/Base/Scav/skinScavBodyDefault_params.asset"; public static string skinScavLunarBodyDefaultparams = "RoR2/Base/ScavLunar/skinScavLunarBodyDefault_params.asset"; public static string skinShopkeeperBodyDefaultparams = "RoR2/Base/Shopkeeper/skinShopkeeperBodyDefault_params.asset"; public static string skinTitanBlackBeachparams = "RoR2/Base/Titan/skinTitanBlackBeach_params.asset"; public static string skinTitanDampCaveparams = "RoR2/Base/Titan/skinTitanDampCave_params.asset"; public static string skinTitanDefaultparams = "RoR2/Base/Titan/skinTitanDefault_params.asset"; public static string skinTitanGoldparams = "RoR2/Base/Titan/skinTitanGold_params.asset"; public static string skinTitanGolemPlainsparams = "RoR2/Base/Titan/skinTitanGolemPlains_params.asset"; public static string skinTitanGooLakeparams = "RoR2/Base/Titan/skinTitanGooLake_params.asset"; public static string skinTitanBlackBeachparamsopt = "RoR2/Base/Titan/skinTitanBlackBeach_params_opt.asset"; public static string skinTitanDampCaveparamsopt = "RoR2/Base/Titan/skinTitanDampCave_params_opt.asset"; public static string skinTitanDefaultparamsopt = "RoR2/Base/Titan/skinTitanDefault_params_opt.asset"; public static string skinTitanGolemPlainsparamsopt = "RoR2/Base/Titan/skinTitanGolemPlains_params_opt.asset"; public static string skinTitanGooLakeparamsopt = "RoR2/Base/Titan/skinTitanGooLake_params_opt.asset"; public static string skinToolbotAltparams = "RoR2/Base/Toolbot/skinToolbotAlt_params.asset"; public static string skinToolbotAltColossusparams = "RoR2/Base/Toolbot/skinToolbotAltColossus_params.asset"; public static string skinToolbotAltVultureparams = "RoR2/Base/Toolbot/skinToolbotAltVulture_params.asset"; public static string skinToolbotDefaultparams = "RoR2/Base/Toolbot/skinToolbotDefault_params.asset"; public static string skinTreebotAltparams = "RoR2/Base/Treebot/skinTreebotAlt_params.asset"; public static string skinTreebotAltColossusparams = "RoR2/Base/Treebot/skinTreebotAltColossus_params.asset"; public static string skinTreebotAltSolusparams = "RoR2/Base/Treebot/skinTreebotAltSolus_params.asset"; public static string skinTreebotAltSolusparamsopaque = "RoR2/Base/Treebot/skinTreebotAltSolus_params_opaque.asset"; public static string skinTreebotDefaultparams = "RoR2/Base/Treebot/skinTreebotDefault_params.asset"; public static string skinVagrantBodyDefaultparams = "RoR2/Base/Vagrant/skinVagrantBodyDefault_params.asset"; public static string skinVultureBodyDefaultparams = "RoR2/Base/Vulture/skinVultureBodyDefault_params.asset"; public static string skinWispBodyDefaultparams = "RoR2/Base/Wisp/skinWispBodyDefault_params.asset"; public static string skinUrchinTurretBodyDefaultparams = "RoR2/Base/ElitePoison/skinUrchinTurretBodyDefault_params.asset"; public static string skinTimeCrystalBodyDefaultparams = "RoR2/Base/WeeklyRun/skinTimeCrystalBodyDefault_params.asset"; public static string skinBeetleGuardAllyDefaultparams = "RoR2/Base/BeetleGland/skinBeetleGuardAllyDefault_params.asset"; public static string skinRoboBallGreenBuddyBodyDefaultparams = "RoR2/Base/RoboBallBuddy/skinRoboBallGreenBuddyBodyDefault_params.asset"; public static string skinRoboBallRedBuddyBodyDefaultparams = "RoR2/Base/RoboBallBuddy/skinRoboBallRedBuddyBodyDefault_params.asset"; public static string skinSquidTurretBodyDefaultparams = "RoR2/Base/Squid/skinSquidTurretBodyDefault_params.asset"; public static string skinVultureEggBodyDefaultparams = "RoR2/Base/shipgraveyard/skinVultureEggBodyDefault_params.asset"; public static string skinSMMaulingRockLargeDefaultparams = "RoR2/Base/skymeadow/skinSMMaulingRockLargeDefault_params.asset"; public static string skinSMMaulingRockMediumDefaultparams = "RoR2/Base/skymeadow/skinSMMaulingRockMediumDefault_params.asset"; public static string skinSMMaulingRockSmallDefaultparams = "RoR2/Base/skymeadow/skinSMMaulingRockSmallDefault_params.asset"; public static string skinAcidLarvaBodyDefaultparams = "RoR2/DLC1/AcidLarva/skinAcidLarvaBodyDefault_params.asset"; public static string skinAssassin2BodyDefaultparams = "RoR2/DLC1/Assassin2/skinAssassin2BodyDefault_params.asset"; public static string skinClayGrenadierBodyDefaultparams = "RoR2/DLC1/ClayGrenadier/skinClayGrenadierBodyDefault_params.asset"; public static string skinDroneCommanderBodyDefaultparams = "RoR2/DLC1/DroneCommander/skinDroneCommanderBodyDefault_params.asset"; public static string skinFlyingVerminDefaultparams = "RoR2/DLC1/FlyingVermin/skinFlyingVerminDefault_params.asset"; public static string skinFlyingVerminSnowyparams = "RoR2/DLC1/FlyingVermin/skinFlyingVerminSnowy_params.asset"; public static string skinGeepBodyDefaultparams = "RoR2/DLC1/Gup/skinGeepBodyDefault_params.asset"; public static string skinGipBodyDefaultparams = "RoR2/DLC1/Gup/skinGipBodyDefault_params.asset"; public static string skinGupBodyDefaultparams = "RoR2/DLC1/Gup/skinGupBodyDefault_params.asset"; public static string skinMajorConstructBodyDefaultparams = "RoR2/DLC1/MajorAndMinorConstruct/skinMajorConstructBodyDefault_params.asset"; public static string skinMegaConstructBodyDefaultparams = "RoR2/DLC1/MajorAndMinorConstruct/skinMegaConstructBodyDefault_params.asset"; public static string skinMinorConstructBodyDefaultparams = "RoR2/DLC1/MajorAndMinorConstruct/skinMinorConstructBodyDefault_params.asset"; public static string skinMinorConstructOnKillBodyDefaultparams = "RoR2/DLC1/MajorAndMinorConstruct/skinMinorConstructOnKillBodyDefault_params.asset"; public static string skinRailGunnerAltparams = "RoR2/DLC1/Railgunner/skinRailGunnerAlt_params.asset"; public static string skinRailGunnerAltColossusparams = "RoR2/DLC1/Railgunner/skinRailGunnerAltColossus_params.asset"; public static string skinRailGunnerDefaultparams = "RoR2/DLC1/Railgunner/skinRailGunnerDefault_params.asset"; public static string skinSulfurPodBodyDefaultparams = "RoR2/DLC1/SulfurPod/skinSulfurPodBodyDefault_params.asset"; public static string skinVerminparams = "RoR2/DLC1/Vermin/skinVermin_params.asset"; public static string skinVerminSnowyparams = "RoR2/DLC1/Vermin/skinVerminSnowy_params.asset"; public static string skinVoidBarnacleBodyDefaultparams = "RoR2/DLC1/VoidBarnacle/skinVoidBarnacleBodyDefault_params.asset"; public static string skinVoidBarnacleNoCastBodyDefaultparams = "RoR2/DLC1/VoidBarnacle/skinVoidBarnacleNoCastBodyDefault_params.asset"; public static string skinVoidJailerAllyBodyDefaultparams = "RoR2/DLC1/VoidJailer/skinVoidJailerAllyBodyDefault_params.asset"; public static string skinVoidJailerBodyDefaultparams = "RoR2/DLC1/VoidJailer/skinVoidJailerBodyDefault_params.asset"; public static string skinVoidMegaCrabAllyBodyDefaultparams = "RoR2/DLC1/VoidMegaCrab/skinVoidMegaCrabAllyBodyDefault_params.asset"; public static string skinVoidMegaCrabBodyDefaultparams = "RoR2/DLC1/VoidMegaCrab/skinVoidMegaCrabBodyDefault_params.asset"; public static string skinMiniVoidRaidCrabBodyBaseDefaultparams = "RoR2/DLC1/VoidRaidCrab/skinMiniVoidRaidCrabBodyBaseDefault_params.asset"; public static string skinVoidRaidCrabBodyDefaultparams = "RoR2/DLC1/VoidRaidCrab/skinVoidRaidCrabBodyDefault_params.asset"; public static string skinVoidRaidCrabJointBodyDefaultparams = "RoR2/DLC1/VoidRaidCrab/skinVoidRaidCrabJointBodyDefault_params.asset"; public static string skinVoidSurvivorAltparams = "RoR2/DLC1/VoidSurvivor/skinVoidSurvivorAlt_params.asset"; public static string skinVoidSurvivorAltColossusparams = "RoR2/DLC1/VoidSurvivor/skinVoidSurvivorAltColossus_params.asset"; public static string skinVoidSurvivorDefaultparams = "RoR2/DLC1/VoidSurvivor/skinVoidSurvivorDefault_params.asset"; public static string skinAffixEarthHealerBodyDefaultparams = "RoR2/DLC1/EliteEarth/skinAffixEarthHealerBodyDefault_params.asset"; public static string skinVoidInfestorBodyDefaultparams = "RoR2/DLC1/EliteVoid/skinVoidInfestorBodyDefault_params.asset"; public static string skinSMInfiniteTowerMaulingRockLargeDefaultparams = "RoR2/DLC1/itskymeadow/skinSMInfiniteTowerMaulingRockLargeDefault_params.asset"; public static string skinSMInfiniteTowerMaulingRockMediumDefaultparams = "RoR2/DLC1/itskymeadow/skinSMInfiniteTowerMaulingRockMediumDefault_params.asset"; public static string skinSMInfiniteTowerMaulingRockSmallDefaultparams = "RoR2/DLC1/itskymeadow/skinSMInfiniteTowerMaulingRockSmallDefault_params.asset"; public static string skinChefAltparams = "RoR2/DLC2/Chef/skinChefAlt_params.asset"; public static string skinChefDefaultparams = "RoR2/DLC2/Chef/skinChefDefault_params.asset"; public static string skinChildBodyDefaultparams = "RoR2/DLC2/Child/skinChildBodyDefault_params.asset"; public static string skinCorruptionSpikeDefaultparams = "RoR2/DLC2/CorruptionSpike/skinCorruptionSpikeDefault_params.asset"; public static string skinFalseSonAltparams = "RoR2/DLC2/FalseSon/skinFalseSonAlt_params.asset"; public static string skinFalseSonDefaultparams = "RoR2/DLC2/FalseSon/skinFalseSonDefault_params.asset"; public static string skinFalseSonBossBodyLunarShardDefaultparams = "RoR2/DLC2/FalseSonBoss/skinFalseSonBossBodyLunarShardDefault_params.asset"; public static string skinFalseSonBossBodyBrokenLunarShardDefaultparams = "RoR2/DLC2/FalseSonBoss/skinFalseSonBossBodyBrokenLunarShardDefault_params.asset"; public static string skinLunarRainDistanceTestDefaultparams = "RoR2/DLC2/FalseSonBoss/skinLunarRain_DistanceTestDefault_params.asset"; public static string skinLunarRainDefaultparams = "RoR2/DLC2/FalseSonBoss/skinLunarRainDefault_params.asset"; public static string skinLunarRainModelDefaultparams = "RoR2/DLC2/FalseSonBoss/skinLunarRainModelDefault_params.asset"; public static string skinFalseSonBossBodyDefaultparams = "RoR2/DLC2/FalseSonBoss/skinFalseSonBossBodyDefault_params.asset"; public static string skinHalcyoniteBodyDefaultparams = "RoR2/DLC2/Halcyonite/skinHalcyoniteBodyDefault_params.asset"; public static string skinScorchlingBodyDefaultparams = "RoR2/DLC2/Scorchling/skinScorchlingBodyDefault_params.asset"; public static string skinSeekerAltparams = "RoR2/DLC2/Seeker/skinSeekerAlt_params.asset"; public static string skinSeekerDefaultparams = "RoR2/DLC2/Seeker/skinSeekerDefault_params.asset"; public static string skinBHFruitBigDefaultparams = "RoR2/DLC2/habitat/Assets/skinBHFruitBigDefault_params.asset"; public static string skinBHFruitSmallDefaultparams = "RoR2/DLC2/habitat/Assets/skinBHFruitSmallDefault_params.asset"; public static string skinBHFallMushroomDripsDefaultparams = "RoR2/DLC2/habitatfall/Assets/skinBHFallMushroomDripsDefault_params.asset"; public static string skinDefectiveUnitBodyDefaultparams = "RoR2/DLC3/DefectiveUnit/skinDefectiveUnitBodyDefault_params.asset"; public static string skinDestructibleSpawnerObjectBodyDefaultparams = "RoR2/DLC3/DestructibleSpawner/skinDestructibleSpawnerObjectBodyDefault_params.asset"; public static string DrifterSkinAlt1params = "RoR2/DLC3/Drifter/Drifter.Skin.Alt1_params.asset"; public static string DrifterSkinDefaultparams = "RoR2/DLC3/Drifter/Drifter.Skin.Default_params.asset"; public static string skinJunkCubePrefabDefaultparams = "RoR2/DLC3/Drifter/skinJunkCubePrefabDefault_params.asset"; public static string skinDroneTechDefparams = "RoR2/DLC3/Drone Tech/skinDroneTechDef_params.asset"; public static string skinDroneTechDefAltparams = "RoR2/DLC3/Drone Tech/skinDroneTechDefAlt_params.asset"; public static string skinBombardmentDroneProjectilePrefabRemoteOpDefaultparams = "RoR2/DLC3/Drones/skinBombardmentDroneProjectilePrefabRemoteOpDefault_params.asset"; public static string skinBombardmentDroneBodyDefaultparams = "RoR2/DLC3/Drones/skinBombardmentDroneBodyDefault_params.asset"; public static string skinBombardmentDroneBrokenDefaultparams = "RoR2/DLC3/Drones/skinBombardmentDroneBrokenDefault_params.asset"; public static string skinCleanupDroneBodyDefaultparams = "RoR2/DLC3/Drones/skinCleanupDroneBodyDefault_params.asset"; public static string skinCleanupDroneBrokenDefaultparams = "RoR2/DLC3/Drones/skinCleanupDroneBrokenDefault_params.asset"; public static string skinCopycatDroneBodyDefaultparams = "RoR2/DLC3/Drones/skinCopycatDroneBodyDefault_params.asset"; public static string skinCopycatDroneBrokenDefaultparams = "RoR2/DLC3/Drones/skinCopycatDroneBrokenDefault_params.asset"; public static string skinDroneBomberBodyDefaultparams = "RoR2/DLC3/Drones/skinDroneBomberBodyDefault_params.asset"; public static string skinDTGunnerAltparams = "RoR2/DLC3/Drones/skinDTGunnerAlt_params.asset"; public static string skinDTGunnerDroneBrokenDefaultparams = "RoR2/DLC3/Drones/skinDTGunnerDroneBrokenDefault_params.asset"; public static string skinDTGunnerlDefaultparams = "RoR2/DLC3/Drones/skinDTGunnerlDefault_params.asset"; public static string skinDTHaulerDroneBodyDefaultparams = "RoR2/DLC3/Drones/skinDTHaulerDroneBodyDefault_params.asset"; public static string skinDTHealAltparams = "RoR2/DLC3/Drones/skinDTHealAlt_params.asset"; public static string skinDTHealDefaultparams = "RoR2/DLC3/Drones/skinDTHealDefault_params.asset"; public static string skinDTHealingDroneBrokenDefaultparams = "RoR2/DLC3/Drones/skinDTHealingDroneBrokenDefault_params.asset"; public static string skinHaulerDroneBodyDefaultparams = "RoR2/DLC3/Drones/skinHaulerDroneBodyDefault_params.asset"; public static string skinHaulerDroneBrokenDefaultparams = "RoR2/DLC3/Drones/skinHaulerDroneBrokenDefault_params.asset"; public static string skinJailerDroneBodyDefaultparams = "RoR2/DLC3/Drones/skinJailerDroneBodyDefault_params.asset"; public static string skinJailerDroneBrokenDefaultparams = "RoR2/DLC3/Drones/skinJailerDroneBrokenDefault_params.asset"; public static string skinJunkDroneBodyDefaultparams = "RoR2/DLC3/Drones/skinJunkDroneBodyDefault_params.asset"; public static string skinJunkDroneBrokenDefaultparams = "RoR2/DLC3/Drones/skinJunkDroneBrokenDefault_params.asset"; public static string skinRechargeDroneBodyDefaultparams = "RoR2/DLC3/Drones/skinRechargeDroneBodyDefault_params.asset"; public static string skinRechargeDroneBrokenDefaultparams = "RoR2/DLC3/Drones/skinRechargeDroneBrokenDefault_params.asset"; public static string skinExplosiveJunkBombDestructibleBodyDefaultparams = "RoR2/DLC3/ExplosiveJunkBombDestructible/skinExplosiveJunkBombDestructibleBodyDefault_params.asset"; public static string skinExtractorUnitBodyDefaultparams = "RoR2/DLC3/ExtractorUnit/skinExtractorUnitBodyDefault_params.asset"; public static string skinFriendUnitBodyDefaultparams = "RoR2/DLC3/FriendUnit/skinFriendUnitBodyDefault_params.asset"; public static string skinIronHaulerBodyDefaultparams = "RoR2/DLC3/IronHauler/skinIronHaulerBodyDefault_params.asset"; public static string skinMinePodBodyDefaultparams = "RoR2/DLC3/MinePod/skinMinePodBodyDefault_params.asset"; public static string skinSolusAmalgamatorFlamethrowerCannonBodyDefaultparams = "RoR2/DLC3/SolusAmalgamator/skinSolusAmalgamatorFlamethrowerCannonBodyDefault_params.asset"; public static string skinSolusAmalgamatorMissilePodBodyDefaultparams = "RoR2/DLC3/SolusAmalgamator/skinSolusAmalgamatorMissilePodBodyDefault_params.asset"; public static string skinSolusAmalgamatorBodyDefaultparams = "RoR2/DLC3/SolusAmalgamator/skinSolusAmalgamatorBodyDefault_params.asset"; public static string skinSolusAmalgamatorThrusterBodyDefaultparams = "RoR2/DLC3/SolusAmalgamator/skinSolusAmalgamatorThrusterBodyDefault_params.asset"; public static string skinSolusMineBodyDefaultparams = "RoR2/DLC3/SolusMine/skinSolusMineBodyDefault_params.asset"; public static string skinSolusWingLogbookBodyDefaultparams = "RoR2/DLC3/SolusWing/skinSolusWingLogbookBodyDefault_params.asset"; public static string skinSolusWingBodyDefaultparams = "RoR2/DLC3/SolusWing/skinSolusWingBodyDefault_params.asset"; public static string skinExhaustPortWeakpointBodyDefaultparams = "RoR2/DLC3/SolusWing/skinExhaustPortWeakpointBodyDefault_params.asset"; public static string skinFireExtinguisherPodBodyDefaultparams = "RoR2/DLC3/SolusWingForm1/skinFireExtinguisherPodBodyDefault_params.asset"; public static string skinHeaterPodBodyDefaultparams = "RoR2/DLC3/SolusWingForm1/skinHeaterPodBodyDefault_params.asset"; public static string skinHeaterPodBodyNoRespawnLargeDefaultparams = "RoR2/DLC3/SolusWingForm1/skinHeaterPodBodyNoRespawn_LargeDefault_params.asset"; public static string skinHeaterPodBodyNoRespawnDefaultparams = "RoR2/DLC3/SolusWingForm1/skinHeaterPodBodyNoRespawnDefault_params.asset"; public static string skinBasePodBodyDefaultparams = "RoR2/DLC3/SolusWingForm1/skinBasePodBodyDefault_params.asset"; public static string skinTankerIgniteDoTProjectileGhostDefaultparams = "RoR2/DLC3/Tanker/skinTankerIgniteDoTProjectileGhostDefault_params.asset"; public static string skinTankerLogbookBodyDefaultparams = "RoR2/DLC3/Tanker/skinTankerLogbookBodyDefault_params.asset"; public static string skinTankerBodyDefaultparams = "RoR2/DLC3/Tanker/skinTankerBodyDefault_params.asset"; public static string skinSolusVendorBodyDefaultparams = "RoR2/DLC3/skinSolusVendorBodyDefault_params.asset"; public static string skinVultureHunterBodyDefaultparams = "RoR2/DLC3/VultureHunter/skinVultureHunterBodyDefault_params.asset"; public static string skinWorkerUnitBodyDefaultparams = "RoR2/DLC3/WorkerUnit/skinWorkerUnitBodyDefault_params.asset"; public static string skinHoloDrone1Defaultparams = "RoR2/DLC3/skinHoloDrone1Default_params.asset"; public static string skinHoloDrone2Defaultparams = "RoR2/DLC3/skinHoloDrone2Default_params.asset"; public static string skinHoloDroneBackupDefaultparams = "RoR2/DLC3/skinHoloDroneBackupDefault_params.asset"; public static string skinHoloDroneBombardmentDefaultparams = "RoR2/DLC3/skinHoloDroneBombardmentDefault_params.asset"; public static string skinHoloDroneCleanupDefaultparams = "RoR2/DLC3/skinHoloDroneCleanupDefault_params.asset"; public static string skinHoloDroneCopycatDefaultparams = "RoR2/DLC3/skinHoloDroneCopycatDefault_params.asset"; public static string skinHoloDroneEmergencyDefaultparams = "RoR2/DLC3/skinHoloDroneEmergencyDefault_params.asset"; public static string skinHoloDroneEquipmentDefaultparams = "RoR2/DLC3/skinHoloDroneEquipmentDefault_params.asset"; public static string skinHoloDroneFlameDefaultparams = "RoR2/DLC3/skinHoloDroneFlameDefault_params.asset"; public static string skinHoloDroneHaulerDefaultparams = "RoR2/DLC3/skinHoloDroneHaulerDefault_params.asset"; public static string skinHoloDroneJailerDefaultparams = "RoR2/DLC3/skinHoloDroneJailerDefault_params.asset"; public static string skinHoloDroneJunkDefaultparams = "RoR2/DLC3/skinHoloDroneJunkDefault_params.asset"; public static string skinHoloDroneMegaDefaultparams = "RoR2/DLC3/skinHoloDroneMegaDefault_params.asset"; public static string skinHoloDroneMissileDefaultparams = "RoR2/DLC3/skinHoloDroneMissileDefault_params.asset"; public static string skinHoloDroneRechargeDefaultparams = "RoR2/DLC3/skinHoloDroneRechargeDefault_params.asset"; public static string skinPowerOrbShieldTankDefaultparams = "RoR2/DLC3/PowerOrbShieldTank/skinPowerOrbShieldTankDefault_params.asset"; public static string skinPickupDestructibleSpawnerDefaultparams = "RoR2/DLC3/Items/DestructibleSpawnerItem/skinPickupDestructibleSpawnerDefault_params.asset"; public static string skinDrifterShieldTankDefaultparams = "RoR2/DLC3/computationalexchange/skinDrifterShieldTankDefault_params.asset"; public static string skinAncientWispBodyDefaultparams = "RoR2/Junk/AncientWisp/skinAncientWispBodyDefault_params.asset"; public static string skinArchWispBodyDefaultparams = "RoR2/Junk/ArchWisp/skinArchWispBodyDefault_params.asset"; public static string skinAssassinBodyDefaultparams = "RoR2/Junk/Assassin/skinAssassinBodyDefault_params.asset"; public static string skinBackupDroneOldBodyDefaultparams = "RoR2/Junk/BackupDroneOld/skinBackupDroneOldBodyDefault_params.asset"; public static string skinBanditBodyDefaultparams = "RoR2/Junk/Bandit/skinBanditBodyDefault_params.asset"; public static string skinBomberBodyDefaultparams = "RoR2/Junk/Bomber/skinBomberBodyDefault_params.asset"; public static string skinClayBodyDefaultparams = "RoR2/Junk/ClayMan/skinClayBodyDefault_params.asset"; public static string skinEnforcerBodyDefaultparams = "RoR2/Junk/Enforcer/skinEnforcerBodyDefault_params.asset"; public static string skinEngiBeamTurretBodyDefaultparams = "RoR2/Junk/Engi/skinEngiBeamTurretBodyDefault_params.asset"; public static string skinHANDBodyDefaultparams = "RoR2/Junk/HAND/skinHANDBodyDefault_params.asset"; public static string skinPaladinBodyDefaultparams = "RoR2/Junk/Paladin/skinPaladinBodyDefault_params.asset"; public static string skinPotMobileBodyDefaultparams = "RoR2/Junk/PotMobile/skinPotMobileBodyDefault_params.asset"; public static string skinPotMobile2BodyDefaultparams = "RoR2/Junk/PotMobile2/skinPotMobile2BodyDefault_params.asset"; public static string skinSniperBodyDefaultparams = "RoR2/Junk/Sniper/skinSniperBodyDefault_params.asset"; public static string skinParentPodBodyDefaultparams = "RoR2/Junk/Incubator/skinParentPodBodyDefault_params.asset"; } public static class RuntimeAnimatorController { public static string animAltarSkeleton = "RoR2/Base/AltarSkeleton/animAltarSkeleton.controller"; public static string animBandit2 = "RoR2/Base/Bandit2/animBandit2.controller"; public static string animBandit2Display = "RoR2/Base/Bandit2/animBandit2Display.controller"; public static string animBeetle = "RoR2/Base/Beetle/animBeetle.controller"; public static string animBeetleGuard = "RoR2/Base/BeetleGuard/animBeetleGuard.controller"; public static string animBeetleQueen = "RoR2/Base/BeetleQueen/animBeetleQueen.controller"; public static string animBeetleQueen3 = "RoR2/Base/BeetleQueen/animBeetleQueen3.controller"; public static string animBeetleWard = "RoR2/Base/BeetleGroup/BeetleWard/animBeetleWard.controller"; public static string animBell = "RoR2/Base/Bell/animBell.controller"; public static string animBirdshark = "RoR2/Base/Birdshark/animBirdshark.controller"; public static string animBison = "RoR2/Base/Bison/animBison.controller"; public static string animBrother = "RoR2/Base/Brother/animBrother.controller"; public static string animBrotherHurt = "RoR2/Base/Brother/animBrotherHurt.controller"; public static string animCaptain = "RoR2/Base/Captain/animCaptain.controller"; public static string animCaptainDisplay = "RoR2/Base/Captain/animCaptainDisplay.controller"; public static string animCaptainSupplyDrop = "RoR2/Base/Captain/animCaptainSupplyDrop.controller"; public static string animClayBoss = "RoR2/Base/ClayBoss/animClayBoss.controller"; public static string animClayBruiser = "RoR2/Base/ClayBruiser/animClayBruiser.controller"; public static string animCommando = "RoR2/Base/Commando/animCommando.controller"; public static string animCommandoDisplay = "RoR2/Base/Commando/animCommandoDisplay.controller"; public static string animCommandoIntroCutscene = "RoR2/Base/Commando/animCommandoIntroCutscene.controller"; public static string animCroco = "RoR2/Base/Croco/animCroco.controller"; public static string animCrocoDisplay = "RoR2/Base/Croco/animCrocoDisplay.controller"; public static string animDroneBackup = "RoR2/Base/Drones/animDroneBackup.controller"; public static string animDroneBackupOLD = "RoR2/Base/Drones/animDroneBackupOLD.controller"; public static string animDrone1 = "RoR2/Base/Drones/animDrone1.controller"; public static string animDrone2 = "RoR2/Base/Drones/animDrone2.controller"; public static string animEmergencyDrone = "RoR2/Base/Drones/animEmergencyDrone.controller"; public static string animEquipmentDrone = "RoR2/Base/Drones/animEquipmentDrone.controller"; public static string animFlameDrone = "RoR2/Base/Drones/animFlameDrone.controller"; public static string animMegaDrone = "RoR2/Base/Drones/animMegaDrone.controller"; public static string animMissileDrone = "RoR2/Base/Drones/animMissileDrone.controller"; public static string animTurret1 = "RoR2/Base/Drones/animTurret1.controller"; public static string animEngi = "RoR2/Base/Engi/animEngi.controller"; public static string animEngiDisplay = "RoR2/Base/Engi/animEngiDisplay.controller"; public static string animEngiMine = "RoR2/Base/Engi/animEngiMine.controller"; public static string animEngiSpiderMine = "RoR2/Base/Engi/animEngiSpiderMine.controller"; public static string animEngiTurret = "RoR2/Base/Engi/animEngiTurret.controller"; public static string animEngiWalkerTurret = "RoR2/Base/Engi/animEngiWalkerTurret.controller"; public static string animGolem = "RoR2/Base/Golem/animGolem.controller"; public static string animGrandparent = "RoR2/Base/Grandparent/animGrandparent.controller"; public static string animGravekeeper = "RoR2/Base/Gravekeeper/animGravekeeper.controller"; public static string animGreaterWisp = "RoR2/Base/GreaterWisp/animGreaterWisp.controller"; public static string animHeretic = "RoR2/Base/Heretic/animHeretic.controller"; public static string animHermitCrab = "RoR2/Base/HermitCrab/animHermitCrab.controller"; public static string animHuntress = "RoR2/Base/Huntress/animHuntress.controller"; public static string animHuntressDisplay = "RoR2/Base/Huntress/animHuntressDisplay.controller"; public static string animHuntressGlaive = "RoR2/Base/Huntress/animHuntressGlaive.controller"; public static string animImp = "RoR2/Base/Imp/animImp.controller"; public static string animImpBoss = "RoR2/Base/Imp/animImpBoss.controller"; public static string animJellyfish = "RoR2/Base/Jellyfish/animJellyfish.controller"; public static string animLemurian = "RoR2/Base/Lemurian/animLemurian.controller"; public static string animLemurianBruiser = "RoR2/Base/Lemurian/animLemurianBruiser.controller"; public static string animLoader = "RoR2/Base/Loader/animLoader.controller"; public static string animLoaderDisplay = "RoR2/Base/Loader/animLoaderDisplay.controller"; public static string animLoaderPylon = "RoR2/Base/Loader/animLoaderPylon.controller"; public static string animLunarExploder = "RoR2/Base/LunarExploder/animLunarExploder.controller"; public static string animLunarGolem = "RoR2/Base/LunarGolem/animLunarGolem.controller"; public static string animLunarWisp = "RoR2/Base/LunarWisp/animLunarWisp.controller"; public static string animMage = "RoR2/Base/Mage/animMage.controller"; public static string animMageDisplay = "RoR2/Base/Mage/animMageDisplay.controller"; public static string animFracturedGround = "RoR2/Base/MagmaWorm/animFracturedGround.controller"; public static string animMagmaWorm = "RoR2/Base/MagmaWorm/animMagmaWorm.controller"; public static string animMerc = "RoR2/Base/Merc/animMerc.controller"; public static string animMercDisplay = "RoR2/Base/Merc/animMercDisplay.controller"; public static string animMiniMushroom = "RoR2/Base/MiniMushroom/animMiniMushroom.controller"; public static string animNullifier = "RoR2/Base/Nullifier/animNullifier.controller"; public static string animParent = "RoR2/Base/Parent/animParent.controller"; public static string animRoboBallBoss = "RoR2/Base/RoboBallBoss/animRoboBallBoss.controller"; public static string animRoboBallMini = "RoR2/Base/RoboBallBoss/animRoboBallMini.controller"; public static string animScav = "RoR2/Base/Scav/animScav.controller"; public static string animScavBackpack = "RoR2/Base/Scav/animScavBackpack.controller"; public static string animScavTitle = "RoR2/Base/Scav/animScavTitle.controller"; public static string animNewtShopkeeper = "RoR2/Base/Shopkeeper/animNewtShopkeeper.controller"; public static string animTitan = "RoR2/Base/Titan/animTitan.controller"; public static string animRoboCrate = "RoR2/Base/Toolbot/animRoboCrate.controller"; public static string animToolbot = "RoR2/Base/Toolbot/animToolbot.controller"; public static string animToolbotDisplay = "RoR2/Base/Toolbot/animToolbotDisplay.controller"; public static string animTreebot = "RoR2/Base/Treebot/animTreebot.controller"; public static string animTreebotDisplay = "RoR2/Base/Treebot/animTreebotDisplay.controller"; public static string animTreebotFlower = "RoR2/Base/Treebot/animTreebotFlower.controller"; public static string animTreebotFruit = "RoR2/Base/Treebot/animTreebotFruit.controller"; public static string animTreebotInteractable = "RoR2/Base/Treebot/animTreebotInteractable.controller"; public static string animTreebotPounder = "RoR2/Base/Treebot/animTreebotPounder.controller"; public static string animVagrant = "RoR2/Base/Vagrant/animVagrant.controller"; public static string animVulture = "RoR2/Base/Vulture/animVulture.controller"; public static string animWisp = "RoR2/Base/Wisp/animWisp.controller"; public static string mshVent = "RoR2/Base/Common/VFX/mshVent.controller"; public static string SmokeLine = "RoR2/Base/Common/VFX/SmokeLine.controller"; public static string animUrchinTurret = "RoR2/Base/ElitePoison/animUrchinTurret.controller"; public static string animBFG = "RoR2/Base/BFG/animBFG.controller"; public static string animGravSphere = "RoR2/Base/Blackhole/animGravSphere.controller"; public static string animNeuralImplantHUD = "RoR2/Base/CritOnUse/animNeuralImplantHUD.controller"; public static string animGoldGat = "RoR2/Base/GoldGat/animGoldGat.controller"; public static string animBugWings = "RoR2/Base/Jetpack/animBugWings.controller"; public static string animBarrel1 = "RoR2/Base/Barrel1/animBarrel1.controller"; public static string animCasinoChest = "RoR2/Base/CasinoChest/animCasinoChest.controller"; public static string animCategoryChest = "RoR2/Base/CategoryChest/animCategoryChest.controller"; public static string animChest1 = "RoR2/Base/Chest1/animChest1.controller"; public static string animChest2 = "RoR2/Base/Chest2/animChest2.controller"; public static string animDuplicator = "RoR2/Base/Duplicator/animDuplicator.controller"; public static string animEquipmentBarrel = "RoR2/Base/EquipmentBarrel/animEquipmentBarrel.controller"; public static string animGoldChest = "RoR2/Base/GoldChest/animGoldChest.controller"; public static string animLunarChest = "RoR2/Base/LunarChest/animLunarChest.controller"; public static string LunarRecyclerFXController = "RoR2/Base/LunarRecycler/LunarRecyclerFXController.controller"; public static string animMultiShopTerminal = "RoR2/Base/MultiShopTerminal/animMultiShopTerminal.controller"; public static string animScrapper = "RoR2/Base/Scrapper/animScrapper.controller"; public static string animShrineRestack = "RoR2/Base/ShrineRestack/animShrineRestack.controller"; public static string animLunarTeleporter = "RoR2/Base/Teleporters/animLunarTeleporter.controller"; public static string animTimedChest = "RoR2/Base/TimedChest/animTimedChest.controller"; public static string animEscapePod = "RoR2/Base/SurvivorPod/animEscapePod.controller"; public static string animHook = "RoR2/Base/BounceNearby/animHook.controller"; public static string animDisplayDagger = "RoR2/Base/Dagger/animDisplayDagger.controller"; public static string animSnail = "RoR2/Base/HealWhileSafe/animSnail.controller"; public static string BirdHeartAnimator = "RoR2/Base/LunarSkillReplacements/BirdHeartAnimator.controller"; public static string animSquidTurret = "RoR2/Base/Squid/animSquidTurret.controller"; public static string SquidTurretBody = "RoR2/Base/Squid/SquidTurretBody.controller"; public static string animTalisman = "RoR2/Base/Talisman/animTalisman.controller"; public static string animLockbox = "RoR2/Base/TreasureCache/animLockbox.controller"; public static string animBabyFlower = "RoR2/Base/bazaar/animBabyFlower.controller"; public static string animHumanFan = "RoR2/Base/frozenwall/animHumanFan.controller"; public static string animIntroCutscene = "RoR2/Base/intro/animIntroCutscene.controller"; public static string animMoonBattery = "RoR2/Base/moon2/animMoonBattery.controller"; public static string animMoonBatteryBloodSiphon = "RoR2/Base/moon2/animMoonBatteryBloodSiphon.controller"; public static string animMoonBatteryCrippleWard = "RoR2/Base/moon2/animMoonBatteryCrippleWard.controller"; public static string animMoonElevator = "RoR2/Base/moon2/animMoonElevator.controller"; public static string animRescueship = "RoR2/Base/outro/animRescueship.controller"; public static string animRescueshipOutro = "RoR2/Base/outro/animRescueshipOutro.controller"; public static string animOutroCutscene = "RoR2/Base/outro/animOutroCutscene.controller"; public static string animOutroCutscene2 = "RoR2/Base/outro/animOutroCutscene2.controller"; public static string animRJShroomBounce = "RoR2/Base/rootjungle/animRJShroomBounce.controller"; public static string animAcidLarva = "RoR2/DLC1/AcidLarva/animAcidLarva.controller"; public static string animAssassin2 = "RoR2/DLC1/Assassin2/animAssassin2.controller"; public static string animClayGrenadier = "RoR2/DLC1/ClayGrenadier/animClayGrenadier.controller"; public static string animDroneCommander = "RoR2/DLC1/DroneCommander/animDroneCommander.controller"; public static string animFlyingVermin = "RoR2/DLC1/FlyingVermin/animFlyingVermin.controller"; public static string animGup = "RoR2/DLC1/Gup/animGup.controller"; public static string animMajorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/animMajorConstruct.controller"; public static string animMegaConstruct = "RoR2/DLC1/MajorAndMinorConstruct/animMegaConstruct.controller"; public static string animMinorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/animMinorConstruct.controller"; public static string animRailgunner = "RoR2/DLC1/Railgunner/animRailgunner.controller"; public static string animRailGunnerDisplay = "RoR2/DLC1/Railgunner/animRailGunnerDisplay.controller"; public static string animRailgunTracer = "RoR2/DLC1/Railgunner/animRailgunTracer.controller"; public static string animRailgunnerReloadUI = "RoR2/DLC1/Railgunner/animRailgunnerReloadUI.controller"; public static string animVermin = "RoR2/DLC1/Vermin/animVermin.controller"; public static string animVoidBarnacle = "RoR2/DLC1/VoidBarnacle/animVoidBarnacle.controller"; public static string animVoidJailer = "RoR2/DLC1/VoidJailer/animVoidJailer.controller"; public static string animMegaCrab = "RoR2/DLC1/VoidMegaCrab/animMegaCrab.controller"; public static string animVoidRaidCrab = "RoR2/DLC1/VoidRaidCrab/animVoidRaidCrab.controller"; public static string animMiniVoidRaidCrab = "RoR2/DLC1/VoidRaidCrab/animMiniVoidRaidCrab.controller"; public static string animVoidSurvivor = "RoR2/DLC1/VoidSurvivor/animVoidSurvivor.controller"; public static string animVoidSurvivorCorruptionUI = "RoR2/DLC1/VoidSurvivor/animVoidSurvivorCorruptionUI.controller"; public static string animVoidSurvivorCorruptionUISimplified = "RoR2/DLC1/VoidSurvivor/animVoidSurvivorCorruptionUISimplified.controller"; public static string animVoidSwim = "RoR2/DLC1/VoidSurvivor/animVoidSwim.controller"; public static string animVoidSurvivorPod = "RoR2/DLC1/VoidSurvivor/animVoidSurvivorPod.controller"; public static string VoidSurvivorPodAnimator = "RoR2/DLC1/VoidSurvivor/VoidSurvivorPodAnimator.controller"; public static string EliteMendingAntlersController = "RoR2/DLC1/EliteEarth/EliteMendingAntlersController.controller"; public static string animEliteMendingSphere = "RoR2/DLC1/EliteEarth/animEliteMendingSphere.controller"; public static string animVoidInfestor = "RoR2/DLC1/EliteVoid/animVoidInfestor.controller"; public static string LunarPortalOnUseController = "RoR2/DLC1/LunarPortalOnUse/LunarPortalOnUseController.controller"; public static string VendingMachineAnimController = "RoR2/DLC1/VendingMachine/VendingMachineAnimController.controller"; public static string animVoidWhale = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/animVoidWhale.controller"; public static string animInfiniteTowerSafeWard = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/animInfiniteTowerSafeWard.controller"; public static string InfiniteTowerDefaultWaveUI = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/InfiniteTowerDefaultWaveUI.controller"; public static string animVoidSignalController = "RoR2/DLC1/DeepVoidPortalBattery/animVoidSignalController.controller"; public static string animShippingDrone = "RoR2/DLC1/FreeChestMultiShop/animShippingDrone.controller"; public static string animShippingDronePod = "RoR2/DLC1/FreeChestMultiShop/animShippingDronePod.controller"; public static string animVoidChest = "RoR2/DLC1/VoidChest/animVoidChest.controller"; public static string animVoidCoinBarrel = "RoR2/DLC1/VoidCoinBarrel/animVoidCoinBarrel.controller"; public static string VoidFogEmitterAnimController = "RoR2/DLC1/VoidFogEmitterAnimController.controller"; public static string VoidSuppressorController = "RoR2/DLC1/VoidSuppressor/VoidSuppressorController.controller"; public static string animVoidTriple = "RoR2/DLC1/VoidTriple/animVoidTriple.controller"; public static string animVoidWardCrab = "RoR2/DLC1/VoidWardCrab/animVoidWardCrab.controller"; public static string DroneWeaponMinigunController = "RoR2/DLC1/DroneWeapons/DroneWeaponMinigunController.controller"; public static string DroneWeaponRobotArmController = "RoR2/DLC1/DroneWeapons/DroneWeaponRobotArmController.controller"; public static string WillowWispVoidController = "RoR2/DLC1/ExplodeOnDeathVoid/WillowWispVoidController.controller"; public static string animHippoVoid = "RoR2/DLC1/ExtraLifeVoid/animHippoVoid.controller"; public static string DelicateWatchDisplayController = "RoR2/DLC1/FragileDamageBonus/DelicateWatchDisplayController.controller"; public static string DelicateWatchPickupController = "RoR2/DLC1/FragileDamageBonus/DelicateWatchPickupController.controller"; public static string LunarShoulderStoneController = "RoR2/DLC1/HalfSpeedDoubleHealth/LunarShoulderStoneController.controller"; public static string LunarSunProjectileController = "RoR2/DLC1/LunarSun/LunarSunProjectileController.controller"; public static string LunarWingsController = "RoR2/DLC1/LunarWings/LunarWingsController.controller"; public static string DefenseNucleusAnimator = "RoR2/DLC1/MinorConstructOnKill/DefenseNucleusAnimator.controller"; public static string DominoController = "RoR2/DLC1/RandomlyLunar/DominoController.controller"; public static string animLockboxVoid = "RoR2/DLC1/TreasureCacheVoid/animLockboxVoid.controller"; public static string FloatingPillarStoneController = "RoR2/DLC1/ancientloft/FloatingPillarStoneController.controller"; public static string LightStatueStoneController = "RoR2/DLC1/ancientloft/LightStatueStoneController.controller"; public static string PillarBroken = "RoR2/DLC1/ancientloft/PillarBroken.controller"; public static string PillarHalfIntactController = "RoR2/DLC1/ancientloft/PillarHalfIntactController.controller"; public static string PillarIntact = "RoR2/DLC1/ancientloft/PillarIntact.controller"; public static string ITDampcaveChainsController = "RoR2/DLC1/itdampcave/ITDampcaveChainsController.controller"; public static string ITDampcaveChainsOffsetController = "RoR2/DLC1/itdampcave/ITDampcaveChainsOffsetController.controller"; public static string ITGooLakeGooAnimController = "RoR2/DLC1/itgoolake/ITGooLakeGooAnimController.controller"; public static string ConstellationHumanoidController = "RoR2/DLC1/itmoon/ConstellationHumanoidController.controller"; public static string animNullifierLobby = "RoR2/DLC1/lobby/animNullifierLobby.controller"; public static string PromoRGBGStuffAnimator = "RoR2/DLC1/PromoRGBGStuffAnimator.controller"; public static string PromoRGBoxAnimator = "RoR2/DLC1/PromoRGBoxAnimator.controller"; public static string PromoRGCameraAnimator = "RoR2/DLC1/PromoRGCameraAnimator.controller"; public static string VoidOutroCameraController = "RoR2/DLC1/voidoutro/VoidOutroCameraController.controller"; public static string CapturedMithrixPlant = "RoR2/DLC1/voidoutro/Captured Mithrix Plant.controller"; public static string CrazyMoonPPAnimator = "RoR2/DLC1/voidoutro/Crazy Moon PP Animator.controller"; public static string DofCrabDizzyAnimator = "RoR2/DLC1/voidoutro/DofCrabDizzyAnimator.controller"; public static string animNullifierDummyDeactivated = "RoR2/DLC1/voidoutro/animNullifierDummyDeactivated.controller"; public static string animNullifierDummyDeactivateFast = "RoR2/DLC1/voidoutro/animNullifierDummyDeactivateFast.controller"; public static string animNullifierDummyDeactivateMedium = "RoR2/DLC1/voidoutro/animNullifierDummyDeactivateMedium.controller"; public static string animNullifierDummyDeactivateSlow = "RoR2/DLC1/voidoutro/animNullifierDummyDeactivateSlow.controller"; public static string animVerminDummy = "RoR2/DLC1/voidoutro/animVerminDummy.controller"; public static string FadeBlackVoidOutro = "RoR2/DLC1/voidoutro/Fade, Black VoidOutro.controller"; public static string FadeWhiteVoidOutro = "RoR2/DLC1/voidoutro/Fade, White VoidOutro.controller"; public static string OpeningDizzyController = "RoR2/DLC1/voidoutro/OpeningDizzyController.controller"; public static string OutroGiantLightController = "RoR2/DLC1/voidoutro/Outro Giant Light Controller.controller"; public static string OutroDoF2Animator = "RoR2/DLC1/voidoutro/OutroDoF2Animator.controller"; public static string OutroVoidBloomAnimator = "RoR2/DLC1/voidoutro/OutroVoidBloomAnimator.controller"; public static string VoidOutroChromaticAnimator = "RoR2/DLC1/voidoutro/Void Outro Chromatic Animator.controller"; public static string OutroImportantCrab = "RoR2/DLC1/voidoutro/OutroImportantCrab.controller"; public static string RaidCrabLowLOD = "RoR2/DLC1/voidoutro/RaidCrabLowLOD.controller"; public static string ShatteredMoonOutroVoid = "RoR2/DLC1/voidoutro/Shattered Moon, Outro Void.controller"; public static string animChef = "RoR2/DLC2/Chef/animChef.controller"; public static string animChefDisplay = "RoR2/DLC2/Chef/animChefDisplay.controller"; public static string animChefUnlock = "RoR2/DLC2/Chef/animChefUnlock.controller"; public static string animChild = "RoR2/DLC2/Child/animChild.controller"; public static string animFalseSon = "RoR2/DLC2/FalseSon/animFalseSon.controller"; public static string animFalseSonMeteor = "RoR2/DLC2/FalseSon/animFalseSonMeteor.controller"; public static string animFalseSonDisplay = "RoR2/DLC2/FalseSon/animFalseSonDisplay.controller"; public static string FalseSonCoreAnimController = "RoR2/DLC2/FalseSon/FalseSonCore_AnimController.controller"; public static string animFSBoss = "RoR2/DLC2/FalseSonBoss/animFSBoss.controller"; public static string FSBLunarRain = "RoR2/DLC2/FalseSonBoss/FSBLunarRain.controller"; public static string animHalcyonite = "RoR2/DLC2/Halcyonite/animHalcyonite.controller"; public static string animScorchling = "RoR2/DLC2/Scorchling/animScorchling.controller"; public static string tempanimScorchling = "RoR2/DLC2/Scorchling/tempanimScorchling.controller"; public static string animSeeker = "RoR2/DLC2/Seeker/animSeeker.controller"; public static string animSeekerLotus = "RoR2/DLC2/Seeker/animSeekerLotus.controller"; public static string animSeekerDisplay = "RoR2/DLC2/Seeker/animSeekerDisplay.controller"; public static string animSeekerLotusDisplay = "RoR2/DLC2/Seeker/animSeekerLotusDisplay.controller"; public static string AnimSeekerPalm = "RoR2/DLC2/Seeker/AnimSeekerPalm.controller"; public static string EliteBeadProjectile = "RoR2/DLC2/Elites/EliteBead/EliteBeadProjectile.controller"; public static string EliteBeadSpikeGrowthAnimController = "RoR2/DLC2/Elites/EliteBead/EliteBeadSpikeGrowthAnimController.controller"; public static string animKnockbackFin = "RoR2/DLC2/Items/KnockBackHitEnemies/animKnockbackFin.controller"; public static string animBHSeedPod = "RoR2/DLC2/habitat/Assets/animBHSeedPod.controller"; public static string TLJumpPad = "RoR2/DLC2/lakes/Assets/TLJumpPad.controller"; public static string EyeMesh = "RoR2/DLC3/DefectiveUnit/EyeMesh.controller"; public static string animDefectiveUnit = "RoR2/DLC3/DefectiveUnit/animDefectiveUnit.controller"; public static string animDrifter = "RoR2/DLC3/Drifter/animDrifter.controller"; public static string animDrifterCaptured = "RoR2/DLC3/Drifter/animDrifterCaptured.controller"; public static string animDrifterDisplay = "RoR2/DLC3/Drifter/animDrifterDisplay.controller"; public static string animDroneTech = "RoR2/DLC3/Drone Tech/animDroneTech.controller"; public static string animDroneTechDisplay = "RoR2/DLC3/Drone Tech/animDroneTechDisplay.controller"; public static string animDroneTechCompanionsUI = "RoR2/DLC3/Drone Tech/animDroneTechCompanionsUI.controller"; public static string animNanoPistolTracer = "RoR2/DLC3/Drone Tech/animNanoPistolTracer.controller"; public static string animDroneBall = "RoR2/DLC3/Drone Tech/animDroneBall.controller"; public static string animDroneBallShootable = "RoR2/DLC3/Drone Tech/animDroneBallShootable.controller"; public static string animDroneTechShieldFront = "RoR2/DLC3/Drone Tech/animDroneTechShieldFront.controller"; public static string DroneTechActivateDamageOverlay = "RoR2/DLC3/Drone Tech/DroneTechActivateDamageOverlay.controller"; public static string DroneTechActivateHealOverlay = "RoR2/DLC3/Drone Tech/DroneTechActivateHealOverlay.controller"; public static string ReticleDamage = "RoR2/DLC3/Drone Tech/ReticleDamage.controller"; public static string ReticleHeal = "RoR2/DLC3/Drone Tech/ReticleHeal.controller"; public static string animBombardmentDrone = "RoR2/DLC3/Drones/animBombardmentDrone.controller"; public static string bombardmentdronebaseanim = "RoR2/DLC3/Drones/bombardment_drone_base_anim.controller"; public static string AnimCleanupDrone = "RoR2/DLC3/Drones/AnimCleanupDrone.controller"; public static string animConDCCScanTransformBottom = "RoR2/DLC3/Drones/animCon_DCC_ScanTransformBottom.controller"; public static string animConDCCScanTransformMain = "RoR2/DLC3/Drones/animCon_DCC_ScanTransformMain.controller"; public static string animConDCCScanTransformTop = "RoR2/DLC3/Drones/animCon_DCC_ScanTransformTop.controller"; public static string animDroneCopycat = "RoR2/DLC3/Drones/animDroneCopycat.controller"; public static string animDroneBomber = "RoR2/DLC3/Drones/animDroneBomber.controller"; public static string animDTHaulerDrone = "RoR2/DLC3/Drones/animDTHaulerDrone.controller"; public static string animHaulerDrone = "RoR2/DLC3/Drones/animHaulerDrone.controller"; public static string CtrlJailerDroneWalls = "RoR2/DLC3/Drones/CtrlJailerDroneWalls.controller"; public static string animJailerDrone = "RoR2/DLC3/Drones/animJailerDrone.controller"; public static string animJunkDrone = "RoR2/DLC3/Drones/animJunkDrone.controller"; public static string animRechargeDrone = "RoR2/DLC3/Drones/animRechargeDrone.controller"; public static string animExtractorScan = "RoR2/DLC3/ExtractorUnit/animExtractorScan.controller"; public static string animExtractorUnit = "RoR2/DLC3/ExtractorUnit/animExtractorUnit.controller"; public static string animIronHauler = "RoR2/DLC3/IronHauler/animIronHauler.controller"; public static string animMinePod = "RoR2/DLC3/MinePod/animMinePod.controller"; public static string animConHatchTMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_HatchT_MatFX.controller"; public static string animConSABodyMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_Body_MatFX.controller"; public static string animConSAEyeMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_Eye_MatFX.controller"; public static string animConSAEyeBaseMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_EyeBase_MatFX.controller"; public static string animConSAFlameMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_Flame_MatFX.controller"; public static string animConSAHatchLMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_HatchL_MatFX.controller"; public static string animConSAHatchRMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_HatchR_MatFX.controller"; public static string animConSALightFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_LightFX.controller"; public static string animConSAMissilePodLMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_MissilePodL_MatFX.controller"; public static string animConSAMissilePodRMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_MissilePodR_MatFX.controller"; public static string animConSASliderLMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_SliderL_MatFX.controller"; public static string animConSASliderRMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_SliderR_MatFX.controller"; public static string animConSAThrusterBMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_ThrusterB_MatFX.controller"; public static string animConSAThrusterLMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_ThrusterL_MatFX.controller"; public static string animConSAThrusterRMatFX = "RoR2/DLC3/SolusAmalgamator/animCon_SA_ThrusterR_MatFX.controller"; public static string animSolusAmalgamatorBoss = "RoR2/DLC3/SolusAmalgamator/animSolusAmalgamatorBoss.controller"; public static string animatorThruster = "RoR2/DLC3/SolusAmalgamator/animatorThruster.controller"; public static string SilhouetteBipedal = "RoR2/DLC3/SolusHeart/Silhouette_Bipedal.controller"; public static string SilhouetteBipedalOffering = "RoR2/DLC3/SolusHeart/Silhouette_Bipedal_Offering.controller"; public static string animatorThruster28 = "RoR2/DLC3/SolusMine/animatorThruster.controller"; public static string animSolusWingPostFight = "RoR2/DLC3/SolusWing/animSolusWingPostFight.controller"; public static string animSolusWing = "RoR2/DLC3/SolusWing/animSolusWing.controller"; public static string animSolusWingHalo = "RoR2/DLC3/SolusWing/animSolusWingHalo.controller"; public static string animSolusWingHalo2Anniversary = "RoR2/DLC3/SolusWing/animSolusWingHalo_2_Anniversary.controller"; public static string animSolusWingPreFight = "RoR2/DLC3/SolusWing/animSolusWingPreFight.controller"; public static string animSolusWingHaloLogbook = "RoR2/DLC3/SolusWing/animSolusWingHaloLogbook.controller"; public static string AnimConBody = "RoR2/DLC3/SolusWing/AnimCon_Body.controller"; public static string AnimConBodyParts = "RoR2/DLC3/SolusWing/AnimCon_BodyParts.controller"; public static string AnimConCables = "RoR2/DLC3/SolusWing/AnimCon_Cables.controller"; public static string AnimConExhaustPorts = "RoR2/DLC3/SolusWing/AnimCon_ExhaustPorts.controller"; public static string AnimConEye = "RoR2/DLC3/SolusWing/AnimCon_Eye.controller"; public static string AnimConHalos = "RoR2/DLC3/SolusWing/AnimCon_Halos.controller"; public static string AnimConPanels = "RoR2/DLC3/SolusWing/AnimCon_Panels.controller"; public static string AnimConVentLights = "RoR2/DLC3/SolusWing/AnimCon_VentLights.controller"; public static string podAnimatorController = "RoR2/DLC3/SolusWingForm1/podAnimatorController.controller"; public static string animTanker = "RoR2/DLC3/Tanker/animTanker.controller"; public static string animTankerLogBook = "RoR2/DLC3/Tanker/animTankerLogBook.controller"; public static string animSolusVendor = "RoR2/DLC3/animSolusVendor.controller"; public static string animVultureHunter = "RoR2/DLC3/VultureHunter/animVultureHunter.controller"; public static string animConWUUMatFX = "RoR2/DLC3/WorkerUnit/animCon_WU_U_MatFX.controller"; public static string animConWUU1MatFX = "RoR2/DLC3/WorkerUnit/animCon_WU_U1_MatFX.controller"; public static string animConWUU2MatFX = "RoR2/DLC3/WorkerUnit/animCon_WU_U2_MatFX.controller"; public static string animConWUU3MatFX = "RoR2/DLC3/WorkerUnit/animCon_WU_U3_MatFX.controller"; public static string animConWUU4MatFX = "RoR2/DLC3/WorkerUnit/animCon_WU_U4_MatFX.controller"; public static string animConWUU5MatFX = "RoR2/DLC3/WorkerUnit/animCon_WU_U5_MatFX.controller"; public static string animConWUU6MatFX = "RoR2/DLC3/WorkerUnit/animCon_WU_U6_MatFX.controller"; public static string animWorkerUnit = "RoR2/DLC3/WorkerUnit/animWorkerUnit.controller"; public static string DisplayEliteCollectiveRingAnimController = "RoR2/DLC3/Collective/DisplayEliteCollectiveRingAnimController.controller"; public static string animParrySwordFollower = "RoR2/DLC3/Parry/animParrySwordFollower.controller"; public static string animAccessCodesNodeMaterials = "RoR2/DLC3/AccessCodesNode/animAccessCodesNodeMaterials.controller"; public static string animAccessCodesNodeModelActive = "RoR2/DLC3/AccessCodesNode/animAccessCodesNodeModelActive.controller"; public static string animAccessCodesNodeModelInactive = "RoR2/DLC3/AccessCodesNode/animAccessCodesNodeModelInactive.controller"; public static string AnimatorShrineCombatCollectivePulse = "RoR2/DLC3/Animator_ShrineCombatCollectivePulse.controller"; public static string animDrifterBagChest = "RoR2/DLC3/DrifterBagChest/animDrifterBagChest.controller"; public static string DroneAssemblyStationAnimController = "RoR2/DLC3/DroneAssemblyStation/DroneAssemblyStationAnimController.controller"; public static string animDroneScrapper = "RoR2/DLC3/DroneScrapper/animDroneScrapper.controller"; public static string animTripleDroneVendor = "RoR2/DLC3/animTripleDroneVendor.controller"; public static string DroneVendorBeamPersVFXAnimController = "RoR2/DLC3/DroneVendorBeamPersVFXAnimController.controller"; public static string animFriendUnitBroken = "RoR2/DLC3/FriendUnitUnlockInteractable/animFriendUnitBroken.controller"; public static string animMealPrep = "RoR2/DLC3/MealPrep/animMealPrep.controller"; public static string AnimatorMinorShieldWall = "RoR2/DLC3/Animator_MinorShieldWall.controller"; public static string AnimatorShieldWall = "RoR2/DLC3/Animator_ShieldWall.controller"; public static string animBase = "RoR2/DLC3/PowerOrbPedestal/animBase.controller"; public static string animContaineOrb = "RoR2/DLC3/PowerOrbPedestal/animContaineOrb.controller"; public static string animContainerCube = "RoR2/DLC3/PowerOrbPedestal/animContainerCube.controller"; public static string animContainerPyramid = "RoR2/DLC3/PowerOrbPedestal/animContainerPyramid.controller"; public static string animShieldTank = "RoR2/DLC3/PowerOrbShieldTank/animShieldTank.controller"; public static string animatorTemporaryItemsShop = "RoR2/DLC3/TemporaryItemsDistributor/animatorTemporaryItemsShop.controller"; public static string animSharedSufferingFX = "RoR2/DLC3/Items/SharedSuffering/animSharedSufferingFX.controller"; public static string animShieldBoosterDisplay = "RoR2/DLC3/Items/ShieldBooster/animShieldBoosterDisplay.controller"; public static string animSpeedOnPickup = "RoR2/DLC3/Items/SpeedOnPickup/animSpeedOnPickup.controller"; public static string animWyrmProjectile = "RoR2/DLC3/Items/WyrmOnHit/animWyrmProjectile.controller"; public static string animWyrmOnHitDisplay = "RoR2/DLC3/Items/WyrmOnHit/animWyrmOnHitDisplay.controller"; public static string SolusHeartIntroShotAController = "RoR2/DLC3/solusweb/SolusHeartIntro_ShotAController.controller"; public static string SolusHeartIntroShotBController = "RoR2/DLC3/solusweb/SolusHeartIntro_ShotBController.controller"; public static string SolusHeartIntroShotCController = "RoR2/DLC3/solusweb/SolusHeartIntro_ShotCController.controller"; public static string SolusWebDeathSkyboxAnimator = "RoR2/DLC3/solusweb/SolusWebDeathSkyboxAnimator.controller"; public static string SolusWebLavaAnimator = "RoR2/DLC3/solusweb/SolusWebLavaAnimator.controller"; public static string SolusWebSkyboxAnimator = "RoR2/DLC3/solusweb/SolusWebSkyboxAnimator.controller"; public static string animDoor1 = "RoR2/DLC3/solutionalhaunt/animDoor1.controller"; public static string animDoor2 = "RoR2/DLC3/solutionalhaunt/animDoor2.controller"; public static string animDoor3 = "RoR2/DLC3/solutionalhaunt/animDoor3.controller"; public static string animDoorTreasure = "RoR2/DLC3/solutionalhaunt/animDoorTreasure.controller"; public static string ROOT = "RoR2/DLC3/solutionalhaunt/ROOT.controller"; public static string SolusLampAnimController = "RoR2/DLC3/solutionalhaunt/SolusLampAnimController.controller"; public static string animSolusWingCutsceneShotB2 = "RoR2/DLC3/solutionalhaunt/animSolusWingCutsceneShotB2.controller"; public static string SolusWing2ShotA1DollyAnimator = "RoR2/DLC3/solutionalhaunt/SolusWing2_ShotA1_DollyAnimator.controller"; public static string SolusWIng2ShotA1LookAtAnimator = "RoR2/DLC3/solutionalhaunt/SolusWIng2_ShotA1_LookAtAnimator.controller"; public static string SolusWIng2BodyCutsceneAnim = "RoR2/DLC3/solutionalhaunt/SolusWIng2BodyCutsceneAnim.controller"; public static string ConfigurationTestAnimator = "RoR2/DLC3/solutionalhaunt/ConfigurationTestAnimator.controller"; public static string animAncientWisp = "RoR2/Junk/AncientWisp/animAncientWisp.controller"; public static string animArchWisp = "RoR2/Junk/ArchWisp/animArchWisp.controller"; public static string animAssassin = "RoR2/Junk/Assassin/animAssassin.controller"; public static string animBandit = "RoR2/Junk/Bandit/animBandit.controller"; public static string animBeetleGrub = "RoR2/Junk/BeetleQueen/animBeetleGrub.controller"; public static string animClay = "RoR2/Junk/ClayMan/animClay.controller"; public static string animHAND = "RoR2/Junk/HAND/animHAND.controller"; public static string animSquidTurret16 = "RoR2/Junk/Squid/animSquidTurret.controller"; public static string mdlDropship = "RoR2/Junk/Dropship/mdlDropship.controller"; public static string anmOldChest1 = "RoR2/Junk/Old Chest 1/anmOldChest1.controller"; public static string animParentPod = "RoR2/Junk/Incubator/animParentPod.controller"; public static string animSkillBar = "RoR2/Junk/UI/animSkillBar.controller"; public static string OrbRobotController = "RoR2/Junk_DLC1/EmpowerItems/OrbRobotController.controller"; } public static class EntityStateConfiguration { public static string EntityStatesDestructibleAltarSkeletonDeath = "RoR2/Base/AltarSkeleton/EntityStates.Destructible.AltarSkeletonDeath.asset"; public static string EntityStatesArtifactShellArtifactShellBaseState = "RoR2/Base/ArtifactShell/EntityStates.ArtifactShell.ArtifactShellBaseState.asset"; public static string EntityStatesArtifactShellDeath = "RoR2/Base/ArtifactShell/EntityStates.ArtifactShell.Death.asset"; public static string EntityStatesArtifactShellHurt = "RoR2/Base/ArtifactShell/EntityStates.ArtifactShell.Hurt.asset"; public static string EntityStatesArtifactShellStartHurt = "RoR2/Base/ArtifactShell/EntityStates.ArtifactShell.StartHurt.asset"; public static string EntityStatesArtifactShellWaitForIntro = "RoR2/Base/ArtifactShell/EntityStates.ArtifactShell.WaitForIntro.asset"; public static string EntityStatesArtifactShellWaitForKey = "RoR2/Base/ArtifactShell/EntityStates.ArtifactShell.WaitForKey.asset"; public static string EntityStatesArtifactShellFireSolarFlares = "RoR2/Base/ArtifactShell/EntityStates.ArtifactShell.FireSolarFlares.asset"; public static string EntityStatesBandit2StealthMode = "RoR2/Base/Bandit2/EntityStates.Bandit2.StealthMode.asset"; public static string EntityStatesBandit2ThrowSmokebomb = "RoR2/Base/Bandit2/EntityStates.Bandit2.ThrowSmokebomb.asset"; public static string EntityStatesBandit2WeaponBandit2FireRifle = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.Bandit2FireRifle.asset"; public static string EntityStatesBandit2WeaponBandit2FireShiv = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.Bandit2FireShiv.asset"; public static string EntityStatesBandit2WeaponBaseSidearmState = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.BaseSidearmState.asset"; public static string EntityStatesBandit2WeaponEnterReload = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.EnterReload.asset"; public static string EntityStatesBandit2WeaponExitSidearmRevolver = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.ExitSidearmRevolver.asset"; public static string EntityStatesBandit2WeaponFireShotgun2 = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.FireShotgun2.asset"; public static string EntityStatesBandit2WeaponFireSidearmResetRevolver = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.FireSidearmResetRevolver.asset"; public static string EntityStatesBandit2WeaponFireSidearmSkullRevolver = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.FireSidearmSkullRevolver.asset"; public static string EntityStatesBandit2WeaponPrepSidearmResetRevolver = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.PrepSidearmResetRevolver.asset"; public static string EntityStatesBandit2WeaponPrepSidearmSkullRevolver = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.PrepSidearmSkullRevolver.asset"; public static string EntityStatesBandit2WeaponReload = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.Reload.asset"; public static string EntityStatesBandit2WeaponSlashBlade = "RoR2/Base/Bandit2/EntityStates.Bandit2.Weapon.SlashBlade.asset"; public static string EntityStatesBeetleMonsterSpawnState = "RoR2/Base/Beetle/EntityStates.BeetleMonster.SpawnState.asset"; public static string EntityStatesBeetleMonsterHeadbuttState = "RoR2/Base/Beetle/EntityStates.BeetleMonster.HeadbuttState.asset"; public static string EntityStatesSleepState = "RoR2/Base/Beetle/EntityStates.SleepState.asset"; public static string EntityStatesBeetleGuardMonsterSpawnState = "RoR2/Base/BeetleGuard/EntityStates.BeetleGuardMonster.SpawnState.asset"; public static string EntityStatesBeetleGuardMonsterDefenseUp = "RoR2/Base/BeetleGuard/EntityStates.BeetleGuardMonster.DefenseUp.asset"; public static string EntityStatesBeetleGuardMonsterFireSunder = "RoR2/Base/BeetleGuard/EntityStates.BeetleGuardMonster.FireSunder.asset"; public static string EntityStatesBeetleGuardMonsterGroundSlam = "RoR2/Base/BeetleGuard/EntityStates.BeetleGuardMonster.GroundSlam.asset"; public static string EntityStatesBeetleQueenMonsterSpawnState = "RoR2/Base/BeetleQueen/EntityStates.BeetleQueenMonster.SpawnState.asset"; public static string EntityStatesBeetleQueenMonsterChargeSpit = "RoR2/Base/BeetleQueen/EntityStates.BeetleQueenMonster.ChargeSpit.asset"; public static string EntityStatesBeetleQueenMonsterFireSpit = "RoR2/Base/BeetleQueen/EntityStates.BeetleQueenMonster.FireSpit.asset"; public static string EntityStatesBeetleQueenMonsterSpawnWards = "RoR2/Base/BeetleQueen/EntityStates.BeetleQueenMonster.SpawnWards.asset"; public static string EntityStatesBeetleQueenMonsterSummonEggs = "RoR2/Base/BeetleQueen/EntityStates.BeetleQueenMonster.SummonEggs.asset"; public static string EntityStatesBeetleQueenMonsterBeetleWardDeath = "RoR2/Base/BeetleGroup/BeetleWard/EntityStates.BeetleQueenMonster.BeetleWardDeath.asset"; public static string EntityStatesBellDeathState = "RoR2/Base/Bell/EntityStates.Bell.DeathState.asset"; public static string EntityStatesBellSpawnState = "RoR2/Base/Bell/EntityStates.Bell.SpawnState.asset"; public static string EntityStatesBellBellWeaponChargeTrioBomb = "RoR2/Base/Bell/EntityStates.Bell.BellWeapon.ChargeTrioBomb.asset"; public static string EntityStatesFaunaBirdsharkDeathState = "RoR2/Base/Birdshark/EntityStates.Fauna.BirdsharkDeathState.asset"; public static string EntityStatesBisonSpawnState = "RoR2/Base/Bison/EntityStates.Bison.SpawnState.asset"; public static string EntityStatesStunState = "RoR2/Base/Bison/EntityStates.StunState.asset"; public static string EntityStatesBisonCharge = "RoR2/Base/Bison/EntityStates.Bison.Charge.asset"; public static string EntityStatesBisonHeadbutt = "RoR2/Base/Bison/EntityStates.Bison.Headbutt.asset"; public static string EntityStatesBisonPrepCharge = "RoR2/Base/Bison/EntityStates.Bison.PrepCharge.asset"; public static string EntityStatesBrotherMonsterInstantDeathState = "RoR2/Base/Brother/EntityStates.BrotherMonster.InstantDeathState.asset"; public static string EntityStatesBrotherMonsterSkyLeapDeathState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SkyLeapDeathState.asset"; public static string EntityStatesBrotherMonsterSkySpawnState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SkySpawnState.asset"; public static string EntityStatesBrotherMonsterBaseSlideState = "RoR2/Base/Brother/EntityStates.BrotherMonster.BaseSlideState.asset"; public static string EntityStatesBrotherMonsterEnterSkyLeap = "RoR2/Base/Brother/EntityStates.BrotherMonster.EnterSkyLeap.asset"; public static string EntityStatesBrotherMonsterExitSkyLeap = "RoR2/Base/Brother/EntityStates.BrotherMonster.ExitSkyLeap.asset"; public static string EntityStatesBrotherMonsterHoldSkyLeap = "RoR2/Base/Brother/EntityStates.BrotherMonster.HoldSkyLeap.asset"; public static string EntityStatesBrotherMonsterSlideBackwardState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SlideBackwardState.asset"; public static string EntityStatesBrotherMonsterSlideForwardState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SlideForwardState.asset"; public static string EntityStatesBrotherMonsterSlideIntroState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SlideIntroState.asset"; public static string EntityStatesBrotherMonsterSlideLeftState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SlideLeftState.asset"; public static string EntityStatesBrotherMonsterSlideRightState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SlideRightState.asset"; public static string EntityStatesBrotherMonsterSprintBash = "RoR2/Base/Brother/EntityStates.BrotherMonster.SprintBash.asset"; public static string EntityStatesBrotherMonsterUltChannelState = "RoR2/Base/Brother/EntityStates.BrotherMonster.UltChannelState.asset"; public static string EntityStatesBrotherMonsterUltEnterState = "RoR2/Base/Brother/EntityStates.BrotherMonster.UltEnterState.asset"; public static string EntityStatesBrotherMonsterUltExitState = "RoR2/Base/Brother/EntityStates.BrotherMonster.UltExitState.asset"; public static string EntityStatesBrotherMonsterWeaponSlam = "RoR2/Base/Brother/EntityStates.BrotherMonster.WeaponSlam.asset"; public static string EntityStatesBrotherMonsterSpellBaseState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SpellBaseState.asset"; public static string EntityStatesBrotherMonsterSpellChannelEnterState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SpellChannelEnterState.asset"; public static string EntityStatesBrotherMonsterSpellChannelExitState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SpellChannelExitState.asset"; public static string EntityStatesBrotherMonsterSpellChannelState = "RoR2/Base/Brother/EntityStates.BrotherMonster.SpellChannelState.asset"; public static string EntityStatesBrotherMonsterStaggerBaseState = "RoR2/Base/Brother/EntityStates.BrotherMonster.StaggerBaseState.asset"; public static string EntityStatesBrotherMonsterStaggerEnter = "RoR2/Base/Brother/EntityStates.BrotherMonster.StaggerEnter.asset"; public static string EntityStatesBrotherMonsterStaggerExit = "RoR2/Base/Brother/EntityStates.BrotherMonster.StaggerExit.asset"; public static string EntityStatesBrotherMonsterStaggerLoop = "RoR2/Base/Brother/EntityStates.BrotherMonster.StaggerLoop.asset"; public static string EntityStatesBrotherMonsterTrueDeathState = "RoR2/Base/Brother/EntityStates.BrotherMonster.TrueDeathState.asset"; public static string EntityStatesBrotherMonsterFistSlam = "RoR2/Base/Brother/EntityStates.BrotherMonster.FistSlam.asset"; public static string EntityStatesBrotherMonsterWeaponFireLunarShards = "RoR2/Base/Brother/EntityStates.BrotherMonster.Weapon.FireLunarShards.asset"; public static string EntityStatesBrotherMonsterWeaponFireLunarShardsHurt = "RoR2/Base/Brother/EntityStates.BrotherMonster.Weapon.FireLunarShardsHurt.asset"; public static string EntityStatesBrotherHauntFireRandomProjectiles = "RoR2/Base/BrotherHaunt/EntityStates.BrotherHaunt.FireRandomProjectiles.asset"; public static string EntityStatesCaptainSupplyDropBaseCaptainSupplyDropState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.BaseCaptainSupplyDropState.asset"; public static string EntityStatesCaptainSupplyDropBaseMainState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.BaseMainState.asset"; public static string EntityStatesCaptainSupplyDropDeployState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.DeployState.asset"; public static string EntityStatesCaptainSupplyDropEntryState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.EntryState.asset"; public static string EntityStatesCaptainSupplyDropEquipmentRestockMainState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.EquipmentRestockMainState.asset"; public static string EntityStatesCaptainSupplyDropHackingInProgressState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.HackingInProgressState.asset"; public static string EntityStatesCaptainSupplyDropHackingMainState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.HackingMainState.asset"; public static string EntityStatesCaptainSupplyDropHealZoneMainState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.HealZoneMainState.asset"; public static string EntityStatesCaptainSupplyDropHitGroundState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.HitGroundState.asset"; public static string EntityStatesCaptainSupplyDropPlatingBuffMainState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.PlatingBuffMainState.asset"; public static string EntityStatesCaptainSupplyDropShockZoneMainState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.ShockZoneMainState.asset"; public static string EntityStatesCaptainSupplyDropUnlockTargetState = "RoR2/Base/Captain/EntityStates.CaptainSupplyDrop.UnlockTargetState.asset"; public static string EntityStatesCaptainWeaponCallAirstrikeAltEnter = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallAirstrikeAltEnter.asset"; public static string EntityStatesCaptainWeaponCallAirstrike1 = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallAirstrike1.asset"; public static string EntityStatesCaptainWeaponCallAirstrike2 = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallAirstrike2.asset"; public static string EntityStatesCaptainWeaponCallAirstrike3 = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallAirstrike3.asset"; public static string EntityStatesCaptainWeaponCallAirstrikeAlt = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallAirstrikeAlt.asset"; public static string EntityStatesCaptainWeaponCallAirstrikeBase = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallAirstrikeBase.asset"; public static string EntityStatesCaptainWeaponCallAirstrikeEnter = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallAirstrikeEnter.asset"; public static string EntityStatesCaptainWeaponCallSupplyDropBase = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallSupplyDropBase.asset"; public static string EntityStatesCaptainWeaponCallSupplyDropEquipmentRestock = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallSupplyDropEquipmentRestock.asset"; public static string EntityStatesCaptainWeaponCallSupplyDropHacking = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallSupplyDropHacking.asset"; public static string EntityStatesCaptainWeaponCallSupplyDropHealing = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallSupplyDropHealing.asset"; public static string EntityStatesCaptainWeaponCallSupplyDropShocking = "RoR2/Base/Captain/EntityStates.Captain.Weapon.CallSupplyDropShocking.asset"; public static string EntityStatesCaptainWeaponChargeCaptainShotgun = "RoR2/Base/Captain/EntityStates.Captain.Weapon.ChargeCaptainShotgun.asset"; public static string EntityStatesCaptainWeaponFireCaptainShotgun = "RoR2/Base/Captain/EntityStates.Captain.Weapon.FireCaptainShotgun.asset"; public static string EntityStatesCaptainWeaponFireTazer = "RoR2/Base/Captain/EntityStates.Captain.Weapon.FireTazer.asset"; public static string EntityStatesCaptainWeaponSetupAirstrike = "RoR2/Base/Captain/EntityStates.Captain.Weapon.SetupAirstrike.asset"; public static string EntityStatesCaptainWeaponSetupAirstrikeAlt = "RoR2/Base/Captain/EntityStates.Captain.Weapon.SetupAirstrikeAlt.asset"; public static string EntityStatesCaptainWeaponSetupSupplyDrop = "RoR2/Base/Captain/EntityStates.Captain.Weapon.SetupSupplyDrop.asset"; public static string EntityStatesClayBossDeathState = "RoR2/Base/ClayBoss/EntityStates.ClayBoss.DeathState.asset"; public static string EntityStatesClayBossSpawnState = "RoR2/Base/ClayBoss/EntityStates.ClayBoss.SpawnState.asset"; public static string EntityStatesClayBossClayBossWeaponChargeBombardment = "RoR2/Base/ClayBoss/EntityStates.ClayBoss.ClayBossWeapon.ChargeBombardment.asset"; public static string EntityStatesClayBossClayBossWeaponFireBombardment = "RoR2/Base/ClayBoss/EntityStates.ClayBoss.ClayBossWeapon.FireBombardment.asset"; public static string EntityStatesClayBossFireTarball = "RoR2/Base/ClayBoss/EntityStates.ClayBoss.FireTarball.asset"; public static string EntityStatesClayBossPrepTarBall = "RoR2/Base/ClayBoss/EntityStates.ClayBoss.PrepTarBall.asset"; public static string EntityStatesClayBossRecover = "RoR2/Base/ClayBoss/EntityStates.ClayBoss.Recover.asset"; public static string EntityStatesClayBossRecoverExit = "RoR2/Base/ClayBoss/EntityStates.ClayBoss.RecoverExit.asset"; public static string EntityStatesClayBruiserMonsterSpawnState = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiserMonster.SpawnState.asset"; public static string EntityStatesClayBruiserWeaponCopycatMinigunCopycatState = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiser.Weapon.Copycat.MinigunCopycatState.asset"; public static string EntityStatesClayBruiserWeaponMinigunFireCopycatState = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiser.Weapon.MinigunFireCopycatState.asset"; public static string EntityStatesClayBruiserWeaponMinigunSpinDownCopycatState = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiser.Weapon.MinigunSpinDownCopycatState.asset"; public static string EntityStatesClayBruiserWeaponMinigunSpinUpCopycatState = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiser.Weapon.MinigunSpinUpCopycatState.asset"; public static string EntityStatesClayBruiserWeaponFireSonicBoom = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiser.Weapon.FireSonicBoom.asset"; public static string EntityStatesClayBruiserWeaponMinigunFire = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiser.Weapon.MinigunFire.asset"; public static string EntityStatesClayBruiserWeaponMinigunSpinDown = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiser.Weapon.MinigunSpinDown.asset"; public static string EntityStatesClayBruiserWeaponMinigunSpinUp = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiser.Weapon.MinigunSpinUp.asset"; public static string EntityStatesClayBruiserWeaponMinigunState = "RoR2/Base/ClayBruiser/EntityStates.ClayBruiser.Weapon.MinigunState.asset"; public static string EntityStatesCommandoCommandoWeaponFirePistol2 = "RoR2/Base/Commando/EntityStates.Commando.CommandoWeapon.FirePistol2.asset"; public static string EntityStatesCommandoCommandoWeaponReloadPistols = "RoR2/Base/Commando/EntityStates.Commando.CommandoWeapon.ReloadPistols.asset"; public static string EntityStatesCommandoCommandoWeaponFireFMJ = "RoR2/Base/Commando/EntityStates.Commando.CommandoWeapon.FireFMJ.asset"; public static string EntityStatesCommandoCommandoWeaponFireShotgunBlast = "RoR2/Base/Commando/EntityStates.Commando.CommandoWeapon.FireShotgunBlast.asset"; public static string EntityStatesCommandoCommandoWeaponThrowGrenade = "RoR2/Base/Commando/EntityStates.Commando.CommandoWeapon.ThrowGrenade.asset"; public static string EntityStatesCommandoDodgeState = "RoR2/Base/Commando/EntityStates.Commando.DodgeState.asset"; public static string EntityStatesCommandoSlideState = "RoR2/Base/Commando/EntityStates.Commando.SlideState.asset"; public static string EntityStatesCrocoSpawn = "RoR2/Base/Croco/EntityStates.Croco.Spawn.asset"; public static string EntityStatesCrocoWakeUp = "RoR2/Base/Croco/EntityStates.Croco.WakeUp.asset"; public static string EntityStatesCrocoBaseLeap = "RoR2/Base/Croco/EntityStates.Croco.BaseLeap.asset"; public static string EntityStatesCrocoBite = "RoR2/Base/Croco/EntityStates.Croco.Bite.asset"; public static string EntityStatesCrocoChainableLeap = "RoR2/Base/Croco/EntityStates.Croco.ChainableLeap.asset"; public static string EntityStatesCrocoFireDiseaseProjectile = "RoR2/Base/Croco/EntityStates.Croco.FireDiseaseProjectile.asset"; public static string EntityStatesCrocoFireSpit = "RoR2/Base/Croco/EntityStates.Croco.FireSpit.asset"; public static string EntityStatesCrocoLeap = "RoR2/Base/Croco/EntityStates.Croco.Leap.asset"; public static string EntityStatesCrocoSlash = "RoR2/Base/Croco/EntityStates.Croco.Slash.asset"; public static string EntityStatesDroneDeathState = "RoR2/Base/Drones/EntityStates.Drone.DeathState.asset"; public static string EntityStatesDroneDroneWeaponFireTurret = "RoR2/Base/Drones/EntityStates.Drone.DroneWeapon.FireTurret.asset"; public static string EntityStatesDroneDroneWeaponHealBeam = "RoR2/Base/Drones/EntityStates.Drone.DroneWeapon.HealBeam.asset"; public static string EntityStatesDroneDroneWeaponStartHealBeam = "RoR2/Base/Drones/EntityStates.Drone.DroneWeapon.StartHealBeam.asset"; public static string EntityStatesDroneDroneWeaponFlamethrower = "RoR2/Base/Drones/EntityStates.Drone.DroneWeapon.Flamethrower.asset"; public static string EntityStatesDroneMegaDroneDeathState = "RoR2/Base/Drones/EntityStates.Drone.MegaDroneDeathState.asset"; public static string EntityStatesDroneDroneWeaponFireMegaTurret = "RoR2/Base/Drones/EntityStates.Drone.DroneWeapon.FireMegaTurret.asset"; public static string EntityStatesDroneDroneWeaponFireTwinRocket = "RoR2/Base/Drones/EntityStates.Drone.DroneWeapon.FireTwinRocket.asset"; public static string EntityStatesDroneDroneWeaponFireMissileBarrage = "RoR2/Base/Drones/EntityStates.Drone.DroneWeapon.FireMissileBarrage.asset"; public static string EntityStatesTurret1DeathState = "RoR2/Base/Drones/EntityStates.Turret1.DeathState.asset"; public static string EntityStatesTurret1SpawnState = "RoR2/Base/Drones/EntityStates.Turret1.SpawnState.asset"; public static string EntityStatesDroneDroneWeaponFireGatling = "RoR2/Base/Drones/EntityStates.Drone.DroneWeapon.FireGatling.asset"; public static string EntityStatesEngiEngiMissilePainterBaseEngiMissilePainterState = "RoR2/Base/Engi/EntityStates.Engi.EngiMissilePainter.BaseEngiMissilePainterState.asset"; public static string EntityStatesEngiEngiMissilePainterFinish = "RoR2/Base/Engi/EntityStates.Engi.EngiMissilePainter.Finish.asset"; public static string EntityStatesEngiEngiMissilePainterFire = "RoR2/Base/Engi/EntityStates.Engi.EngiMissilePainter.Fire.asset"; public static string EntityStatesEngiEngiMissilePainterPaint = "RoR2/Base/Engi/EntityStates.Engi.EngiMissilePainter.Paint.asset"; public static string EntityStatesEngiEngiWeaponChargeGrenades = "RoR2/Base/Engi/EntityStates.Engi.EngiWeapon.ChargeGrenades.asset"; public static string EntityStatesEngiEngiWeaponFireBubbleShield = "RoR2/Base/Engi/EntityStates.Engi.EngiWeapon.FireBubbleShield.asset"; public static string EntityStatesEngiEngiWeaponFireGrenades = "RoR2/Base/Engi/EntityStates.Engi.EngiWeapon.FireGrenades.asset"; public static string EntityStatesEngiEngiWeaponFireMines = "RoR2/Base/Engi/EntityStates.Engi.EngiWeapon.FireMines.asset"; public static string EntityStatesEngiEngiWeaponFireSpiderMine = "RoR2/Base/Engi/EntityStates.Engi.EngiWeapon.FireSpiderMine.asset"; public static string EntityStatesEngiEngiWeaponPlaceTurret = "RoR2/Base/Engi/EntityStates.Engi.EngiWeapon.PlaceTurret.asset"; public static string EntityStatesEngiEngiWeaponPlaceWalkerTurret = "RoR2/Base/Engi/EntityStates.Engi.EngiWeapon.PlaceWalkerTurret.asset"; public static string EntityStatesEngiTurretDeathState = "RoR2/Base/Engi/EntityStates.EngiTurret.DeathState.asset"; public static string EntityStatesEngiTurretEngiTurretWeaponFireBeam = "RoR2/Base/Engi/EntityStates.EngiTurret.EngiTurretWeapon.FireBeam.asset"; public static string EntityStatesEngiTurretEngiTurretWeaponFireGauss = "RoR2/Base/Engi/EntityStates.EngiTurret.EngiTurretWeapon.FireGauss.asset"; public static string EntityStatesEngiEngiBubbleShieldDeployed = "RoR2/Base/Engi/EntityStates.Engi.EngiBubbleShield.Deployed.asset"; public static string EntityStatesEngiEngiBubbleShieldUndeployed = "RoR2/Base/Engi/EntityStates.Engi.EngiBubbleShield.Undeployed.asset"; public static string EntityStatesEngiMineArm = "RoR2/Base/Engi/EntityStates.Engi.Mine.Arm.asset"; public static string EntityStatesEngiMineBaseMineArmingState = "RoR2/Base/Engi/EntityStates.Engi.Mine.BaseMineArmingState.asset"; public static string EntityStatesEngiMineBaseMineState = "RoR2/Base/Engi/EntityStates.Engi.Mine.BaseMineState.asset"; public static string EntityStatesEngiMineDetonate = "RoR2/Base/Engi/EntityStates.Engi.Mine.Detonate.asset"; public static string EntityStatesEngiMineMineArmingFull = "RoR2/Base/Engi/EntityStates.Engi.Mine.MineArmingFull.asset"; public static string EntityStatesEngiMineMineArmingUnarmed = "RoR2/Base/Engi/EntityStates.Engi.Mine.MineArmingUnarmed.asset"; public static string EntityStatesEngiMineMineArmingWeak = "RoR2/Base/Engi/EntityStates.Engi.Mine.MineArmingWeak.asset"; public static string EntityStatesEngiMinePreDetonate = "RoR2/Base/Engi/EntityStates.Engi.Mine.PreDetonate.asset"; public static string EntityStatesEngiMineWaitForStick = "RoR2/Base/Engi/EntityStates.Engi.Mine.WaitForStick.asset"; public static string EntityStatesEngiMineWaitForTarget = "RoR2/Base/Engi/EntityStates.Engi.Mine.WaitForTarget.asset"; public static string EntityStatesEngiSpiderMineBaseSpiderMineState = "RoR2/Base/Engi/EntityStates.Engi.SpiderMine.BaseSpiderMineState.asset"; public static string EntityStatesEngiSpiderMineBurrow = "RoR2/Base/Engi/EntityStates.Engi.SpiderMine.Burrow.asset"; public static string EntityStatesEngiSpiderMineChaseTarget = "RoR2/Base/Engi/EntityStates.Engi.SpiderMine.ChaseTarget.asset"; public static string EntityStatesEngiSpiderMineDetonate = "RoR2/Base/Engi/EntityStates.Engi.SpiderMine.Detonate.asset"; public static string EntityStatesEngiSpiderMinePreDetonate = "RoR2/Base/Engi/EntityStates.Engi.SpiderMine.PreDetonate.asset"; public static string EntityStatesEngiSpiderMineUnburrow = "RoR2/Base/Engi/EntityStates.Engi.SpiderMine.Unburrow.asset"; public static string EntityStatesEngiSpiderMineWaitForStick = "RoR2/Base/Engi/EntityStates.Engi.SpiderMine.WaitForStick.asset"; public static string EntityStatesEngiSpiderMineWaitForTarget = "RoR2/Base/Engi/EntityStates.Engi.SpiderMine.WaitForTarget.asset"; public static string EntityStatesDestructibleExplosivePotDeath = "RoR2/Base/ExplosivePotDestructible/EntityStates.Destructible.ExplosivePotDeath.asset"; public static string EntityStatesDestructibleFusionCellDeath = "RoR2/Base/FusionCellDestructible/EntityStates.Destructible.FusionCellDeath.asset"; public static string EntityStatesGolemMonsterDeathState = "RoR2/Base/Golem/EntityStates.GolemMonster.DeathState.asset"; public static string EntityStatesGolemMonsterSpawnState = "RoR2/Base/Golem/EntityStates.GolemMonster.SpawnState.asset"; public static string EntityStatesGolemMonsterChargeLaser = "RoR2/Base/Golem/EntityStates.GolemMonster.ChargeLaser.asset"; public static string EntityStatesGolemMonsterClapState = "RoR2/Base/Golem/EntityStates.GolemMonster.ClapState.asset"; public static string EntityStatesGolemMonsterFireLaser = "RoR2/Base/Golem/EntityStates.GolemMonster.FireLaser.asset"; public static string EntityStatesGrandParentBossDeathState = "RoR2/Base/Grandparent/EntityStates.GrandParentBoss.DeathState.asset"; public static string EntityStatesGrandParentBossSpawnState = "RoR2/Base/Grandparent/EntityStates.GrandParentBoss.SpawnState.asset"; public static string EntityStatesIdle = "RoR2/Base/Grandparent/EntityStates.Idle.asset"; public static string EntityStatesGrandParentSunGrandParentSunDeath = "RoR2/Base/Grandparent/EntityStates.GrandParentSun.GrandParentSunDeath.asset"; public static string EntityStatesGrandParentSunGrandParentSunMain = "RoR2/Base/Grandparent/EntityStates.GrandParentSun.GrandParentSunMain.asset"; public static string EntityStatesGrandParentSunGrandParentSunSpawn = "RoR2/Base/Grandparent/EntityStates.GrandParentSun.GrandParentSunSpawn.asset"; public static string EntityStatesGrandParentChannelSun = "RoR2/Base/Grandparent/EntityStates.GrandParent.ChannelSun.asset"; public static string EntityStatesGrandParentChannelSunBase = "RoR2/Base/Grandparent/EntityStates.GrandParent.ChannelSunBase.asset"; public static string EntityStatesGrandParentChannelSunEnd = "RoR2/Base/Grandparent/EntityStates.GrandParent.ChannelSunEnd.asset"; public static string EntityStatesGrandParentChannelSunStart = "RoR2/Base/Grandparent/EntityStates.GrandParent.ChannelSunStart.asset"; public static string EntityStatesGrandParentBossFireSecondaryProjectile = "RoR2/Base/Grandparent/EntityStates.GrandParentBoss.FireSecondaryProjectile.asset"; public static string EntityStatesGrandParentBossGroundSwipe = "RoR2/Base/Grandparent/EntityStates.GrandParentBoss.GroundSwipe.asset"; public static string EntityStatesAnimatedJump = "RoR2/Base/Gravekeeper/EntityStates.AnimatedJump.asset"; public static string EntityStatesBigCharacterMain = "RoR2/Base/Gravekeeper/EntityStates.BigCharacterMain.asset"; public static string EntityStatesGravekeeperBossSpawnState = "RoR2/Base/Gravekeeper/EntityStates.GravekeeperBoss.SpawnState.asset"; public static string EntityStatesGravekeeperBossFireHook = "RoR2/Base/Gravekeeper/EntityStates.GravekeeperBoss.FireHook.asset"; public static string EntityStatesGravekeeperBossPrepHook = "RoR2/Base/Gravekeeper/EntityStates.GravekeeperBoss.PrepHook.asset"; public static string EntityStatesGravekeeperMonsterWeaponGravekeeperBarrage = "RoR2/Base/Gravekeeper/EntityStates.GravekeeperMonster.Weapon.GravekeeperBarrage.asset"; public static string EntityStatesGreaterWispMonsterDeathState = "RoR2/Base/GreaterWisp/EntityStates.GreaterWispMonster.DeathState.asset"; public static string EntityStatesGreaterWispMonsterSpawnState = "RoR2/Base/GreaterWisp/EntityStates.GreaterWispMonster.SpawnState.asset"; public static string EntityStatesGreaterWispMonsterChargeCannons = "RoR2/Base/GreaterWisp/EntityStates.GreaterWispMonster.ChargeCannons.asset"; public static string EntityStatesGreaterWispMonsterFireCannons = "RoR2/Base/GreaterWisp/EntityStates.GreaterWispMonster.FireCannons.asset"; public static string EntityStatesHereticSpawnState = "RoR2/Base/Heretic/EntityStates.Heretic.SpawnState.asset"; public static string EntityStatesHereticWeaponSquawk = "RoR2/Base/Heretic/EntityStates.Heretic.Weapon.Squawk.asset"; public static string EntityStatesHermitCrabSpawnState = "RoR2/Base/HermitCrab/EntityStates.HermitCrab.SpawnState.asset"; public static string EntityStatesHermitCrabBurrowed = "RoR2/Base/HermitCrab/EntityStates.HermitCrab.Burrowed.asset"; public static string EntityStatesHermitCrabBurrowIn = "RoR2/Base/HermitCrab/EntityStates.HermitCrab.BurrowIn.asset"; public static string EntityStatesHermitCrabBurrowOut = "RoR2/Base/HermitCrab/EntityStates.HermitCrab.BurrowOut.asset"; public static string EntityStatesHermitCrabFireMortar = "RoR2/Base/HermitCrab/EntityStates.HermitCrab.FireMortar.asset"; public static string EntityStatesHuntressAimArrowSnipe = "RoR2/Base/Huntress/EntityStates.Huntress.AimArrowSnipe.asset"; public static string EntityStatesHuntressArrowRain = "RoR2/Base/Huntress/EntityStates.Huntress.ArrowRain.asset"; public static string EntityStatesHuntressBaseArrowBarrage = "RoR2/Base/Huntress/EntityStates.Huntress.BaseArrowBarrage.asset"; public static string EntityStatesHuntressBaseBeginArrowBarrage = "RoR2/Base/Huntress/EntityStates.Huntress.BaseBeginArrowBarrage.asset"; public static string EntityStatesHuntressBeginArrowRain = "RoR2/Base/Huntress/EntityStates.Huntress.BeginArrowRain.asset"; public static string EntityStatesHuntressBeginArrowSnipe = "RoR2/Base/Huntress/EntityStates.Huntress.BeginArrowSnipe.asset"; public static string EntityStatesHuntressBlinkState = "RoR2/Base/Huntress/EntityStates.Huntress.BlinkState.asset"; public static string EntityStatesHuntressHuntressWeaponFireFlurrySeekingArrow = "RoR2/Base/Huntress/EntityStates.Huntress.HuntressWeapon.FireFlurrySeekingArrow.asset"; public static string EntityStatesHuntressHuntressWeaponFireSeekingArrow = "RoR2/Base/Huntress/EntityStates.Huntress.HuntressWeapon.FireSeekingArrow.asset"; public static string EntityStatesHuntressHuntressWeaponThrowGlaive = "RoR2/Base/Huntress/EntityStates.Huntress.HuntressWeapon.ThrowGlaive.asset"; public static string EntityStatesHuntressMiniBlinkState = "RoR2/Base/Huntress/EntityStates.Huntress.MiniBlinkState.asset"; public static string EntityStatesHuntressWeaponFireArrowSnipe = "RoR2/Base/Huntress/EntityStates.Huntress.Weapon.FireArrowSnipe.asset"; public static string EntityStatesImpMonsterDeathState = "RoR2/Base/Imp/EntityStates.ImpMonster.DeathState.asset"; public static string EntityStatesImpMonsterSpawnState = "RoR2/Base/Imp/EntityStates.ImpMonster.SpawnState.asset"; public static string EntityStatesImpMonsterBlinkState = "RoR2/Base/Imp/EntityStates.ImpMonster.BlinkState.asset"; public static string EntityStatesImpMonsterDoubleSlash = "RoR2/Base/Imp/EntityStates.ImpMonster.DoubleSlash.asset"; public static string EntityStatesImpBossMonsterBlinkState = "RoR2/Base/ImpBoss/EntityStates.ImpBossMonster.BlinkState.asset"; public static string EntityStatesImpBossMonsterDeathState = "RoR2/Base/ImpBoss/EntityStates.ImpBossMonster.DeathState.asset"; public static string EntityStatesImpBossMonsterSpawnState = "RoR2/Base/ImpBoss/EntityStates.ImpBossMonster.SpawnState.asset"; public static string EntityStatesImpBossMonsterFireVoidspikes = "RoR2/Base/ImpBoss/EntityStates.ImpBossMonster.FireVoidspikes.asset"; public static string EntityStatesImpBossMonsterGroundPound = "RoR2/Base/ImpBoss/EntityStates.ImpBossMonster.GroundPound.asset"; public static string EntityStatesJellyfishMonsterDeathState = "RoR2/Base/Jellyfish/EntityStates.JellyfishMonster.DeathState.asset"; public static string EntityStatesJellyfishMonsterSpawnState = "RoR2/Base/Jellyfish/EntityStates.JellyfishMonster.SpawnState.asset"; public static string EntityStatesJellyfishMonsterJellyNova = "RoR2/Base/Jellyfish/EntityStates.JellyfishMonster.JellyNova.asset"; public static string EntityStatesLemurianMonsterSpawnState = "RoR2/Base/Lemurian/EntityStates.LemurianMonster.SpawnState.asset"; public static string EntityStatesLemurianMonsterBite = "RoR2/Base/Lemurian/EntityStates.LemurianMonster.Bite.asset"; public static string EntityStatesLemurianMonsterChargeFireball = "RoR2/Base/Lemurian/EntityStates.LemurianMonster.ChargeFireball.asset"; public static string EntityStatesLemurianMonsterFireFireball = "RoR2/Base/Lemurian/EntityStates.LemurianMonster.FireFireball.asset"; public static string EntityStatesLemurianBruiserMonsterSpawnState = "RoR2/Base/LemurianBruiser/EntityStates.LemurianBruiserMonster.SpawnState.asset"; public static string EntityStatesLemurianBruiserMonsterChargeMegaFireball = "RoR2/Base/LemurianBruiser/EntityStates.LemurianBruiserMonster.ChargeMegaFireball.asset"; public static string EntityStatesLemurianBruiserMonsterFireMegaFireball = "RoR2/Base/LemurianBruiser/EntityStates.LemurianBruiserMonster.FireMegaFireball.asset"; public static string EntityStatesLemurianBruiserMonsterFlamebreath = "RoR2/Base/LemurianBruiser/EntityStates.LemurianBruiserMonster.Flamebreath.asset"; public static string EntityStatesLoaderFireHook = "RoR2/Base/Loader/EntityStates.Loader.FireHook.asset"; public static string RoR2ProjectileProjectileGrappleControllerBaseGripState = "RoR2/Base/Loader/RoR2.Projectile.ProjectileGrappleController+BaseGripState.asset"; public static string RoR2ProjectileProjectileGrappleControllerBaseState = "RoR2/Base/Loader/RoR2.Projectile.ProjectileGrappleController+BaseState.asset"; public static string RoR2ProjectileProjectileGrappleControllerFlyState = "RoR2/Base/Loader/RoR2.Projectile.ProjectileGrappleController+FlyState.asset"; public static string RoR2ProjectileProjectileGrappleControllerGripState = "RoR2/Base/Loader/RoR2.Projectile.ProjectileGrappleController+GripState.asset"; public static string RoR2ProjectileProjectileGrappleControllerReturnState = "RoR2/Base/Loader/RoR2.Projectile.ProjectileGrappleController+ReturnState.asset"; public static string RoR2ProjectileProjectileGrappleControllerYankState = "RoR2/Base/Loader/RoR2.Projectile.ProjectileGrappleController+YankState.asset"; public static string EntityStatesLoaderBaseChargeFist = "RoR2/Base/Loader/EntityStates.Loader.BaseChargeFist.asset"; public static string EntityStatesLoaderBaseSwingChargedFist = "RoR2/Base/Loader/EntityStates.Loader.BaseSwingChargedFist.asset"; public static string EntityStatesLoaderChargeFist = "RoR2/Base/Loader/EntityStates.Loader.ChargeFist.asset"; public static string EntityStatesLoaderChargeZapFist = "RoR2/Base/Loader/EntityStates.Loader.ChargeZapFist.asset"; public static string EntityStatesLoaderFireYankHook = "RoR2/Base/Loader/EntityStates.Loader.FireYankHook.asset"; public static string EntityStatesLoaderGroundSlam = "RoR2/Base/Loader/EntityStates.Loader.GroundSlam.asset"; public static string EntityStatesLoaderLoaderMeleeAttack = "RoR2/Base/Loader/EntityStates.Loader.LoaderMeleeAttack.asset"; public static string EntityStatesLoaderPreGroundSlam = "RoR2/Base/Loader/EntityStates.Loader.PreGroundSlam.asset"; public static string EntityStatesLoaderSwingChargedFist = "RoR2/Base/Loader/EntityStates.Loader.SwingChargedFist.asset"; public static string EntityStatesLoaderSwingComboFist = "RoR2/Base/Loader/EntityStates.Loader.SwingComboFist.asset"; public static string EntityStatesLoaderSwingZapFist = "RoR2/Base/Loader/EntityStates.Loader.SwingZapFist.asset"; public static string EntityStatesLoaderThrowPylon = "RoR2/Base/Loader/EntityStates.Loader.ThrowPylon.asset"; public static string EntityStatesLunarExploderMonsterDeathState = "RoR2/Base/LunarExploder/EntityStates.LunarExploderMonster.DeathState.asset"; public static string EntityStatesLunarExploderMonsterSpawnState = "RoR2/Base/LunarExploder/EntityStates.LunarExploderMonster.SpawnState.asset"; public static string EntityStatesLunarExploderMonsterWeaponFireExploderShards = "RoR2/Base/LunarExploder/EntityStates.LunarExploderMonster.Weapon.FireExploderShards.asset"; public static string EntityStatesLunarGolemDeathState = "RoR2/Base/LunarGolem/EntityStates.LunarGolem.DeathState.asset"; public static string EntityStatesLunarGolemSpawnState = "RoR2/Base/LunarGolem/EntityStates.LunarGolem.SpawnState.asset"; public static string EntityStatesLunarGolemChargeTwinShot = "RoR2/Base/LunarGolem/EntityStates.LunarGolem.ChargeTwinShot.asset"; public static string EntityStatesLunarGolemFireTwinShots = "RoR2/Base/LunarGolem/EntityStates.LunarGolem.FireTwinShots.asset"; public static string EntityStatesLunarGolemShell = "RoR2/Base/LunarGolem/EntityStates.LunarGolem.Shell.asset"; public static string EntityStatesLunarWispDeathState = "RoR2/Base/LunarWisp/EntityStates.LunarWisp.DeathState.asset"; public static string EntityStatesLunarWispSpawnState = "RoR2/Base/LunarWisp/EntityStates.LunarWisp.SpawnState.asset"; public static string EntityStatesLunarWispChargeLunarGuns = "RoR2/Base/LunarWisp/EntityStates.LunarWisp.ChargeLunarGuns.asset"; public static string EntityStatesLunarWispFireLunarGuns = "RoR2/Base/LunarWisp/EntityStates.LunarWisp.FireLunarGuns.asset"; public static string EntityStatesLunarWispSeekingBomb = "RoR2/Base/LunarWisp/EntityStates.LunarWisp.SeekingBomb.asset"; public static string EntityStatesMageJetpackOn = "RoR2/Base/Mage/EntityStates.Mage.JetpackOn.asset"; public static string EntityStatesMageMageCharacterMain = "RoR2/Base/Mage/EntityStates.Mage.MageCharacterMain.asset"; public static string EntityStatesLockedMageUnlockingMage = "RoR2/Base/Mage/EntityStates.LockedMage.UnlockingMage.asset"; public static string EntityStatesMageFlyUpState = "RoR2/Base/Mage/EntityStates.Mage.FlyUpState.asset"; public static string EntityStatesMageWeaponBaseChargeBombState = "RoR2/Base/Mage/EntityStates.Mage.Weapon.BaseChargeBombState.asset"; public static string EntityStatesMageWeaponBaseThrowBombState = "RoR2/Base/Mage/EntityStates.Mage.Weapon.BaseThrowBombState.asset"; public static string EntityStatesMageWeaponChargeIcebomb = "RoR2/Base/Mage/EntityStates.Mage.Weapon.ChargeIcebomb.asset"; public static string EntityStatesMageWeaponChargeNovabomb = "RoR2/Base/Mage/EntityStates.Mage.Weapon.ChargeNovabomb.asset"; public static string EntityStatesMageWeaponFireFireBolt = "RoR2/Base/Mage/EntityStates.Mage.Weapon.FireFireBolt.asset"; public static string EntityStatesMageWeaponFireLightningBolt = "RoR2/Base/Mage/EntityStates.Mage.Weapon.FireLightningBolt.asset"; public static string EntityStatesMageWeaponFlamethrower = "RoR2/Base/Mage/EntityStates.Mage.Weapon.Flamethrower.asset"; public static string EntityStatesMageWeaponPrepWall = "RoR2/Base/Mage/EntityStates.Mage.Weapon.PrepWall.asset"; public static string EntityStatesMageWeaponThrowIcebomb = "RoR2/Base/Mage/EntityStates.Mage.Weapon.ThrowIcebomb.asset"; public static string EntityStatesMageWeaponThrowNovabomb = "RoR2/Base/Mage/EntityStates.Mage.Weapon.ThrowNovabomb.asset"; public static string EntityStatesMagmaWormDeathState = "RoR2/Base/MagmaWorm/EntityStates.MagmaWorm.DeathState.asset"; public static string EntityStatesMagmaWormBlinkState = "RoR2/Base/MagmaWorm/EntityStates.MagmaWorm.BlinkState.asset"; public static string EntityStatesMagmaWormSteerAtTarget = "RoR2/Base/MagmaWorm/EntityStates.MagmaWorm.SteerAtTarget.asset"; public static string EntityStatesMagmaWormSwitchStance = "RoR2/Base/MagmaWorm/EntityStates.MagmaWorm.SwitchStance.asset"; public static string EntityStatesMercAssaulter2 = "RoR2/Base/Merc/EntityStates.Merc.Assaulter2.asset"; public static string EntityStatesMercEvis = "RoR2/Base/Merc/EntityStates.Merc.Evis.asset"; public static string EntityStatesMercEvisDash = "RoR2/Base/Merc/EntityStates.Merc.EvisDash.asset"; public static string EntityStatesMercFocusedAssaultDash = "RoR2/Base/Merc/EntityStates.Merc.FocusedAssaultDash.asset"; public static string EntityStatesMercFocusedAssaultPrep = "RoR2/Base/Merc/EntityStates.Merc.FocusedAssaultPrep.asset"; public static string EntityStatesMercPrepAssaulter2 = "RoR2/Base/Merc/EntityStates.Merc.PrepAssaulter2.asset"; public static string EntityStatesMercUppercut = "RoR2/Base/Merc/EntityStates.Merc.Uppercut.asset"; public static string EntityStatesMercWeaponGroundLight2 = "RoR2/Base/Merc/EntityStates.Merc.Weapon.GroundLight2.asset"; public static string EntityStatesMercWeaponThrowEvisProjectile = "RoR2/Base/Merc/EntityStates.Merc.Weapon.ThrowEvisProjectile.asset"; public static string EntityStatesMercWhirlwindAir = "RoR2/Base/Merc/EntityStates.Merc.WhirlwindAir.asset"; public static string EntityStatesMercWhirlwindBase = "RoR2/Base/Merc/EntityStates.Merc.WhirlwindBase.asset"; public static string EntityStatesMercWhirlwindEntry = "RoR2/Base/Merc/EntityStates.Merc.WhirlwindEntry.asset"; public static string EntityStatesMercWhirlwindGround = "RoR2/Base/Merc/EntityStates.Merc.WhirlwindGround.asset"; public static string EntityStatesMiniMushroomSpawnState = "RoR2/Base/MiniMushroom/EntityStates.MiniMushroom.SpawnState.asset"; public static string EntityStatesMiniMushroomInPlant = "RoR2/Base/MiniMushroom/EntityStates.MiniMushroom.InPlant.asset"; public static string EntityStatesMiniMushroomPlant = "RoR2/Base/MiniMushroom/EntityStates.MiniMushroom.Plant.asset"; public static string EntityStatesMiniMushroomSporeGrenade = "RoR2/Base/MiniMushroom/EntityStates.MiniMushroom.SporeGrenade.asset"; public static string EntityStatesMiniMushroomUnPlant = "RoR2/Base/MiniMushroom/EntityStates.MiniMushroom.UnPlant.asset"; public static string EntityStatesNullifierMonsterDeathState = "RoR2/Base/Nullifier/EntityStates.NullifierMonster.DeathState.asset"; public static string EntityStatesNullifierMonsterSpawnState = "RoR2/Base/Nullifier/EntityStates.NullifierMonster.SpawnState.asset"; public static string EntityStatesNullifierMonsterAimPortalBomb = "RoR2/Base/Nullifier/EntityStates.NullifierMonster.AimPortalBomb.asset"; public static string EntityStatesNullifierMonsterFirePortalBomb = "RoR2/Base/Nullifier/EntityStates.NullifierMonster.FirePortalBomb.asset"; public static string EntityStatesParentMonsterDeathState = "RoR2/Base/Parent/EntityStates.ParentMonster.DeathState.asset"; public static string EntityStatesParentMonsterSpawnState = "RoR2/Base/Parent/EntityStates.ParentMonster.SpawnState.asset"; public static string EntityStatesParentMonsterGroundSlam = "RoR2/Base/Parent/EntityStates.ParentMonster.GroundSlam.asset"; public static string EntityStatesParentMonsterLoomingPresence = "RoR2/Base/Parent/EntityStates.ParentMonster.LoomingPresence.asset"; public static string EntityStatesRoboBallBossDeathState = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallBoss.DeathState.asset"; public static string EntityStatesRoboBallBossSpawnState = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallBoss.SpawnState.asset"; public static string EntityStatesRoboBallMiniDeathState = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallMini.DeathState.asset"; public static string EntityStatesRoboBallMiniWeaponFireEyeBeam = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallMini.Weapon.FireEyeBeam.asset"; public static string EntityStatesRoboBallBossWeaponChargeEyeblast = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallBoss.Weapon.ChargeEyeblast.asset"; public static string EntityStatesRoboBallBossWeaponDeployMinions = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallBoss.Weapon.DeployMinions.asset"; public static string EntityStatesRoboBallBossWeaponFireDelayKnockup = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallBoss.Weapon.FireDelayKnockup.asset"; public static string EntityStatesRoboBallBossWeaponFireEyeBlast = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallBoss.Weapon.FireEyeBlast.asset"; public static string EntityStatesRoboBallBossWeaponChargeSuperEyeblast = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallBoss.Weapon.ChargeSuperEyeblast.asset"; public static string EntityStatesRoboBallBossWeaponFireSuperDelayKnockup = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallBoss.Weapon.FireSuperDelayKnockup.asset"; public static string EntityStatesRoboBallBossWeaponFireSuperEyeblast = "RoR2/Base/RoboBallBoss/EntityStates.RoboBallBoss.Weapon.FireSuperEyeblast.asset"; public static string EntityStatesScavBackpackOpening = "RoR2/Base/Scav/EntityStates.ScavBackpack.Opening.asset"; public static string EntityStatesScavMonsterBaseSitState = "RoR2/Base/Scav/EntityStates.ScavMonster.BaseSitState.asset"; public static string EntityStatesScavMonsterDeath = "RoR2/Base/Scav/EntityStates.ScavMonster.Death.asset"; public static string EntityStatesScavMonsterSit = "RoR2/Base/Scav/EntityStates.ScavMonster.Sit.asset"; public static string EntityStatesScavMonsterEnergyCannonState = "RoR2/Base/Scav/EntityStates.ScavMonster.EnergyCannonState.asset"; public static string EntityStatesScavMonsterEnterSit = "RoR2/Base/Scav/EntityStates.ScavMonster.EnterSit.asset"; public static string EntityStatesScavMonsterExitSit = "RoR2/Base/Scav/EntityStates.ScavMonster.ExitSit.asset"; public static string EntityStatesScavMonsterFindItem = "RoR2/Base/Scav/EntityStates.ScavMonster.FindItem.asset"; public static string EntityStatesScavMonsterFireEnergyCannon = "RoR2/Base/Scav/EntityStates.ScavMonster.FireEnergyCannon.asset"; public static string EntityStatesScavMonsterGrantItem = "RoR2/Base/Scav/EntityStates.ScavMonster.GrantItem.asset"; public static string EntityStatesScavMonsterPrepEnergyCannon = "RoR2/Base/Scav/EntityStates.ScavMonster.PrepEnergyCannon.asset"; public static string EntityStatesScavMonsterPrepSack = "RoR2/Base/Scav/EntityStates.ScavMonster.PrepSack.asset"; public static string EntityStatesScavMonsterSackBaseState = "RoR2/Base/Scav/EntityStates.ScavMonster.SackBaseState.asset"; public static string EntityStatesScavMonsterThrowSack = "RoR2/Base/Scav/EntityStates.ScavMonster.ThrowSack.asset"; public static string EntityStatesScavMonsterDeathLunar = "RoR2/Base/ScavLunar/EntityStates.ScavMonster.DeathLunar.asset"; public static string EntityStatesNewtMonsterIdle = "RoR2/Base/Shopkeeper/EntityStates.NewtMonster.Idle.asset"; public static string EntityStatesNewtMonsterSpawnState = "RoR2/Base/Shopkeeper/EntityStates.NewtMonster.SpawnState.asset"; public static string EntityStatesNewtMonsterKickFromShop = "RoR2/Base/Shopkeeper/EntityStates.NewtMonster.KickFromShop.asset"; public static string EntityStatesImpMonsterWeaponCloakPermanent = "RoR2/Base/Shopkeeper/Spectator/EntityStates.ImpMonster.Weapon.CloakPermanent.asset"; public static string EntityStatesSpectatorSkillsLockOn = "RoR2/Base/Shopkeeper/Spectator/EntityStates.SpectatorSkills.LockOn.asset"; public static string EntityStatesTitanMonsterDeathState = "RoR2/Base/Titan/EntityStates.TitanMonster.DeathState.asset"; public static string EntityStatesTitanMonsterSpawnState = "RoR2/Base/Titan/EntityStates.TitanMonster.SpawnState.asset"; public static string EntityStatesTitanMonsterChargeMegaLaser = "RoR2/Base/Titan/EntityStates.TitanMonster.ChargeMegaLaser.asset"; public static string EntityStatesTitanMonsterFireFist = "RoR2/Base/Titan/EntityStates.TitanMonster.FireFist.asset"; public static string EntityStatesTitanMonsterFireMegaLaser = "RoR2/Base/Titan/EntityStates.TitanMonster.FireMegaLaser.asset"; public static string EntityStatesTitanMonsterRechargeRocks = "RoR2/Base/Titan/EntityStates.TitanMonster.RechargeRocks.asset"; public static string EntityStatesTitanMonsterDeathStateGold = "RoR2/Base/Titan/EntityStates.TitanMonster.DeathStateGold.asset"; public static string EntityStatesTitanMonsterChargeGoldMegaLaser = "RoR2/Base/Titan/EntityStates.TitanMonster.ChargeGoldMegaLaser.asset"; public static string EntityStatesTitanMonsterFireGoldFist = "RoR2/Base/Titan/EntityStates.TitanMonster.FireGoldFist.asset"; public static string EntityStatesTitanMonsterFireGoldMegaLaser = "RoR2/Base/Titan/EntityStates.TitanMonster.FireGoldMegaLaser.asset"; public static string EntityStatesRoboCratePodDescent = "RoR2/Base/Toolbot/EntityStates.RoboCratePod.Descent.asset"; public static string EntityStatesToolbotToolbotStanceA = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotStanceA.asset"; public static string EntityStatesToolbotToolbotStanceB = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotStanceB.asset"; public static string EntityStatesToolbotToolbotStanceBase = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotStanceBase.asset"; public static string EntityStatesToolbotAimGrenade = "RoR2/Base/Toolbot/EntityStates.Toolbot.AimGrenade.asset"; public static string EntityStatesToolbotAimStunDrone = "RoR2/Base/Toolbot/EntityStates.Toolbot.AimStunDrone.asset"; public static string EntityStatesToolbotBaseNailgunState = "RoR2/Base/Toolbot/EntityStates.Toolbot.BaseNailgunState.asset"; public static string EntityStatesToolbotCooldownSpear = "RoR2/Base/Toolbot/EntityStates.Toolbot.CooldownSpear.asset"; public static string EntityStatesToolbotFireBuzzsaw = "RoR2/Base/Toolbot/EntityStates.Toolbot.FireBuzzsaw.asset"; public static string EntityStatesToolbotFireGrenadeLauncher = "RoR2/Base/Toolbot/EntityStates.Toolbot.FireGrenadeLauncher.asset"; public static string EntityStatesToolbotFireNailgun = "RoR2/Base/Toolbot/EntityStates.Toolbot.FireNailgun.asset"; public static string EntityStatesToolbotFireSpear = "RoR2/Base/Toolbot/EntityStates.Toolbot.FireSpear.asset"; public static string EntityStatesToolbotNailgunFinalBurst = "RoR2/Base/Toolbot/EntityStates.Toolbot.NailgunFinalBurst.asset"; public static string EntityStatesToolbotNailgunSpinDown = "RoR2/Base/Toolbot/EntityStates.Toolbot.NailgunSpinDown.asset"; public static string EntityStatesToolbotRecoverAimStunDrone = "RoR2/Base/Toolbot/EntityStates.Toolbot.RecoverAimStunDrone.asset"; public static string EntityStatesToolbotStartToolbotStanceSwap = "RoR2/Base/Toolbot/EntityStates.Toolbot.StartToolbotStanceSwap.asset"; public static string EntityStatesToolbotToolbotDash = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotDash.asset"; public static string EntityStatesToolbotToolbotDashImpact = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotDashImpact.asset"; public static string EntityStatesToolbotToolbotDualWield = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotDualWield.asset"; public static string EntityStatesToolbotToolbotDualWieldBase = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotDualWieldBase.asset"; public static string EntityStatesToolbotToolbotDualWieldEnd = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotDualWieldEnd.asset"; public static string EntityStatesToolbotToolbotDualWieldStart = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotDualWieldStart.asset"; public static string EntityStatesToolbotToolbotStanceSwap = "RoR2/Base/Toolbot/EntityStates.Toolbot.ToolbotStanceSwap.asset"; public static string EntityStatesTreebotFlowerProjectileHover = "RoR2/Base/Treebot/EntityStates.Treebot.FlowerProjectileHover.asset"; public static string EntityStatesTreebotTreebotFlowerSpawnState = "RoR2/Base/Treebot/EntityStates.Treebot.TreebotFlower.SpawnState.asset"; public static string EntityStatesTreebotTreebotFlowerTreebotFlower2Projectile = "RoR2/Base/Treebot/EntityStates.Treebot.TreebotFlower.TreebotFlower2Projectile.asset"; public static string EntityStatesFireFlower2 = "RoR2/Base/Treebot/EntityStates.FireFlower2.asset"; public static string EntityStatesPrepFlower2 = "RoR2/Base/Treebot/EntityStates.PrepFlower2.asset"; public static string EntityStatesTreebotTreebotFireFruitSeed = "RoR2/Base/Treebot/EntityStates.Treebot.TreebotFireFruitSeed.asset"; public static string EntityStatesTreebotTreebotPrepFruitSeed = "RoR2/Base/Treebot/EntityStates.Treebot.TreebotPrepFruitSeed.asset"; public static string EntityStatesTreebotWeaponAimMortar2 = "RoR2/Base/Treebot/EntityStates.Treebot.Weapon.AimMortar2.asset"; public static string EntityStatesTreebotWeaponAimMortarRain = "RoR2/Base/Treebot/EntityStates.Treebot.Weapon.AimMortarRain.asset"; public static string EntityStatesTreebotWeaponChargePlantSonicBoom = "RoR2/Base/Treebot/EntityStates.Treebot.Weapon.ChargePlantSonicBoom.asset"; public static string EntityStatesTreebotWeaponChargeSonicBoom = "RoR2/Base/Treebot/EntityStates.Treebot.Weapon.ChargeSonicBoom.asset"; public static string EntityStatesTreebotWeaponFirePlantSonicBoom = "RoR2/Base/Treebot/EntityStates.Treebot.Weapon.FirePlantSonicBoom.asset"; public static string EntityStatesTreebotWeaponFireSonicBoom = "RoR2/Base/Treebot/EntityStates.Treebot.Weapon.FireSonicBoom.asset"; public static string EntityStatesTreebotWeaponFireSyringe = "RoR2/Base/Treebot/EntityStates.Treebot.Weapon.FireSyringe.asset"; public static string EntityStatesTreebotUnlockInteractableUnlock = "RoR2/Base/Treebot/EntityStates.Treebot.UnlockInteractable.Unlock.asset"; public static string EntityStatesVagrantMonsterDeathState = "RoR2/Base/Vagrant/EntityStates.VagrantMonster.DeathState.asset"; public static string EntityStatesVagrantMonsterSpawnState = "RoR2/Base/Vagrant/EntityStates.VagrantMonster.SpawnState.asset"; public static string EntityStatesVagrantMonsterChargeMegaNova = "RoR2/Base/Vagrant/EntityStates.VagrantMonster.ChargeMegaNova.asset"; public static string EntityStatesVagrantMonsterChargeTrackingBomb = "RoR2/Base/Vagrant/EntityStates.VagrantMonster.ChargeTrackingBomb.asset"; public static string EntityStatesVagrantMonsterFireMegaNova = "RoR2/Base/Vagrant/EntityStates.VagrantMonster.FireMegaNova.asset"; public static string EntityStatesVagrantMonsterFireTrackingBomb = "RoR2/Base/Vagrant/EntityStates.VagrantMonster.FireTrackingBomb.asset"; public static string EntityStatesVagrantMonsterWeaponJellyBarrage = "RoR2/Base/Vagrant/EntityStates.VagrantMonster.Weapon.JellyBarrage.asset"; public static string EntityStatesVultureFallingDeath = "RoR2/Base/Vulture/EntityStates.Vulture.FallingDeath.asset"; public static string EntityStatesVultureLand = "RoR2/Base/Vulture/EntityStates.Vulture.Land.asset"; public static string EntityStatesVultureSpawnState = "RoR2/Base/Vulture/EntityStates.Vulture.SpawnState.asset"; public static string EntityStatesVultureVultureModeState = "RoR2/Base/Vulture/EntityStates.Vulture.VultureModeState.asset"; public static string EntityStatesVultureFly = "RoR2/Base/Vulture/EntityStates.Vulture.Fly.asset"; public static string EntityStatesVultureFlyToLand = "RoR2/Base/Vulture/EntityStates.Vulture.FlyToLand.asset"; public static string EntityStatesVultureWeaponChargeWindblade = "RoR2/Base/Vulture/EntityStates.Vulture.Weapon.ChargeWindblade.asset"; public static string EntityStatesVultureWeaponFireWindblade = "RoR2/Base/Vulture/EntityStates.Vulture.Weapon.FireWindblade.asset"; public static string EntityStatesWisp1MonsterDeathState = "RoR2/Base/Wisp/EntityStates.Wisp1Monster.DeathState.asset"; public static string EntityStatesWisp1MonsterSpawnState = "RoR2/Base/Wisp/EntityStates.Wisp1Monster.SpawnState.asset"; public static string EntityStatesWisp1MonsterChargeEmbers = "RoR2/Base/Wisp/EntityStates.Wisp1Monster.ChargeEmbers.asset"; public static string EntityStatesWisp1MonsterFireEmbers = "RoR2/Base/Wisp/EntityStates.Wisp1Monster.FireEmbers.asset"; public static string EntityStatesAIBaseAIState = "RoR2/Base/Common/EntityStates.AI.BaseAIState.asset"; public static string EntityStatesAIWalkerCombat = "RoR2/Base/Common/EntityStates.AI.Walker.Combat.asset"; public static string EntityStatesAIWalkerGuard = "RoR2/Base/Common/EntityStates.AI.Walker.Guard.asset"; public static string EntityStatesAIWalkerLookBusy = "RoR2/Base/Common/EntityStates.AI.Walker.LookBusy.asset"; public static string EntityStatesAIWalkerWander = "RoR2/Base/Common/EntityStates.AI.Walker.Wander.asset"; public static string EntityStatesAimThrowableBase = "RoR2/Base/Common/EntityStates.AimThrowableBase.asset"; public static string EntityStatesBarrelClosed = "RoR2/Base/Common/EntityStates.Barrel.Closed.asset"; public static string EntityStatesBarrelClosing = "RoR2/Base/Common/EntityStates.Barrel.Closing.asset"; public static string EntityStatesBarrelOpened = "RoR2/Base/Common/EntityStates.Barrel.Opened.asset"; public static string EntityStatesBarrelOpening = "RoR2/Base/Common/EntityStates.Barrel.Opening.asset"; public static string EntityStatesBaseBodyAttachmentState = "RoR2/Base/Common/EntityStates.BaseBodyAttachmentState.asset"; public static string EntityStatesBaseCharacterMain = "RoR2/Base/Common/EntityStates.BaseCharacterMain.asset"; public static string EntityStatesBaseMelee = "RoR2/Base/Common/EntityStates.BaseMelee.asset"; public static string EntityStatesBaseSkillState = "RoR2/Base/Common/EntityStates.BaseSkillState.asset"; public static string EntityStatesBaseState = "RoR2/Base/Common/EntityStates.BaseState.asset"; public static string EntityStatesBasicMeleeAttack = "RoR2/Base/Common/EntityStates.BasicMeleeAttack.asset"; public static string EntityStatesBasicWindDown = "RoR2/Base/Common/EntityStates.BasicWindDown.asset"; public static string EntityStatesCommandoDeathState = "RoR2/Base/Common/EntityStates.Commando.DeathState.asset"; public static string EntityStatesEntityState = "RoR2/Base/Common/EntityStates.EntityState.asset"; public static string EntityStatesFlyState = "RoR2/Base/Common/EntityStates.FlyState.asset"; public static string EntityStatesFrozenState = "RoR2/Base/Common/EntityStates.FrozenState.asset"; public static string EntityStatesGenericBulletBaseState = "RoR2/Base/Common/EntityStates.GenericBulletBaseState.asset"; public static string EntityStatesGenericCharacterDeath = "RoR2/Base/Common/EntityStates.GenericCharacterDeath.asset"; public static string EntityStatesGenericCharacterMain = "RoR2/Base/Common/EntityStates.GenericCharacterMain.asset"; public static string EntityStatesGenericCharacterSpawnState = "RoR2/Base/Common/EntityStates.GenericCharacterSpawnState.asset"; public static string EntityStatesGenericCharacterVehicleSeated = "RoR2/Base/Common/EntityStates.GenericCharacterVehicleSeated.asset"; public static string EntityStatesGenericProjectileBaseState = "RoR2/Base/Common/EntityStates.GenericProjectileBaseState.asset"; public static string EntityStatesGenericReload = "RoR2/Base/Common/EntityStates.GenericReload.asset"; public static string EntityStatesGenericSkillInputs = "RoR2/Base/Common/EntityStates.GenericSkillInputs.asset"; public static string EntityStatesHurtState = "RoR2/Base/Common/EntityStates.HurtState.asset"; public static string EntityStatesHurtStateFlyer = "RoR2/Base/Common/EntityStates.HurtStateFlyer.asset"; public static string EntityStatesPlayerFlyState = "RoR2/Base/Common/EntityStates.PlayerFlyState.asset"; public static string EntityStatesShockState = "RoR2/Base/Common/EntityStates.ShockState.asset"; public static string EntityStatesSpawnTeleporterState = "RoR2/Base/Common/EntityStates.SpawnTeleporterState.asset"; public static string EntityStatesTestState1 = "RoR2/Base/Common/EntityStates.TestState1.asset"; public static string EntityStatesTestState2 = "RoR2/Base/Common/EntityStates.TestState2.asset"; public static string EntityStatesUninitialized = "RoR2/Base/Common/EntityStates.Uninitialized.asset"; public static string EntityStatesVehiclesZiprailCharacterVehicleSeated = "RoR2/Base/Common/EntityStates.Vehicles.ZiprailCharacterVehicleSeated.asset"; public static string EntityStatesGameOverBaseGameOverControllerState = "RoR2/Base/Core/GameOverController/EntityStates.GameOver.BaseGameOverControllerState.asset"; public static string EntityStatesGameOverFinishEndingContent = "RoR2/Base/Core/GameOverController/EntityStates.GameOver.FinishEndingContent.asset"; public static string EntityStatesGameOverLingerShort = "RoR2/Base/Core/GameOverController/EntityStates.GameOver.LingerShort.asset"; public static string EntityStatesGameOverShowCredits = "RoR2/Base/Core/GameOverController/EntityStates.GameOver.ShowCredits.asset"; public static string EntityStatesGameOverShowReport = "RoR2/Base/Core/GameOverController/EntityStates.GameOver.ShowReport.asset"; public static string RoR2BossGroupEnableHudHealthBarState = "RoR2/Base/Core/RoR2.BossGroup+EnableHudHealthBarState.asset"; public static string RoR2NetworkingSteamLobbyFinderLobbyStateBase = "RoR2/Base/Core/SteamLobbyFinder/RoR2.Networking.SteamLobbyFinder+LobbyStateBase.asset"; public static string RoR2NetworkingSteamLobbyFinderLobbyStateBeginGame = "RoR2/Base/Core/SteamLobbyFinder/RoR2.Networking.SteamLobbyFinder+LobbyStateBeginGame.asset"; public static string RoR2NetworkingSteamLobbyFinderLobbyStateMultiSearch = "RoR2/Base/Core/SteamLobbyFinder/RoR2.Networking.SteamLobbyFinder+LobbyStateMultiSearch.asset"; public static string RoR2NetworkingSteamLobbyFinderLobbyStateNonLeader = "RoR2/Base/Core/SteamLobbyFinder/RoR2.Networking.SteamLobbyFinder+LobbyStateNonLeader.asset"; public static string RoR2NetworkingSteamLobbyFinderLobbyStateSingleSearch = "RoR2/Base/Core/SteamLobbyFinder/RoR2.Networking.SteamLobbyFinder+LobbyStateSingleSearch.asset"; public static string RoR2NetworkingSteamLobbyFinderLobbyStateStart = "RoR2/Base/Core/SteamLobbyFinder/RoR2.Networking.SteamLobbyFinder+LobbyStateStart.asset"; public static string EntityStatesUrchinTurretDeathState = "RoR2/Base/ElitePoison/EntityStates.UrchinTurret.DeathState.asset"; public static string EntityStatesUrchinTurretSpawnState = "RoR2/Base/ElitePoison/EntityStates.UrchinTurret.SpawnState.asset"; public static string EntityStatesUrchinTurretWeaponMinigunFire = "RoR2/Base/ElitePoison/EntityStates.UrchinTurret.Weapon.MinigunFire.asset"; public static string EntityStatesUrchinTurretWeaponMinigunSpinDown = "RoR2/Base/ElitePoison/EntityStates.UrchinTurret.Weapon.MinigunSpinDown.asset"; public static string EntityStatesUrchinTurretWeaponMinigunSpinUp = "RoR2/Base/ElitePoison/EntityStates.UrchinTurret.Weapon.MinigunSpinUp.asset"; public static string EntityStatesUrchinTurretWeaponMinigunState = "RoR2/Base/ElitePoison/EntityStates.UrchinTurret.Weapon.MinigunState.asset"; public static string EntityStatesGoldGatBaseGoldGatState = "RoR2/Base/GoldGat/EntityStates.GoldGat.BaseGoldGatState.asset"; public static string EntityStatesGoldGatGoldGatFire = "RoR2/Base/GoldGat/EntityStates.GoldGat.GoldGatFire.asset"; public static string EntityStatesGoldGatGoldGatIdle = "RoR2/Base/GoldGat/EntityStates.GoldGat.GoldGatIdle.asset"; public static string EntityStatesQuestVolatileBatteryCountDown = "RoR2/Base/QuestVolatileBattery/EntityStates.QuestVolatileBattery.CountDown.asset"; public static string EntityStatesQuestVolatileBatteryMonitor = "RoR2/Base/QuestVolatileBattery/EntityStates.QuestVolatileBattery.Monitor.asset"; public static string EntityStatesQuestVolatileBatteryQuestVolatileBatteryBaseState = "RoR2/Base/QuestVolatileBattery/EntityStates.QuestVolatileBattery.QuestVolatileBatteryBaseState.asset"; public static string EntityStatesGameOverRoR2MainEndingPlayCutscene = "RoR2/Base/ClassicRun/EntityStates.GameOver.RoR2MainEndingPlayCutscene.asset"; public static string EntityStatesGameOverRoR2MainEndingSetSceneAndWaitForPlayers = "RoR2/Base/ClassicRun/EntityStates.GameOver.RoR2MainEndingSetSceneAndWaitForPlayers.asset"; public static string EntityStatesGameOverRoR2MainEndingStart = "RoR2/Base/ClassicRun/EntityStates.GameOver.RoR2MainEndingStart.asset"; public static string EntityStatesDestructibleTimeCrystalDeath = "RoR2/Base/WeeklyRun/EntityStates.Destructible.TimeCrystalDeath.asset"; public static string RoR2RouletteChestControllerCycling = "RoR2/Base/CasinoChest/RoR2.RouletteChestController+Cycling.asset"; public static string RoR2RouletteChestControllerIdle = "RoR2/Base/CasinoChest/RoR2.RouletteChestController+Idle.asset"; public static string RoR2RouletteChestControllerOpened = "RoR2/Base/CasinoChest/RoR2.RouletteChestController+Opened.asset"; public static string RoR2RouletteChestControllerOpening = "RoR2/Base/CasinoChest/RoR2.RouletteChestController+Opening.asset"; public static string RoR2RouletteChestControllerRouletteChestControllerBaseState = "RoR2/Base/CasinoChest/RoR2.RouletteChestController+RouletteChestControllerBaseState.asset"; public static string RoR2RouletteChestControllerStartup = "RoR2/Base/CasinoChest/RoR2.RouletteChestController+Startup.asset"; public static string EntityStatesDuplicatorDuplicating = "RoR2/Base/Duplicator/EntityStates.Duplicator.Duplicating.asset"; public static string EntityStatesBarrelOpeningLunar = "RoR2/Base/LunarChest/EntityStates.Barrel.OpeningLunar.asset"; public static string EntityStatesMissionsArenaNullWardActive = "RoR2/Base/NullSafeWard/EntityStates.Missions.Arena.NullWard.Active.asset"; public static string EntityStatesMissionsArenaNullWardComplete = "RoR2/Base/NullSafeWard/EntityStates.Missions.Arena.NullWard.Complete.asset"; public static string EntityStatesMissionsArenaNullWardNullWardBaseState = "RoR2/Base/NullSafeWard/EntityStates.Missions.Arena.NullWard.NullWardBaseState.asset"; public static string EntityStatesMissionsArenaNullWardOff = "RoR2/Base/NullSafeWard/EntityStates.Missions.Arena.NullWard.Off.asset"; public static string EntityStatesScrapperIdle = "RoR2/Base/Scrapper/EntityStates.Scrapper.Idle.asset"; public static string EntityStatesScrapperScrapperBaseState = "RoR2/Base/Scrapper/EntityStates.Scrapper.ScrapperBaseState.asset"; public static string EntityStatesScrapperScrapping = "RoR2/Base/Scrapper/EntityStates.Scrapper.Scrapping.asset"; public static string EntityStatesScrapperScrappingToIdle = "RoR2/Base/Scrapper/EntityStates.Scrapper.ScrappingToIdle.asset"; public static string EntityStatesScrapperWaitToBeginScrapping = "RoR2/Base/Scrapper/EntityStates.Scrapper.WaitToBeginScrapping.asset"; public static string EntityStatesLunarTeleporterActive = "RoR2/Base/Teleporters/EntityStates.LunarTeleporter.Active.asset"; public static string EntityStatesLunarTeleporterActiveToIdle = "RoR2/Base/Teleporters/EntityStates.LunarTeleporter.ActiveToIdle.asset"; public static string EntityStatesLunarTeleporterIdle = "RoR2/Base/Teleporters/EntityStates.LunarTeleporter.Idle.asset"; public static string EntityStatesLunarTeleporterIdleToActive = "RoR2/Base/Teleporters/EntityStates.LunarTeleporter.IdleToActive.asset"; public static string EntityStatesLunarTeleporterLunarTeleporterBaseState = "RoR2/Base/Teleporters/EntityStates.LunarTeleporter.LunarTeleporterBaseState.asset"; public static string RoR2TeleporterInteractionBaseTeleporterState = "RoR2/Base/Teleporters/RoR2.TeleporterInteraction+BaseTeleporterState.asset"; public static string RoR2TeleporterInteractionChargedState = "RoR2/Base/Teleporters/RoR2.TeleporterInteraction+ChargedState.asset"; public static string RoR2TeleporterInteractionChargingState = "RoR2/Base/Teleporters/RoR2.TeleporterInteraction+ChargingState.asset"; public static string RoR2TeleporterInteractionFinishedState = "RoR2/Base/Teleporters/RoR2.TeleporterInteraction+FinishedState.asset"; public static string RoR2TeleporterInteractionIdleState = "RoR2/Base/Teleporters/RoR2.TeleporterInteraction+IdleState.asset"; public static string RoR2TeleporterInteractionIdleToChargingState = "RoR2/Base/Teleporters/RoR2.TeleporterInteraction+IdleToChargingState.asset"; public static string EntityStatesTimedChestOpening = "RoR2/Base/TimedChest/EntityStates.TimedChest.Opening.asset"; public static string EntityStatesGenericCharacterPod = "RoR2/Base/SurvivorPod/EntityStates.GenericCharacterPod.asset"; public static string EntityStatesSurvivorPodDescent = "RoR2/Base/SurvivorPod/EntityStates.SurvivorPod.Descent.asset"; public static string EntityStatesSurvivorPodLanded = "RoR2/Base/SurvivorPod/EntityStates.SurvivorPod.Landed.asset"; public static string EntityStatesSurvivorPodPreRelease = "RoR2/Base/SurvivorPod/EntityStates.SurvivorPod.PreRelease.asset"; public static string EntityStatesSurvivorPodRelease = "RoR2/Base/SurvivorPod/EntityStates.SurvivorPod.Release.asset"; public static string EntityStatesSurvivorPodReleaseFinished = "RoR2/Base/SurvivorPod/EntityStates.SurvivorPod.ReleaseFinished.asset"; public static string EntityStatesSurvivorPodSurvivorPodBaseState = "RoR2/Base/SurvivorPod/EntityStates.SurvivorPod.SurvivorPodBaseState.asset"; public static string EntityStatesSurvivorPodBatteryPanelBaseBatteryPanelState = "RoR2/Base/SurvivorPod/EntityStates.SurvivorPod.BatteryPanel.BaseBatteryPanelState.asset"; public static string EntityStatesSurvivorPodBatteryPanelOpened = "RoR2/Base/SurvivorPod/EntityStates.SurvivorPod.BatteryPanel.Opened.asset"; public static string EntityStatesSurvivorPodBatteryPanelOpening = "RoR2/Base/SurvivorPod/EntityStates.SurvivorPod.BatteryPanel.Opening.asset"; public static string EntityStatesCaptainDefenseMatrixItemDefenseMatrixOn = "RoR2/Base/CaptainDefenseMatrix/EntityStates.CaptainDefenseMatrixItem.DefenseMatrixOn.asset"; public static string EntityStatesHeadstompersBaseHeadstompersState = "RoR2/Base/FallBoots/EntityStates.Headstompers.BaseHeadstompersState.asset"; public static string EntityStatesHeadstompersHeadstompersCharge = "RoR2/Base/FallBoots/EntityStates.Headstompers.HeadstompersCharge.asset"; public static string EntityStatesHeadstompersHeadstompersCooldown = "RoR2/Base/FallBoots/EntityStates.Headstompers.HeadstompersCooldown.asset"; public static string EntityStatesHeadstompersHeadstompersFall = "RoR2/Base/FallBoots/EntityStates.Headstompers.HeadstompersFall.asset"; public static string EntityStatesHeadstompersHeadstompersIdle = "RoR2/Base/FallBoots/EntityStates.Headstompers.HeadstompersIdle.asset"; public static string EntityStatesLaserTurbineAimState = "RoR2/Base/LaserTurbine/EntityStates.LaserTurbine.AimState.asset"; public static string EntityStatesLaserTurbineChargeMainBeamState = "RoR2/Base/LaserTurbine/EntityStates.LaserTurbine.ChargeMainBeamState.asset"; public static string EntityStatesLaserTurbineFireMainBeamState = "RoR2/Base/LaserTurbine/EntityStates.LaserTurbine.FireMainBeamState.asset"; public static string EntityStatesLaserTurbineLaserTurbineBaseState = "RoR2/Base/LaserTurbine/EntityStates.LaserTurbine.LaserTurbineBaseState.asset"; public static string EntityStatesLaserTurbineReadyState = "RoR2/Base/LaserTurbine/EntityStates.LaserTurbine.ReadyState.asset"; public static string EntityStatesLaserTurbineRechargeState = "RoR2/Base/LaserTurbine/EntityStates.LaserTurbine.RechargeState.asset"; public static string EntityStatesGlobalSkillsLunarNeedleFireLunarNeedle = "RoR2/Base/LunarSkillReplacements/EntityStates.GlobalSkills.LunarNeedle.FireLunarNeedle.asset"; public static string EntityStatesGlobalSkillsLunarNeedleChargeLunarSecondary = "RoR2/Base/LunarSkillReplacements/EntityStates.GlobalSkills.LunarNeedle.ChargeLunarSecondary.asset"; public static string EntityStatesGlobalSkillsLunarNeedleThrowLunarSecondary = "RoR2/Base/LunarSkillReplacements/EntityStates.GlobalSkills.LunarNeedle.ThrowLunarSecondary.asset"; public static string EntityStatesGlobalSkillsLunarDetonatorDetonate = "RoR2/Base/LunarSkillReplacements/EntityStates.GlobalSkills.LunarDetonator.Detonate.asset"; public static string EntityStatesGhostUtilitySkillState = "RoR2/Base/LunarSkillReplacements/EntityStates.GhostUtilitySkillState.asset"; public static string EntityStatesVagrantNovaItemBaseVagrantNovaItemState = "RoR2/Base/NovaOnLowHealth/EntityStates.VagrantNovaItem.BaseVagrantNovaItemState.asset"; public static string EntityStatesVagrantNovaItemChargeState = "RoR2/Base/NovaOnLowHealth/EntityStates.VagrantNovaItem.ChargeState.asset"; public static string EntityStatesVagrantNovaItemDetonateState = "RoR2/Base/NovaOnLowHealth/EntityStates.VagrantNovaItem.DetonateState.asset"; public static string EntityStatesVagrantNovaItemReadyState = "RoR2/Base/NovaOnLowHealth/EntityStates.VagrantNovaItem.ReadyState.asset"; public static string EntityStatesVagrantNovaItemRechargeState = "RoR2/Base/NovaOnLowHealth/EntityStates.VagrantNovaItem.RechargeState.asset"; public static string RoR2DeskPlantControllerDeathState = "RoR2/Base/Plant/RoR2.DeskPlantController+DeathState.asset"; public static string RoR2DeskPlantControllerDeskPlantBaseState = "RoR2/Base/Plant/RoR2.DeskPlantController+DeskPlantBaseState.asset"; public static string RoR2DeskPlantControllerMainState = "RoR2/Base/Plant/RoR2.DeskPlantController+MainState.asset"; public static string RoR2DeskPlantControllerSeedState = "RoR2/Base/Plant/RoR2.DeskPlantController+SeedState.asset"; public static string RoR2DeskPlantControllerSproutState = "RoR2/Base/Plant/RoR2.DeskPlantController+SproutState.asset"; public static string EntityStatesSquidDeathStateDeathState = "RoR2/Base/Squid/EntityStates.Squid.DeathState.DeathState.asset"; public static string EntityStatesSquidSquidWeaponFireSpine = "RoR2/Base/Squid/EntityStates.Squid.SquidWeapon.FireSpine.asset"; public static string EntityStatesTeleporterHealNovaControllerTeleporterHealNovaGeneratorMain = "RoR2/Base/TPHealingNova/EntityStates.TeleporterHealNovaController.TeleporterHealNovaGeneratorMain.asset"; public static string EntityStatesTeleporterHealNovaControllerTeleporterHealNovaPulse = "RoR2/Base/TPHealingNova/EntityStates.TeleporterHealNovaController.TeleporterHealNovaPulse.asset"; public static string EntityStatesTeleporterHealNovaControllerTeleporterHealNovaWindup = "RoR2/Base/TPHealingNova/EntityStates.TeleporterHealNovaController.TeleporterHealNovaWindup.asset"; public static string EntityStatesMissionsArenaNullWardWardOnAndReady = "RoR2/Base/arena/EntityStates.Missions.Arena.NullWard.WardOnAndReady.asset"; public static string RoR2ArenaMissionControllerArenaMissionBaseState = "RoR2/Base/arena/RoR2.ArenaMissionController+ArenaMissionBaseState.asset"; public static string RoR2ArenaMissionControllerMissionCompleted = "RoR2/Base/arena/RoR2.ArenaMissionController+MissionCompleted.asset"; public static string RoR2ArtifactTrialMissionControllerArtifactTrialMissionControllerBaseState = "RoR2/Base/artifactworld/RoR2.ArtifactTrialMissionController+ArtifactTrialMissionControllerBaseState.asset"; public static string RoR2ArtifactTrialMissionControllerCombatState = "RoR2/Base/artifactworld/RoR2.ArtifactTrialMissionController+CombatState.asset"; public static string RoR2ArtifactTrialMissionControllerIntroState = "RoR2/Base/artifactworld/RoR2.ArtifactTrialMissionController+IntroState.asset"; public static string RoR2ArtifactTrialMissionControllerPreCombatState = "RoR2/Base/artifactworld/RoR2.ArtifactTrialMissionController+PreCombatState.asset"; public static string RoR2ArtifactTrialMissionControllerSetupState = "RoR2/Base/artifactworld/RoR2.ArtifactTrialMissionController+SetupState.asset"; public static string RoR2ArtifactTrialMissionControllerSpawnExitPortalAndIdle = "RoR2/Base/artifactworld/RoR2.ArtifactTrialMissionController+SpawnExitPortalAndIdle.asset"; public static string RoR2ArtifactTrialMissionControllerWaitForPlayersState = "RoR2/Base/artifactworld/RoR2.ArtifactTrialMissionController+WaitForPlayersState.asset"; public static string RoR2ArtifactTrialMissionControllerWaitForRewardTaken = "RoR2/Base/artifactworld/RoR2.ArtifactTrialMissionController+WaitForRewardTaken.asset"; public static string EntityStatesBarrelActivateFan = "RoR2/Base/frozenwall/EntityStates.Barrel.ActivateFan.asset"; public static string EntityStatesInteractablesGoldBeaconGoldBeaconBaseState = "RoR2/Base/goldshores/EntityStates.Interactables.GoldBeacon.GoldBeaconBaseState.asset"; public static string EntityStatesInteractablesGoldBeaconNotReady = "RoR2/Base/goldshores/EntityStates.Interactables.GoldBeacon.NotReady.asset"; public static string EntityStatesInteractablesGoldBeaconReady = "RoR2/Base/goldshores/EntityStates.Interactables.GoldBeacon.Ready.asset"; public static string EntityStatesMissionsGoldshoresActivateBeacons = "RoR2/Base/goldshores/EntityStates.Missions.Goldshores.ActivateBeacons.asset"; public static string EntityStatesMissionsGoldshoresExit = "RoR2/Base/goldshores/EntityStates.Missions.Goldshores.Exit.asset"; public static string EntityStatesMissionsGoldshoresGoldshoresBossfight = "RoR2/Base/goldshores/EntityStates.Missions.Goldshores.GoldshoresBossfight.asset"; public static string EntityStatesInteractablesStoneGateOpening = "RoR2/Base/goolake/EntityStates.Interactables.StoneGate.Opening.asset"; public static string EntityStatesMissionsLunarScavengerEncounterFadeOut = "RoR2/Base/limbo/EntityStates.Missions.LunarScavengerEncounter.FadeOut.asset"; public static string EntityStatesMissionsLunarScavengerEncounterWaitForAllMonstersDead = "RoR2/Base/limbo/EntityStates.Missions.LunarScavengerEncounter.WaitForAllMonstersDead.asset"; public static string EntityStatesMissionsBrotherEncounterBossDeath = "RoR2/Base/moon/EntityStates.Missions.BrotherEncounter.BossDeath.asset"; public static string EntityStatesMissionsBrotherEncounterBrotherEncounterBaseState = "RoR2/Base/moon/EntityStates.Missions.BrotherEncounter.BrotherEncounterBaseState.asset"; public static string EntityStatesMissionsBrotherEncounterBrotherEncounterPhaseBaseState = "RoR2/Base/moon/EntityStates.Missions.BrotherEncounter.BrotherEncounterPhaseBaseState.asset"; public static string EntityStatesMissionsBrotherEncounterEncounterFinished = "RoR2/Base/moon/EntityStates.Missions.BrotherEncounter.EncounterFinished.asset"; public static string EntityStatesMissionsBrotherEncounterPhase1 = "RoR2/Base/moon/EntityStates.Missions.BrotherEncounter.Phase1.asset"; public static string EntityStatesMissionsBrotherEncounterPhase2 = "RoR2/Base/moon/EntityStates.Missions.BrotherEncounter.Phase2.asset"; public static string EntityStatesMissionsBrotherEncounterPhase3 = "RoR2/Base/moon/EntityStates.Missions.BrotherEncounter.Phase3.asset"; public static string EntityStatesMissionsBrotherEncounterPhase4 = "RoR2/Base/moon/EntityStates.Missions.BrotherEncounter.Phase4.asset"; public static string EntityStatesMissionsBrotherEncounterPreEncounter = "RoR2/Base/moon/EntityStates.Missions.BrotherEncounter.PreEncounter.asset"; public static string RoR2EscapeSequenceControllerEscapeSequenceBaseState = "RoR2/Base/moon/RoR2.EscapeSequenceController+EscapeSequenceBaseState.asset"; public static string RoR2EscapeSequenceControllerEscapeSequenceFailureState = "RoR2/Base/moon/RoR2.EscapeSequenceController+EscapeSequenceFailureState.asset"; public static string RoR2EscapeSequenceControllerEscapeSequenceMainState = "RoR2/Base/moon/RoR2.EscapeSequenceController+EscapeSequenceMainState.asset"; public static string RoR2EscapeSequenceControllerEscapeSequenceSuccessState = "RoR2/Base/moon/RoR2.EscapeSequenceController+EscapeSequenceSuccessState.asset"; public static string EntityStatesMissionsMoonMoonBatteryActive = "RoR2/Base/moon2/EntityStates.Missions.Moon.MoonBatteryActive.asset"; public static string EntityStatesMissionsMoonMoonBatteryBloodActive = "RoR2/Base/moon2/EntityStates.Missions.Moon.MoonBatteryBloodActive.asset"; public static string EntityStatesMissionsMoonMoonBatteryComplete = "RoR2/Base/moon2/EntityStates.Missions.Moon.MoonBatteryComplete.asset"; public static string EntityStatesMissionsMoonMoonBatteryDesignActive = "RoR2/Base/moon2/EntityStates.Missions.Moon.MoonBatteryDesignActive.asset"; public static string EntityStatesMissionsMoonMoonBatteryDisabled = "RoR2/Base/moon2/EntityStates.Missions.Moon.MoonBatteryDisabled.asset"; public static string EntityStatesMissionsMoonMoonBatteryInactive = "RoR2/Base/moon2/EntityStates.Missions.Moon.MoonBatteryInactive.asset"; public static string EntityStatesMoonElevatorInactiveToReady = "RoR2/Base/moon2/EntityStates.MoonElevator.InactiveToReady.asset"; public static string EntityStatesMoonElevatorReady = "RoR2/Base/moon2/EntityStates.MoonElevator.Ready.asset"; public static string EntityStatesMoonElevatorInactive = "RoR2/Base/moon2/EntityStates.MoonElevator.Inactive.asset"; public static string EntityStatesInteractablesMSObeliskEndingGame = "RoR2/Base/mysteryspace/EntityStates.Interactables.MSObelisk.EndingGame.asset"; public static string EntityStatesInteractablesMSObeliskReadyToEndGame = "RoR2/Base/mysteryspace/EntityStates.Interactables.MSObelisk.ReadyToEndGame.asset"; public static string EntityStatesInteractablesMSObeliskTransitionToNextStage = "RoR2/Base/mysteryspace/EntityStates.Interactables.MSObelisk.TransitionToNextStage.asset"; public static string EntityStatesMissionsSuperRoboBallEncounterListening = "RoR2/Base/shipgraveyard/EntityStates.Missions.SuperRoboBallEncounter.Listening.asset"; public static string EntityStatesFaunaVultureEggDeathState = "RoR2/Base/shipgraveyard/EntityStates.Fauna.VultureEggDeathState.asset"; public static string RoR2PortalDialerControllerPortalDialerBaseState = "RoR2/Base/skymeadow/RoR2.PortalDialerController+PortalDialerBaseState.asset"; public static string RoR2PortalDialerControllerPortalDialerDialDigitState = "RoR2/Base/skymeadow/RoR2.PortalDialerController+PortalDialerDialDigitState.asset"; public static string RoR2PortalDialerControllerPortalDialerDisabledState = "RoR2/Base/skymeadow/RoR2.PortalDialerController+PortalDialerDisabledState.asset"; public static string RoR2PortalDialerControllerPortalDialerIdleState = "RoR2/Base/skymeadow/RoR2.PortalDialerController+PortalDialerIdleState.asset"; public static string RoR2PortalDialerControllerPortalDialerPerformActionState = "RoR2/Base/skymeadow/RoR2.PortalDialerController+PortalDialerPerformActionState.asset"; public static string RoR2PortalDialerControllerPortalDialerPostDialState = "RoR2/Base/skymeadow/RoR2.PortalDialerController+PortalDialerPostDialState.asset"; public static string RoR2PortalDialerControllerPortalDialerPreDialState = "RoR2/Base/skymeadow/RoR2.PortalDialerController+PortalDialerPreDialState.asset"; public static string RoR2UICreditsPanelControllerBaseCreditsPanelState = "RoR2/Base/UI/CreditsPanel/RoR2.UI.CreditsPanelController+BaseCreditsPanelState.asset"; public static string RoR2UICreditsPanelControllerIntroState = "RoR2/Base/UI/CreditsPanel/RoR2.UI.CreditsPanelController+IntroState.asset"; public static string RoR2UICreditsPanelControllerMainScrollState = "RoR2/Base/UI/CreditsPanel/RoR2.UI.CreditsPanelController+MainScrollState.asset"; public static string RoR2UICreditsPanelControllerOutroState = "RoR2/Base/UI/CreditsPanel/RoR2.UI.CreditsPanelController+OutroState.asset"; public static string RoR2UILogBookLogBookControllerChangeCategoryState = "RoR2/Base/UI/RoR2.UI.LogBook.LogBookController+ChangeCategoryState.asset"; public static string RoR2UILogBookLogBookControllerChangeEntriesPageState = "RoR2/Base/UI/RoR2.UI.LogBook.LogBookController+ChangeEntriesPageState.asset"; public static string RoR2UILogBookLogBookControllerLogBookState = "RoR2/Base/UI/RoR2.UI.LogBook.LogBookController+LogBookState.asset"; public static string EntityStatesAcidLarvaDeath = "RoR2/DLC1/AcidLarva/EntityStates.AcidLarva.Death.asset"; public static string EntityStatesAcidLarvaSpawnState = "RoR2/DLC1/AcidLarva/EntityStates.AcidLarva.SpawnState.asset"; public static string EntityStatesAcidLarvaLarvaLeap = "RoR2/DLC1/AcidLarva/EntityStates.AcidLarva.LarvaLeap.asset"; public static string EntityStatesAssassin2ChargeDash = "RoR2/DLC1/Assassin2/EntityStates.Assassin2.ChargeDash.asset"; public static string EntityStatesAssassin2DashStrike = "RoR2/DLC1/Assassin2/EntityStates.Assassin2.DashStrike.asset"; public static string EntityStatesAssassin2Death = "RoR2/DLC1/Assassin2/EntityStates.Assassin2.Death.asset"; public static string EntityStatesAssassin2Hide = "RoR2/DLC1/Assassin2/EntityStates.Assassin2.Hide.asset"; public static string EntityStatesAssassin2SpawnState = "RoR2/DLC1/Assassin2/EntityStates.Assassin2.SpawnState.asset"; public static string EntityStatesAssassin2ThrowShuriken = "RoR2/DLC1/Assassin2/EntityStates.Assassin2.ThrowShuriken.asset"; public static string EntityStatesClayGrenadierSpawnState = "RoR2/DLC1/ClayGrenadier/EntityStates.ClayGrenadier.SpawnState.asset"; public static string EntityStatesClayGrenadierFaceSlam = "RoR2/DLC1/ClayGrenadier/EntityStates.ClayGrenadier.FaceSlam.asset"; public static string EntityStatesClayGrenadierThrowBarrel = "RoR2/DLC1/ClayGrenadier/EntityStates.ClayGrenadier.ThrowBarrel.asset"; public static string EntityStatesFlyingVerminFallingDeath = "RoR2/DLC1/FlyingVermin/EntityStates.FlyingVermin.FallingDeath.asset"; public static string EntityStatesFlyingVerminModeGrantFlight = "RoR2/DLC1/FlyingVermin/EntityStates.FlyingVermin.Mode.GrantFlight.asset"; public static string EntityStatesFlyingVerminSpawnState = "RoR2/DLC1/FlyingVermin/EntityStates.FlyingVermin.SpawnState.asset"; public static string EntityStatesFlyingVerminWeaponSpit = "RoR2/DLC1/FlyingVermin/EntityStates.FlyingVermin.Weapon.Spit.asset"; public static string EntityStatesGupBaseSplitDeath = "RoR2/DLC1/Gup/EntityStates.Gup.BaseSplitDeath.asset"; public static string EntityStatesGupGeepDeath = "RoR2/DLC1/Gup/EntityStates.Gup.GeepDeath.asset"; public static string EntityStatesGupGipDeath = "RoR2/DLC1/Gup/EntityStates.Gup.GipDeath.asset"; public static string EntityStatesGupGupDeath = "RoR2/DLC1/Gup/EntityStates.Gup.GupDeath.asset"; public static string EntityStatesGupSpawnState = "RoR2/DLC1/Gup/EntityStates.Gup.SpawnState.asset"; public static string EntityStatesGupGupSpikesState = "RoR2/DLC1/Gup/EntityStates.Gup.GupSpikesState.asset"; public static string EntityStatesMajorConstructDeath = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.Death.asset"; public static string EntityStatesMajorConstructSpawn = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.Spawn.asset"; public static string EntityStatesMajorConstructStanceLowered = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.Stance.Lowered.asset"; public static string EntityStatesMajorConstructStanceLoweredToRaised = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.Stance.LoweredToRaised.asset"; public static string EntityStatesMajorConstructStanceRaised = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.Stance.Raised.asset"; public static string EntityStatesMajorConstructStanceRaisedToLowered = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.Stance.RaisedToLowered.asset"; public static string EntityStatesMajorConstructSpawnMinorConstructs = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.SpawnMinorConstructs.asset"; public static string EntityStatesMajorConstructSwitchStance = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.SwitchStance.asset"; public static string EntityStatesMajorConstructWeaponChargeLaser = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.Weapon.ChargeLaser.asset"; public static string EntityStatesMajorConstructWeaponFireLaser = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.Weapon.FireLaser.asset"; public static string EntityStatesMajorConstructWeaponTerminateLaser = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MajorConstruct.Weapon.TerminateLaser.asset"; public static string EntityStatesMegaConstructExitShield = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MegaConstruct.ExitShield.asset"; public static string EntityStatesMegaConstructFallingDeath = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MegaConstruct.FallingDeath.asset"; public static string EntityStatesMegaConstructRaiseShield = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MegaConstruct.RaiseShield.asset"; public static string EntityStatesMegaConstructSpawn = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MegaConstruct.Spawn.asset"; public static string EntityStatesMinorConstructDeathState = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MinorConstruct.DeathState.asset"; public static string EntityStatesMinorConstructFindSurface = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MinorConstruct.FindSurface.asset"; public static string EntityStatesMinorConstructHidden = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MinorConstruct.Hidden.asset"; public static string EntityStatesMinorConstructNoCastSpawn = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MinorConstruct.NoCastSpawn.asset"; public static string EntityStatesMinorConstructRevealed = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MinorConstruct.Revealed.asset"; public static string EntityStatesMinorConstructWeaponChargeConstructBeam = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MinorConstruct.Weapon.ChargeConstructBeam.asset"; public static string EntityStatesMinorConstructWeaponFireConstructBeam = "RoR2/DLC1/MajorAndMinorConstruct/EntityStates.MinorConstruct.Weapon.FireConstructBeam.asset"; public static string EntityStatesRailgunnerBackpackChargedCryo = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.ChargedCryo.asset"; public static string EntityStatesRailgunnerBackpackChargedSuper = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.ChargedSuper.asset"; public static string EntityStatesRailgunnerBackpackChargingCryo = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.ChargingCryo.asset"; public static string EntityStatesRailgunnerBackpackChargingSuper = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.ChargingSuper.asset"; public static string EntityStatesRailgunnerBackpackDisconnected = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.Disconnected.asset"; public static string EntityStatesRailgunnerBackpackExpiredCryo = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.ExpiredCryo.asset"; public static string EntityStatesRailgunnerBackpackExpiredSuper = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.ExpiredSuper.asset"; public static string EntityStatesRailgunnerBackpackOffline = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.Offline.asset"; public static string EntityStatesRailgunnerBackpackOnlineCryo = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.OnlineCryo.asset"; public static string EntityStatesRailgunnerBackpackOnlineSuper = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.OnlineSuper.asset"; public static string EntityStatesRailgunnerBackpackReboot = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.Reboot.asset"; public static string EntityStatesRailgunnerBackpackUseCryo = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Backpack.UseCryo.asset"; public static string EntityStatesRailgunnerReloadBoostConfirm = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Reload.BoostConfirm.asset"; public static string EntityStatesRailgunnerReloadBoosted = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Reload.Boosted.asset"; public static string EntityStatesRailgunnerReloadReloading = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Reload.Reloading.asset"; public static string EntityStatesRailgunnerReloadWaiting = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Reload.Waiting.asset"; public static string EntityStatesRailgunnerScopeActiveScopeHeavy = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.ActiveScopeHeavy.asset"; public static string EntityStatesRailgunnerScopeActiveScopeLight = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.ActiveScopeLight.asset"; public static string EntityStatesRailgunnerScopeBaseActive = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.BaseActive.asset"; public static string EntityStatesRailgunnerScopeBaseScopeState = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.BaseScopeState.asset"; public static string EntityStatesRailgunnerScopeBaseWindDown = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.BaseWindDown.asset"; public static string EntityStatesRailgunnerScopeBaseWindUp = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.BaseWindUp.asset"; public static string EntityStatesRailgunnerScopeWindDownScopeHeavy = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.WindDownScopeHeavy.asset"; public static string EntityStatesRailgunnerScopeWindDownScopeLight = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.WindDownScopeLight.asset"; public static string EntityStatesRailgunnerScopeWindUpScopeHeavy = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.WindUpScopeHeavy.asset"; public static string EntityStatesRailgunnerScopeWindUpScopeLight = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Scope.WindUpScopeLight.asset"; public static string EntityStatesRailgunnerWeaponActiveReload = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.ActiveReload.asset"; public static string EntityStatesRailgunnerWeaponChargeSnipeCryo = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.ChargeSnipeCryo.asset"; public static string EntityStatesRailgunnerWeaponChargeSnipeSuper = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.ChargeSnipeSuper.asset"; public static string EntityStatesRailgunnerWeaponFireMineBlinding = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.FireMineBlinding.asset"; public static string EntityStatesRailgunnerWeaponFireMineConcussive = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.FireMineConcussive.asset"; public static string EntityStatesRailgunnerWeaponFirePistol = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.FirePistol.asset"; public static string EntityStatesRailgunnerWeaponFireSnipeCryo = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.FireSnipeCryo.asset"; public static string EntityStatesRailgunnerWeaponFireSnipeHeavy = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.FireSnipeHeavy.asset"; public static string EntityStatesRailgunnerWeaponFireSnipeLight = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.FireSnipeLight.asset"; public static string EntityStatesRailgunnerWeaponFireSnipeSuper = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.FireSnipeSuper.asset"; public static string EntityStatesRailgunnerWeaponWindupSnipeCryo = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.WindupSnipeCryo.asset"; public static string EntityStatesRailgunnerWeaponWindupSnipeSuper = "RoR2/DLC1/Railgunner/EntityStates.Railgunner.Weapon.WindupSnipeSuper.asset"; public static string EntityStatesSulfurPodDeath = "RoR2/DLC1/SulfurPod/EntityStates.SulfurPodDeath.asset"; public static string EntityStatesVerminSpawnState = "RoR2/DLC1/Vermin/EntityStates.Vermin.SpawnState.asset"; public static string EntityStatesVerminWeaponTongueLash = "RoR2/DLC1/Vermin/EntityStates.Vermin.Weapon.TongueLash.asset"; public static string EntityStatesVoidBarnacleDeathState = "RoR2/DLC1/VoidBarnacle/EntityStates.VoidBarnacle.DeathState.asset"; public static string EntityStatesVoidBarnacleFindSurface = "RoR2/DLC1/VoidBarnacle/EntityStates.VoidBarnacle.FindSurface.asset"; public static string EntityStatesVoidBarnacleNoCastSpawn = "RoR2/DLC1/VoidBarnacle/EntityStates.VoidBarnacle.NoCastSpawn.asset"; public static string EntityStatesVoidBarnacleWeaponChargeFire = "RoR2/DLC1/VoidBarnacle/EntityStates.VoidBarnacle.Weapon.ChargeFire.asset"; public static string EntityStatesVoidBarnacleWeaponFire = "RoR2/DLC1/VoidBarnacle/EntityStates.VoidBarnacle.Weapon.Fire.asset"; public static string EntityStatesVoidJailerDeathState = "RoR2/DLC1/VoidJailer/EntityStates.VoidJailer.DeathState.asset"; public static string EntityStatesVoidJailerSpawnState = "RoR2/DLC1/VoidJailer/EntityStates.VoidJailer.SpawnState.asset"; public static string EntityStatesVoidJailerChargeFire = "RoR2/DLC1/VoidJailer/EntityStates.VoidJailer.ChargeFire.asset"; public static string EntityStatesVoidJailerFire = "RoR2/DLC1/VoidJailer/EntityStates.VoidJailer.Fire.asset"; public static string EntityStatesVoidJailerCapture = "RoR2/DLC1/VoidJailer/EntityStates.VoidJailer.Capture.asset"; public static string EntityStatesVoidJailerCaptureFire = "RoR2/DLC1/VoidJailer/EntityStates.VoidJailer.CaptureFire.asset"; public static string EntityStatesVoidJailerWeaponCapture2 = "RoR2/DLC1/VoidJailer/EntityStates.VoidJailer.Weapon.Capture2.asset"; public static string EntityStatesVoidJailerWeaponChargeCapture = "RoR2/DLC1/VoidJailer/EntityStates.VoidJailer.Weapon.ChargeCapture.asset"; public static string EntityStatesVoidJailerWeaponExitCapture = "RoR2/DLC1/VoidJailer/EntityStates.VoidJailer.Weapon.ExitCapture.asset"; public static string EntityStatesVoidMegaCrabDeathState = "RoR2/DLC1/VoidMegaCrab/EntityStates.VoidMegaCrab.DeathState.asset"; public static string EntityStatesVoidMegaCrabSpawnState = "RoR2/DLC1/VoidMegaCrab/EntityStates.VoidMegaCrab.SpawnState.asset"; public static string EntityStatesVoidMegaCrabBackWeaponFireVoidMissiles = "RoR2/DLC1/VoidMegaCrab/EntityStates.VoidMegaCrab.BackWeapon.FireVoidMissiles.asset"; public static string EntityStatesVoidMegaCrabWeaponChargeCrabBlackCannon = "RoR2/DLC1/VoidMegaCrab/EntityStates.VoidMegaCrab.Weapon.ChargeCrabBlackCannon.asset"; public static string EntityStatesVoidMegaCrabWeaponChargeCrabWhiteCannon = "RoR2/DLC1/VoidMegaCrab/EntityStates.VoidMegaCrab.Weapon.ChargeCrabWhiteCannon.asset"; public static string EntityStatesVoidMegaCrabWeaponFireCrabBlackCannon = "RoR2/DLC1/VoidMegaCrab/EntityStates.VoidMegaCrab.Weapon.FireCrabBlackCannon.asset"; public static string EntityStatesVoidMegaCrabWeaponFireCrabWhiteCannon = "RoR2/DLC1/VoidMegaCrab/EntityStates.VoidMegaCrab.Weapon.FireCrabWhiteCannon.asset"; public static string EntityStatesVoidRaidCrabCollapse = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Collapse.asset"; public static string EntityStatesVoidRaidCrabDeathState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.DeathState.asset"; public static string EntityStatesVoidRaidCrabJointDeathState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Joint.DeathState.asset"; public static string EntityStatesVoidRaidCrabJointPreDeathState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Joint.PreDeathState.asset"; public static string EntityStatesVoidRaidCrabLegIdle = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Leg.Idle.asset"; public static string EntityStatesVoidRaidCrabLegJointBroken = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Leg.JointBroken.asset"; public static string EntityStatesVoidRaidCrabLegBreakStunState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.LegBreakStunState.asset"; public static string EntityStatesVoidRaidCrabReEmerge = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.ReEmerge.asset"; public static string EntityStatesVoidRaidCrabSpawnState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.SpawnState.asset"; public static string EntityStatesVoidRaidCrabTurnState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.TurnState.asset"; public static string EntityStatesVoidRaidCrabWaitForLegsAvailable = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.WaitForLegsAvailable.asset"; public static string EntityStatesVoidRaidCrabEscapeDeath = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.EscapeDeath.asset"; public static string EntityStatesVoidRaidCrabChannelGauntlet = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.ChannelGauntlet.asset"; public static string EntityStatesVoidRaidCrabChargeGauntlet = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.ChargeGauntlet.asset"; public static string EntityStatesVoidRaidCrabCloseGauntlet = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.CloseGauntlet.asset"; public static string EntityStatesVoidRaidCrabWeaponChargeMissiles = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Weapon.ChargeMissiles.asset"; public static string EntityStatesVoidRaidCrabWeaponFireMissiles = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Weapon.FireMissiles.asset"; public static string EntityStatesVoidRaidCrabChargeFinalStand = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.ChargeFinalStand.asset"; public static string EntityStatesVoidRaidCrabFireFinalStand = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.FireFinalStand.asset"; public static string EntityStatesVoidRaidCrabWeaponChargeGravityBump = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Weapon.ChargeGravityBump.asset"; public static string EntityStatesVoidRaidCrabWeaponFireGravityBump = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Weapon.FireGravityBump.asset"; public static string EntityStatesVoidRaidCrabWeaponBaseMultiBeamState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Weapon.BaseMultiBeamState.asset"; public static string EntityStatesVoidRaidCrabWeaponChargeMultiBeam = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Weapon.ChargeMultiBeam.asset"; public static string EntityStatesVoidRaidCrabWeaponFireMultiBeamFinale = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Weapon.FireMultiBeamFinale.asset"; public static string EntityStatesVoidRaidCrabWeaponFireMultiBeamSmall = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Weapon.FireMultiBeamSmall.asset"; public static string EntityStatesVoidRaidCrabBaseSpinBeamAttackState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.BaseSpinBeamAttackState.asset"; public static string EntityStatesVoidRaidCrabSpinBeamAttack = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.SpinBeamAttack.asset"; public static string EntityStatesVoidRaidCrabSpinBeamEnter = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.SpinBeamEnter.asset"; public static string EntityStatesVoidRaidCrabSpinBeamExit = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.SpinBeamExit.asset"; public static string EntityStatesVoidRaidCrabSpinBeamWindDown = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.SpinBeamWindDown.asset"; public static string EntityStatesVoidRaidCrabSpinBeamWindUp = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.SpinBeamWindUp.asset"; public static string EntityStatesVoidRaidCrabLegBaseStompState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Leg.BaseStompState.asset"; public static string EntityStatesVoidRaidCrabLegPostStompReturnToBase = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Leg.PostStompReturnToBase.asset"; public static string EntityStatesVoidRaidCrabLegPreStompFollowTarget = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Leg.PreStompFollowTarget.asset"; public static string EntityStatesVoidRaidCrabLegPreStompLegRaise = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Leg.PreStompLegRaise.asset"; public static string EntityStatesVoidRaidCrabLegPreStompPauseBeforeStomp = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Leg.PreStompPauseBeforeStomp.asset"; public static string EntityStatesVoidRaidCrabLegStomp = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.Leg.Stomp.asset"; public static string EntityStatesVoidRaidCrabBaseVacuumAttackState = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.BaseVacuumAttackState.asset"; public static string EntityStatesVoidRaidCrabVacuumAttack = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.VacuumAttack.asset"; public static string EntityStatesVoidRaidCrabVacuumEnter = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.VacuumEnter.asset"; public static string EntityStatesVoidRaidCrabVacuumExit = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.VacuumExit.asset"; public static string EntityStatesVoidRaidCrabVacuumWindDown = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.VacuumWindDown.asset"; public static string EntityStatesVoidRaidCrabVacuumWindUp = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.VacuumWindUp.asset"; public static string EntityStatesVoidRaidCrabChargeWardWipe = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.ChargeWardWipe.asset"; public static string EntityStatesVoidRaidCrabFireWardWipe = "RoR2/DLC1/VoidRaidCrab/EntityStates.VoidRaidCrab.FireWardWipe.asset"; public static string EntityStatesVoidSurvivorCorruptModeCorruptMode = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.CorruptMode.CorruptMode.asset"; public static string EntityStatesVoidSurvivorCorruptModeUncorruptedMode = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.CorruptMode.UncorruptedMode.asset"; public static string EntityStatesVoidSurvivorEnterCorruptionTransition = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.EnterCorruptionTransition.asset"; public static string EntityStatesVoidSurvivorExitCorruptionTransition = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.ExitCorruptionTransition.asset"; public static string EntityStatesVoidSurvivorWeaponFireBlaster1 = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireBlaster1.asset"; public static string EntityStatesVoidSurvivorWeaponFireBlaster2 = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireBlaster2.asset"; public static string EntityStatesVoidSurvivorWeaponFireBlaster3 = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireBlaster3.asset"; public static string EntityStatesVoidSurvivorWeaponFireBlaster4 = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireBlaster4.asset"; public static string EntityStatesVoidSurvivorWeaponFireTwinBlaster = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireTwinBlaster.asset"; public static string EntityStatesVoidSurvivorWeaponChargeHandBeam = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.ChargeHandBeam.asset"; public static string EntityStatesVoidSurvivorWeaponFireHandBeam = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireHandBeam.asset"; public static string EntityStatesVoidSurvivorWeaponChargeCorruptHandBeam = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.ChargeCorruptHandBeam.asset"; public static string EntityStatesVoidSurvivorWeaponFireCorruptHandBeam = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireCorruptHandBeam.asset"; public static string EntityStatesVoidSurvivorWeaponSwingMelee1 = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.SwingMelee1.asset"; public static string EntityStatesVoidSurvivorWeaponSwingMelee2 = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.SwingMelee2.asset"; public static string EntityStatesVoidSurvivorWeaponSwingMelee3 = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.SwingMelee3.asset"; public static string EntityStatesVoidSurvivorWeaponChargeCrabCannon = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.ChargeCrabCannon.asset"; public static string EntityStatesVoidSurvivorWeaponFireCrabCannon = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireCrabCannon.asset"; public static string EntityStatesVoidSurvivorWeaponChargeMegaBlaster = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.ChargeMegaBlaster.asset"; public static string EntityStatesVoidSurvivorWeaponFireMegaBlasterBig = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireMegaBlasterBig.asset"; public static string EntityStatesVoidSurvivorWeaponFireMegaBlasterSmall = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireMegaBlasterSmall.asset"; public static string EntityStatesVoidSurvivorWeaponReadyMegaBlaster = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.ReadyMegaBlaster.asset"; public static string EntityStatesVoidSurvivorWeaponFireCorruptDisks = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireCorruptDisks.asset"; public static string EntityStatesVoidSurvivorWeaponFireRepulsion = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.FireRepulsion.asset"; public static string EntityStatesVoidSurvivorWeaponSuppress = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.Suppress.asset"; public static string EntityStatesVoidSurvivorWeaponChargeCrushCorruption = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.ChargeCrushCorruption.asset"; public static string EntityStatesVoidSurvivorWeaponCrushCorruption = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.CrushCorruption.asset"; public static string EntityStatesVoidSurvivorWeaponChargeCrushHealth = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.ChargeCrushHealth.asset"; public static string EntityStatesVoidSurvivorWeaponCrushHealth = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Weapon.CrushHealth.asset"; public static string EntityStatesVoidSurvivorVentVentCorruption = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.Vent.VentCorruption.asset"; public static string EntityStatesVoidSurvivorVoidBlinkBaseVoidBlinkUp = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.VoidBlinkBase+VoidBlinkUp.asset"; public static string EntityStatesVoidSurvivorVoidBlinkBaseVoidBlinkDown = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.VoidBlinkBase+VoidBlinkDown.asset"; public static string EntityStatesVoidSurvivorPodDescent = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivorPod.Descent.asset"; public static string EntityStatesVoidSurvivorPodLanded = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivorPod.Landed.asset"; public static string EntityStatesVoidSurvivorPodRelease = "RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivorPod.Release.asset"; public static string EntityStatesAffixEarthHealerChargeup = "RoR2/DLC1/EliteEarth/EntityStates.AffixEarthHealer.Chargeup.asset"; public static string EntityStatesAffixEarthHealerDeathState = "RoR2/DLC1/EliteEarth/EntityStates.AffixEarthHealer.DeathState.asset"; public static string EntityStatesAffixEarthHealerHeal = "RoR2/DLC1/EliteEarth/EntityStates.AffixEarthHealer.Heal.asset"; public static string EntityStatesAffixVoidSelfDestruct = "RoR2/DLC1/EliteVoid/EntityStates.AffixVoid.SelfDestruct.asset"; public static string EntityStatesVoidInfestorDeath = "RoR2/DLC1/EliteVoid/EntityStates.VoidInfestor.Death.asset"; public static string EntityStatesVoidInfestorInfest = "RoR2/DLC1/EliteVoid/EntityStates.VoidInfestor.Infest.asset"; public static string EntityStatesVoidInfestorSpawn = "RoR2/DLC1/EliteVoid/EntityStates.VoidInfestor.Spawn.asset"; public static string EntityStatesGummyCloneDeathState = "RoR2/DLC1/GummyClone/EntityStates.GummyCloneDeathState.asset"; public static string EntityStatesGummyCloneSpawnState = "RoR2/DLC1/GummyClone/EntityStates.GummyCloneSpawnState.asset"; public static string EntityStatesGameOverVoidEndingFadeToBlack = "RoR2/DLC1/GameModes/EntityStates.GameOver.VoidEndingFadeToBlack.asset"; public static string EntityStatesGameOverVoidEndingPlayCutscene = "RoR2/DLC1/GameModes/EntityStates.GameOver.VoidEndingPlayCutscene.asset"; public static string EntityStatesGameOverVoidEndingPlaySetSceneAndWaitForPlayers = "RoR2/DLC1/GameModes/EntityStates.GameOver.VoidEndingPlaySetSceneAndWaitForPlayers.asset"; public static string EntityStatesGameOverVoidEndingStart = "RoR2/DLC1/GameModes/EntityStates.GameOver.VoidEndingStart.asset"; public static string EntityStatesInfiniteTowerSafeWardActive = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/EntityStates.InfiniteTowerSafeWard.Active.asset"; public static string EntityStatesInfiniteTowerSafeWardAwaitingActivation = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/EntityStates.InfiniteTowerSafeWard.AwaitingActivation.asset"; public static string EntityStatesInfiniteTowerSafeWardAwaitingPortalUse = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/EntityStates.InfiniteTowerSafeWard.AwaitingPortalUse.asset"; public static string EntityStatesInfiniteTowerSafeWardBurrow = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/EntityStates.InfiniteTowerSafeWard.Burrow.asset"; public static string EntityStatesInfiniteTowerSafeWardCorrallingPlayers = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/EntityStates.InfiniteTowerSafeWard.CorrallingPlayers.asset"; public static string EntityStatesInfiniteTowerSafeWardSelfDestruct = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/EntityStates.InfiniteTowerSafeWard.SelfDestruct.asset"; public static string EntityStatesInfiniteTowerSafeWardTravelling = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/EntityStates.InfiniteTowerSafeWard.Travelling.asset"; public static string EntityStatesInfiniteTowerSafeWardUnburrow = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/EntityStates.InfiniteTowerSafeWard.Unburrow.asset"; public static string EntityStatesDeepVoidPortalBatteryCharged = "RoR2/DLC1/DeepVoidPortalBattery/EntityStates.DeepVoidPortalBattery.Charged.asset"; public static string EntityStatesDeepVoidPortalBatteryCharging = "RoR2/DLC1/DeepVoidPortalBattery/EntityStates.DeepVoidPortalBattery.Charging.asset"; public static string EntityStatesDeepVoidPortalBatteryIdle = "RoR2/DLC1/DeepVoidPortalBattery/EntityStates.DeepVoidPortalBattery.Idle.asset"; public static string EntityStatesVoidCampDeactivate = "RoR2/DLC1/VoidCamp/EntityStates.VoidCamp.Deactivate.asset"; public static string EntityStatesVoidCampIdle = "RoR2/DLC1/VoidCamp/EntityStates.VoidCamp.Idle.asset"; public static string EntityStatesDroneWeaponsChainGunAimChainGun = "RoR2/DLC1/DroneWeapons/EntityStates.DroneWeaponsChainGun.AimChainGun.asset"; public static string EntityStatesDroneWeaponsChainGunFireChainGun = "RoR2/DLC1/DroneWeapons/EntityStates.DroneWeaponsChainGun.FireChainGun.asset"; public static string EntityStatesChefChefsKiss = "RoR2/DLC2/Chef/EntityStates.Chef.ChefsKiss.asset"; public static string EntityStatesChefDice = "RoR2/DLC2/Chef/EntityStates.Chef.Dice.asset"; public static string EntityStatesChefSear = "RoR2/DLC2/Chef/EntityStates.Chef.Sear.asset"; public static string EntityStatesChefIceBox = "RoR2/DLC2/Chef/EntityStates.Chef.IceBox.asset"; public static string EntityStatesChefGlaze = "RoR2/DLC2/Chef/EntityStates.Chef.Glaze.asset"; public static string EntityStatesChefYesChef = "RoR2/DLC2/Chef/EntityStates.Chef.YesChef.asset"; public static string EntityStatesChefYesChefBlockingState = "RoR2/DLC2/Chef/EntityStates.Chef.YesChefBlockingState.asset"; public static string EntityStatesChefRolyPoly = "RoR2/DLC2/Chef/EntityStates.Chef.RolyPoly.asset"; public static string EntityStatesChefRolyPolyWeaponBlockingState = "RoR2/DLC2/Chef/EntityStates.Chef.RolyPolyWeaponBlockingState.asset"; public static string EntityStateChefOilSpill = "RoR2/DLC2/Chef/EntityState.Chef.OilSpill.asset"; public static string EntityStatesChildDeathState = "RoR2/DLC2/Child/EntityStates.Child.DeathState.asset"; public static string EntityStatesChildMonsterSpawnState = "RoR2/DLC2/Child/EntityStates.ChildMonster.SpawnState.asset"; public static string EntityStatesChildMonsterChargeTrackingSparkBall = "RoR2/DLC2/Child/EntityStates.ChildMonster.ChargeTrackingSparkBall.asset"; public static string EntityStatesChildMonsterFireTrackingSparkBall = "RoR2/DLC2/Child/EntityStates.ChildMonster.FireTrackingSparkBall.asset"; public static string EntityStatesChildMonsterFrolic = "RoR2/DLC2/Child/EntityStates.ChildMonster.Frolic.asset"; public static string EntityStatesChildMonsterFrolicAway = "RoR2/DLC2/Child/EntityStates.ChildMonster.FrolicAway.asset"; public static string EntityStatesCorruptionSpikeDeath = "RoR2/DLC2/CorruptionSpike/EntityStates.CorruptionSpikeDeath.asset"; public static string EntityStatesFalseSonMeteorPodDescent = "RoR2/DLC2/FalseSon/EntityStates.FalseSonMeteorPod.Descent.asset"; public static string EntityStatesFalseSonAurelioniteCore = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.AurelioniteCore.asset"; public static string EntityStatesFalseSonTheTamperedHeart = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.TheTamperedHeart.asset"; public static string EntityStatesFalseSonChargedClubSwing = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.ChargedClubSwing.asset"; public static string EntityStatesFalseSonClubGroundSlam = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.ClubGroundSlam.asset"; public static string EntityStatesFalseSonClubSwing = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.ClubSwing.asset"; public static string EntityStatesFalseSonClubSwing3 = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.ClubSwing3.asset"; public static string EntityStatesFalseSonOverheadClubSwing = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.OverheadClubSwing.asset"; public static string EntityStatesFalseSonPreClubGroundSlam = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.PreClubGroundSlam.asset"; public static string EntityStatesIdleSkillOverrideHandoff = "RoR2/DLC2/FalseSon/EntityStates.IdleSkillOverrideHandoff.asset"; public static string EntityStatesFalseSonLunarSpikes = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.LunarSpikes.asset"; public static string EntityStatesFalseSonLunarSpikesShotgun = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.LunarSpikesShotgun.asset"; public static string EntityStatesFalseSonLunarStake = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.LunarStake.asset"; public static string EntityStatesFalseSonLaserFather = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.LaserFather.asset"; public static string EntityStatesFalseSonLaserFatherBurst = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.LaserFatherBurst.asset"; public static string EntityStatesFalseSonLaserFatherBurstPrep = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.LaserFatherBurstPrep.asset"; public static string EntityStatesFalseSonLaserFatherCharged = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.LaserFatherCharged.asset"; public static string EntityStatesFalseSonAimMeridiansWill = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.AimMeridiansWill.asset"; public static string EntityStatesFalseSonFireMeridiansWill = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.FireMeridiansWill.asset"; public static string EntityStatesFalseSonStepBrothers = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.StepBrothers.asset"; public static string EntityStatesFalseSonTeleportMeridianWill = "RoR2/DLC2/FalseSon/EntityStates.FalseSon.TeleportMeridianWill.asset"; public static string EntityStatesFalseSonBossPrimeDevastator = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.PrimeDevastator.asset"; public static string EntityStatesFalseSonBossLunarGazeExitLeap = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.LunarGazeExitLeap.asset"; public static string EntityStatesFalseSonBossLunarGazeLeap = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.LunarGazeLeap.asset"; public static string EntityStatesFalseSonBossLunarGazeLeapPlus = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.LunarGazeLeapPlus.asset"; public static string EntityStatesLunarGazeHoldLeap = "RoR2/DLC2/FalseSonBoss/EntityStates.LunarGazeHoldLeap.asset"; public static string FalseSonBossGenericStateWithSwing = "RoR2/DLC2/FalseSonBoss/FalseSonBossGenericStateWithSwing.asset"; public static string FalseSonBossSwatAwayPlayersSlam = "RoR2/DLC2/FalseSonBoss/FalseSonBossSwatAwayPlayersSlam.asset"; public static string FalseSonBossSwatAwayPlayersWindup = "RoR2/DLC2/FalseSonBoss/FalseSonBossSwatAwayPlayersWindup.asset"; public static string EntityStatesFalseSonBossFissureSlam = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.FissureSlam.asset"; public static string EntityStatesFalseSonBossFissureSlamWindup = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.FissureSlamWindup.asset"; public static string EntityStatesFalseSonBossHeroRelicSwing = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.HeroRelicSwing.asset"; public static string EntityStatesFalseSonBossHeroRelicSwingLeft = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.HeroRelicSwingLeft.asset"; public static string DestructibleLunarRainDeathState = "RoR2/DLC2/FalseSonBoss/Destructible.LunarRainDeathState.asset"; public static string EntityStatesFalseSonBossLunarRain = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.LunarRain.asset"; public static string EntityStatesFalseSonBossTaintedOffering = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.TaintedOffering.asset"; public static string EntityStatesFalseSonBossCorruptedPaths = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.CorruptedPaths.asset"; public static string EntityStatesFalseSonBossCorruptedPathsDash = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.CorruptedPathsDash.asset"; public static string EntityStatesFalseSonBossOverloadSpike = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.OverloadSpike.asset"; public static string EntityStatesFalseSonBossBrokenCrystalDeathState = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.BrokenCrystalDeathState.asset"; public static string EntityStatesFalseSonBossCrystalDeathState = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.CrystalDeathState.asset"; public static string EntityStatesFalseSonBossHeartSpawnState = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.HeartSpawnState.asset"; public static string EntityStatesFalseSonBossLightning1SpawnState = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.Lightning1SpawnState.asset"; public static string EntityStatesFalseSonBossLightning2SpawnState = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.Lightning2SpawnState.asset"; public static string EntityStatesFalseSonBossSkyJumpDeathState = "RoR2/DLC2/FalseSonBoss/EntityStates.FalseSonBoss.SkyJumpDeathState.asset"; public static string EntityStatesHalcyoniteDeathState = "RoR2/DLC2/Halcyonite/EntityStates.Halcyonite.DeathState.asset"; public static string EntityStatesHalcyoniteSpawnState = "RoR2/DLC2/Halcyonite/EntityStates.Halcyonite.SpawnState.asset"; public static string EntityStatesHalcyoniteMonsterGoldenSwipe = "RoR2/DLC2/Halcyonite/EntityStates.HalcyoniteMonster.GoldenSwipe.asset"; public static string EntityStatesHalcyoniteMonsterChargeTriLaser = "RoR2/DLC2/Halcyonite/EntityStates.HalcyoniteMonster.ChargeTriLaser.asset"; public static string EntityStatesHalcyoniteMonsterTriLaser = "RoR2/DLC2/Halcyonite/EntityStates.HalcyoniteMonster.TriLaser.asset"; public static string EntityStatesHalcyoniteMonsterGoldenSlash = "RoR2/DLC2/Halcyonite/EntityStates.HalcyoniteMonster.GoldenSlash.asset"; public static string EntityStatesHalcyoniteMonsterWhirlwindPersuitCycle = "RoR2/DLC2/Halcyonite/EntityStates.HalcyoniteMonster.WhirlwindPersuitCycle.asset"; public static string EntityStatesHalcyoniteMonsterWhirlwindWarmUp = "RoR2/DLC2/Halcyonite/EntityStates.HalcyoniteMonster.WhirlwindWarmUp.asset"; public static string EntityStatesScorchlingDeathState = "RoR2/DLC2/Scorchling/EntityStates.Scorchling.DeathState.asset"; public static string EntityStatesScorchlingSpawnState = "RoR2/DLC2/Scorchling/EntityStates.Scorchling.SpawnState.asset"; public static string EntityStatesScorchlingBreach = "RoR2/DLC2/Scorchling/EntityStates.Scorchling.Breach.asset"; public static string EntityStatesScorchlingLavaBomb = "RoR2/DLC2/Scorchling/EntityStates.Scorchling.LavaBomb.asset"; public static string EntityStatesScorchlingEnsureBurrow = "RoR2/DLC2/Scorchling/EntityStates.Scorchling.EnsureBurrow.asset"; public static string EntityStatesScorchlingInstantBurrow = "RoR2/DLC2/Scorchling/EntityStates.ScorchlingInstantBurrow.asset"; public static string EntityStatesSeekerInnerStrength = "RoR2/DLC2/Seeker/EntityStates.Seeker.InnerStrength.asset"; public static string EntityStatesSeekerSoulSearch = "RoR2/DLC2/Seeker/EntityStates.Seeker.SoulSearch.asset"; public static string EntityStatesSeekerSpiritPunch = "RoR2/DLC2/Seeker/EntityStates.Seeker.SpiritPunch.asset"; public static string EntityStatesSeekerSoulSpiral = "RoR2/DLC2/Seeker/EntityStates.Seeker.SoulSpiral.asset"; public static string EntityStatesSeekerUnseenHand = "RoR2/DLC2/Seeker/EntityStates.Seeker.UnseenHand.asset"; public static string EntityStatesSeekerMeditate = "RoR2/DLC2/Seeker/EntityStates.Seeker.Meditate.asset"; public static string EntityStatesSeekerPalmBlastCharge = "RoR2/DLC2/Seeker/EntityStates.Seeker.PalmBlastCharge.asset"; public static string EntityStatesSeekerPalmBlastFire = "RoR2/DLC2/Seeker/EntityStates.Seeker.PalmBlastFire.asset"; public static string EntityStatesSeekerReprieve = "RoR2/DLC2/Seeker/EntityStates.Seeker.Reprieve.asset"; public static string EntityStatesSeekerSojourn = "RoR2/DLC2/Seeker/EntityStates.Seeker.Sojourn.asset"; public static string EntityStatesGameOverRebirthEndingFadeToBlack = "RoR2/DLC2/ClassicRun/EntityStates.GameOver.RebirthEndingFadeToBlack.asset"; public static string EntityStatesGameOverRebirthEndingStart = "RoR2/DLC2/ClassicRun/EntityStates.GameOver.RebirthEndingStart.asset"; public static string EntityStatesGeodeGeodeEntityStates = "RoR2/DLC2/EntityStates.Geode.GeodeEntityStates.asset"; public static string EntityStatesGeodeGeodeInert = "RoR2/DLC2/EntityStates.Geode.GeodeInert.asset"; public static string EntityStatesGeodeGeodeShatter = "RoR2/DLC2/EntityStates.Geode.GeodeShatter.asset"; public static string EntityStatesMissionsMiniGeodeTrackerGeodeDeathState = "RoR2/DLC2/EntityStates.Missions.MiniGeodeTracker.GeodeDeathState.asset"; public static string EntityStatesMissionsMiniGeodeTrackerListening = "RoR2/DLC2/EntityStates.Missions.MiniGeodeTracker.Listening.asset"; public static string ShrineHalcyoniteActivatedState = "RoR2/DLC2/ShrineHalcyoniteActivatedState.asset"; public static string ShrineHalcyoniteBaseState = "RoR2/DLC2/ShrineHalcyoniteBaseState.asset"; public static string ShrineHalcyoniteFinished = "RoR2/DLC2/ShrineHalcyoniteFinished.asset"; public static string ShrineHalcyoniteHighQuality = "RoR2/DLC2/ShrineHalcyoniteHighQuality.asset"; public static string ShrineHalcyoniteLowQuality = "RoR2/DLC2/ShrineHalcyoniteLowQuality.asset"; public static string ShrineHalcyoniteMidQuality = "RoR2/DLC2/ShrineHalcyoniteMidQuality.asset"; public static string ShrineHalcyoniteNoQuality = "RoR2/DLC2/ShrineHalcyoniteNoQuality.asset"; public static string RoR2ArtifactTrialMissionControllerArtifactTrialMissionControllerBaseState26 = "RoR2/DLC2/artifactworld03/RoR2.ArtifactTrialMissionController+ArtifactTrialMissionControllerBaseState.asset"; public static string RoR2ArtifactTrialMissionControllerCombatState35 = "RoR2/DLC2/artifactworld03/RoR2.ArtifactTrialMissionController+CombatState.asset"; public static string RoR2ArtifactTrialMissionControllerIntroState13 = "RoR2/DLC2/artifactworld03/RoR2.ArtifactTrialMissionController+IntroState.asset"; public static string RoR2ArtifactTrialMissionControllerPreCombatState17 = "RoR2/DLC2/artifactworld03/RoR2.ArtifactTrialMissionController+PreCombatState.asset"; public static string RoR2ArtifactTrialMissionControllerSetupState30 = "RoR2/DLC2/artifactworld03/RoR2.ArtifactTrialMissionController+SetupState.asset"; public static string RoR2ArtifactTrialMissionControllerSpawnExitPortalAndIdle33 = "RoR2/DLC2/artifactworld03/RoR2.ArtifactTrialMissionController+SpawnExitPortalAndIdle.asset"; public static string RoR2ArtifactTrialMissionControllerWaitForPlayersState7 = "RoR2/DLC2/artifactworld03/RoR2.ArtifactTrialMissionController+WaitForPlayersState.asset"; public static string RoR2ArtifactTrialMissionControllerWaitForRewardTaken14 = "RoR2/DLC2/artifactworld03/RoR2.ArtifactTrialMissionController+WaitForRewardTaken.asset"; public static string EntityStatesFaunaHabitatFruitDeathState = "RoR2/DLC2/habitat/Assets/EntityStates.Fauna.HabitatFruitDeathState.asset"; public static string EntityStatesFaunaHabitatFallFruitDeathState = "RoR2/DLC2/habitatfall/Assets/EntityStates.Fauna.HabitatFallFruitDeathState.asset"; public static string EntityStatesPrimeMeridianIdle = "RoR2/DLC2/meridian/EntityStates.PrimeMeridian.Idle.asset"; public static string EntityStatesPrimeMeridianLunarGazeLaserCharge = "RoR2/DLC2/meridian/EntityStates.PrimeMeridian.LunarGazeLaserCharge.asset"; public static string EntityStatesPrimeMeridianLunarGazeLaserChargePlus = "RoR2/DLC2/meridian/EntityStates.PrimeMeridian.LunarGazeLaserChargePlus.asset"; public static string EntityStatesPrimeMeridianLunarGazeLaserEnd = "RoR2/DLC2/meridian/EntityStates.PrimeMeridian.LunarGazeLaserEnd.asset"; public static string EntityStatesPrimeMeridianLunarGazeLaserFire = "RoR2/DLC2/meridian/EntityStates.PrimeMeridian.LunarGazeLaserFire.asset"; public static string EntityStatesPrimeMeridianLunarGazeLaserFirePlus = "RoR2/DLC2/meridian/EntityStates.PrimeMeridian.LunarGazeLaserFirePlus.asset"; public static string EntityStatesLightningStormLightningStormState = "RoR2/DLC2/meridian/DisableSkillsLightning/EntityStates.LightningStorm.LightningStormState.asset"; public static string RoR2MeridianEventPhase1 = "RoR2/DLC2/meridian/RoR2.MeridianEventPhase1.asset"; public static string RoR2MeridianEventPhase2 = "RoR2/DLC2/meridian/RoR2.MeridianEventPhase2.asset"; public static string RoR2MeridianEventPhase3 = "RoR2/DLC2/meridian/RoR2.MeridianEventPhase3.asset"; public static string RoR2MeridianEventTriggerInteractionMeridianEventStart = "RoR2/DLC2/meridian/RoR2.MeridianEventTriggerInteraction.MeridianEventStart.asset"; public static string RoR2MeridianEventTriggerInteractionMeridianEventBaseState = "RoR2/DLC2/meridian/RoR2.MeridianEventTriggerInteraction+MeridianEventBaseState.asset"; public static string RoR2MeridianEventTriggerInteractionMeridianEventCleared = "RoR2/DLC2/meridian/RoR2.MeridianEventTriggerInteraction+MeridianEventCleared.asset"; public static string EntityStatesDefectiveUnitDeathState = "RoR2/DLC3/DefectiveUnit/EntityStates.DefectiveUnit.DeathState.asset"; public static string EntityStatesDefectiveUnitSpawnState = "RoR2/DLC3/DefectiveUnit/EntityStates.DefectiveUnit.SpawnState.asset"; public static string DefectiveUnitDenial = "RoR2/DLC3/DefectiveUnit/DefectiveUnit.Denial.asset"; public static string DefectiveUnitDenialProjectile = "RoR2/DLC3/DefectiveUnit/DefectiveUnit.DenialProjectile.asset"; public static string DefectiveUnitDetonate = "RoR2/DLC3/DefectiveUnit/DefectiveUnit.Detonate.asset"; public static string EntityStatesDestructibleSpawnerObjectDeath = "RoR2/DLC3/DestructibleSpawner/EntityStates.DestructibleSpawnerObject.Death.asset"; public static string EntityStatesDestructibleSpawnerObjectSpawnState = "RoR2/DLC3/DestructibleSpawner/EntityStates.DestructibleSpawnerObject.SpawnState.asset"; public static string EntityStatesDrifterDeathState = "RoR2/DLC3/Drifter/EntityStates.Drifter.DeathState.asset"; public static string EntityStatesLockedDrifterUnlockingDrifter = "RoR2/DLC3/Drifter/EntityStates.LockedDrifter.UnlockingDrifter.asset"; public static string EntityStatesVehiclesThrownObjectIdle = "RoR2/DLC3/Drifter/EntityStates.Vehicles.ThrownObjectIdle.asset"; public static string EntityStatesDrifterBluntForceBase = "RoR2/DLC3/Drifter/EntityStates.Drifter.BluntForceBase.asset"; public static string EntityStatesDrifterBluntForceEntry = "RoR2/DLC3/Drifter/EntityStates.Drifter.BluntForceEntry.asset"; public static string EntityStatesDrifterBluntForceHit1 = "RoR2/DLC3/Drifter/EntityStates.Drifter.BluntForceHit1.asset"; public static string EntityStatesDrifterBluntForceHit2 = "RoR2/DLC3/Drifter/EntityStates.Drifter.BluntForceHit2.asset"; public static string EntityStatesDrifterBluntForceHit3 = "RoR2/DLC3/Drifter/EntityStates.Drifter.BluntForceHit3.asset"; public static string EntityStatesDrifterAimMagicBag = "RoR2/DLC3/Drifter/EntityStates.Drifter.AimMagicBag.asset"; public static string EntityStatesDrifterCleanup = "RoR2/DLC3/Drifter/EntityStates.Drifter.Cleanup.asset"; public static string EntityStatesDrifterCubeSlam = "RoR2/DLC3/Drifter/EntityStates.Drifter.CubeSlam.asset"; public static string EntityStatesJunkCubeLaunched = "RoR2/DLC3/Drifter/EntityStates.JunkCube.Launched.asset"; public static string JunkCubeDamageLarge = "RoR2/DLC3/Drifter/JunkCube.DamageLarge.asset"; public static string JunkCubeDamageMedium = "RoR2/DLC3/Drifter/JunkCube.DamageMedium.asset"; public static string JunkCubeDamageSmall = "RoR2/DLC3/Drifter/JunkCube.DamageSmall.asset"; public static string JunkCubeDeathLarge = "RoR2/DLC3/Drifter/JunkCube.DeathLarge.asset"; public static string JunkCubeDeathMedium = "RoR2/DLC3/Drifter/JunkCube.DeathMedium.asset"; public static string JunkCubeDeathSmall = "RoR2/DLC3/Drifter/JunkCube.DeathSmall.asset"; public static string JunkCubeFalling = "RoR2/DLC3/Drifter/JunkCube.Falling.asset"; public static string JunkCubeIdle = "RoR2/DLC3/Drifter/JunkCube.Idle.asset"; public static string JunkCubeSpawnState = "RoR2/DLC3/Drifter/JunkCube.SpawnState.asset"; public static string EntityStatesDrifterHoardBaseState = "RoR2/DLC3/Drifter/EntityStates.Drifter.Hoard.BaseState.asset"; public static string EntityStatesDrifterHoardDestroy = "RoR2/DLC3/Drifter/EntityStates.Drifter.Hoard.Destroy.asset"; public static string EntityStatesDrifterHoardIdle = "RoR2/DLC3/Drifter/EntityStates.Drifter.Hoard.Idle.asset"; public static string EntityStatesDrifterJunkCube = "RoR2/DLC3/Drifter/EntityStates.Drifter.JunkCube.asset"; public static string EntityStatesDrifterTreasureHoard = "RoR2/DLC3/Drifter/EntityStates.Drifter.TreasureHoard.asset"; public static string EntityStatesDrifterRecycle = "RoR2/DLC3/Drifter/EntityStates.Drifter.Recycle.asset"; public static string EntityStatesDrifterSalvage = "RoR2/DLC3/Drifter/EntityStates.Drifter.Salvage.asset"; public static string EntityStatesDrifterCastTinker = "RoR2/DLC3/Drifter/EntityStates.Drifter.CastTinker.asset"; public static string EntityStatesDrifterAimRepossess = "RoR2/DLC3/Drifter/EntityStates.Drifter.AimRepossess.asset"; public static string EntityStatesDrifterBaggedObject = "RoR2/DLC3/Drifter/EntityStates.Drifter.BaggedObject.asset"; public static string EntityStatesDrifterEmptyBag = "RoR2/DLC3/Drifter/EntityStates.Drifter.EmptyBag.asset"; public static string EntityStatesDrifterRepossess = "RoR2/DLC3/Drifter/EntityStates.Drifter.Repossess.asset"; public static string EntityStatesDrifterRepossessExit = "RoR2/DLC3/Drifter/EntityStates.Drifter.RepossessExit.asset"; public static string EntityStatesDrifterSuffocateSlam = "RoR2/DLC3/Drifter/EntityStates.Drifter.SuffocateSlam.asset"; public static string EntityStatesDrifterSuffocate = "RoR2/DLC3/Drifter/EntityStates.Drifter.Suffocate.asset"; public static string EntityStatesDrifterBluntForceTornado = "RoR2/DLC3/Drifter/EntityStates.Drifter.BluntForceTornado.asset"; public static string EntityStatesDrifterChargeTornadoSlam = "RoR2/DLC3/Drifter/EntityStates.Drifter.ChargeTornadoSlam.asset"; public static string EntityStatesDrifterTornadoSlam = "RoR2/DLC3/Drifter/EntityStates.Drifter.TornadoSlam.asset"; public static string EntityStatesDroneTechWeaponNanoBomb = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.NanoBomb.asset"; public static string EntityStatesDroneTechWeaponFireNanoPistol = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.FireNanoPistol.asset"; public static string EntityStatesDroneCommandCommandBombardment = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandBombardment.asset"; public static string EntityStatesDroneCommandCommandBombardmentPosition = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandBombardmentPosition.asset"; public static string EntityStatesDroneCommandCommandDynamite = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandDynamite.asset"; public static string EntityStatesDroneCommandCommandCleanup = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandCleanup.asset"; public static string EntityStatesDroneCommandCommandCleanupPosition = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandCleanupPosition.asset"; public static string EntityStatesDroneCommandCommandWarCry = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandWarCry.asset"; public static string EntityStatesDroneCommandCommandFireDisc = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandFireDisc.asset"; public static string EntityStatesDroneCommandCommandFireTurret = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandFireTurret.asset"; public static string EntityStatesDroneCommandCommandHealShot = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandHealShot.asset"; public static string EntityStatesDroneCommandCommandFireTurretBounce = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandFireTurretBounce.asset"; public static string EntityStatesDroneCommandCommandElevate = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandElevate.asset"; public static string EntityStatesDroneCommandCommandElevateRock = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandElevateRock.asset"; public static string EntityStatesDroneCommandCommandStimShot = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandStimShot.asset"; public static string EntityStatesDroneCommandCommandHealNova = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandHealNova.asset"; public static string EntityStatesDroneCommandCommandHealNovaPulse = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandHealNovaPulse.asset"; public static string EntityStatesDroneBreakAway = "RoR2/DLC3/Drone Tech/EntityStates.Drone.BreakAway.asset"; public static string EntityStatesDroneCaptured = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Captured.asset"; public static string EntityStatesDroneFollow = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Follow.asset"; public static string EntityStatesDroneCommandCommandFlamethrower = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandFlamethrower.asset"; public static string EntityStatesDroneCommandCommandHeadbutt = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandHeadbutt.asset"; public static string EntityStatesDroneCommandCommandHaulerPosition = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandHaulerPosition.asset"; public static string EntityStatesDroneCommandCommandCage = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandCage.asset"; public static string EntityStatesDroneCommandCommandJailerPosition = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandJailerPosition.asset"; public static string EntityStatesDroneCommandCommandFireJunk = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandFireJunk.asset"; public static string EntityStatesDroneCommandCommandBombingRun = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandBombingRun.asset"; public static string EntityStatesDroneCommandCommandFireMegaTurret = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandFireMegaTurret.asset"; public static string EntityStatesDroneCommandCommandFireTwinRocket = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandFireTwinRocket.asset"; public static string EntityStatesDroneCommandCommandFireMissiles = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandFireMissiles.asset"; public static string EntityStatesDroneCommandCommandRecharge = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.CommandRecharge.asset"; public static string EntityStatesDroneTechWeaponActivate = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.Activate.asset"; public static string EntityStatesDroneCommandHeadbutt = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Command.Headbutt.asset"; public static string EntityStatesDroneTechWeaponPaintBaseDroneHeadbuttPaintState = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.Paint.BaseDroneHeadbuttPaintState.asset"; public static string EntityStatesDroneTechWeaponPaintFinish = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.Paint.Finish.asset"; public static string EntityStatesDroneTechWeaponPaintFire = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.Paint.Fire.asset"; public static string EntityStatesDroneTechWeaponPaintFollowHeadbutt = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.Paint.FollowHeadbutt.asset"; public static string EntityStatesDroneTechWeaponPaintPaint = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.Paint.Paint.asset"; public static string EntityStatesDroneTechWeaponPaintStartup = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.Paint.Startup.asset"; public static string EntityStatesDroneDroneShockState = "RoR2/DLC3/Drone Tech/EntityStates.Drone.DroneShockState.asset"; public static string EntityStatesDroneTechDroneBallArm = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.DroneBall.Arm.asset"; public static string EntityStatesDroneTechDroneBallReleaseDrone = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.DroneBall.ReleaseDrone.asset"; public static string EntityStatesDroneTechDroneBallWaitForImpact = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.DroneBall.WaitForImpact.asset"; public static string EntityStatesDroneTechWeaponThrowDroneBall = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.ThrowDroneBall.asset"; public static string EntityStatesDroneTechDroneBallReleaseDroneShootable = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.DroneBall.ReleaseDroneShootable.asset"; public static string EntityStatesDroneTechWeaponThrowDroneBallShootable = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.ThrowDroneBallShootable.asset"; public static string EntityStatesDroneDisabled = "RoR2/DLC3/Drone Tech/EntityStates.Drone.Disabled.asset"; public static string EntityStatesDroneFlyToPosition = "RoR2/DLC3/Drone Tech/EntityStates.Drone.FlyToPosition.asset"; public static string EntityStatesDroneTechCommandCarry = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.CommandCarry.asset"; public static string EntityStatesDroneTechDroneCarry = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.DroneCarry.asset"; public static string EntityStatesDroneTechDroneCarryRepeat = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.DroneCarryRepeat.asset"; public static string EntityStatesDroneTechDroneLeap = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.DroneLeap.asset"; public static string EntityStatesDroneTechDroneLeapRepeat = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.DroneLeapRepeat.asset"; public static string EntityStatesDroneTechParkourState = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.ParkourState.asset"; public static string EntityStatesDroneTechVault = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Vault.asset"; public static string EntityStatesDroneTechWeaponCommandShield = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.CommandShield.asset"; public static string EntityStatesDroneTechWeaponFireShield = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.FireShield.asset"; public static string EntityStatesDroneTechWeaponShieldFormation = "RoR2/DLC3/Drone Tech/EntityStates.DroneTech.Weapon.ShieldFormation.asset"; public static string EntityStatesDroneDroneBombardmentBombardmentDroneProjectileEffect = "RoR2/DLC3/Drones/EntityStates.Drone.DroneBombardment.BombardmentDroneProjectileEffect.asset"; public static string EntityStatesDroneDroneBombardmentBombardmentDroneProjectileEffectRemoteOp = "RoR2/DLC3/Drones/EntityStates.Drone.DroneBombardment.BombardmentDroneProjectileEffectRemoteOp.asset"; public static string EntityStatesDroneDroneBombardmentBombardmentDroneProjectileSpawn = "RoR2/DLC3/Drones/EntityStates.Drone.DroneBombardment.BombardmentDroneProjectileSpawn.asset"; public static string EntityStatesDroneDroneBombardmentBombardmentDroneProjectileSpawnRemoteOp = "RoR2/DLC3/Drones/EntityStates.Drone.DroneBombardment.BombardmentDroneProjectileSpawnRemoteOp.asset"; public static string BombardmentDroneRemoteOpEntityState = "RoR2/DLC3/Drones/BombardmentDroneRemoteOpEntityState.asset"; public static string BombardmentAssumePositionEntityState = "RoR2/DLC3/Drones/BombardmentAssumePositionEntityState.asset"; public static string BombardmentDroneSkillEntityState = "RoR2/DLC3/Drones/BombardmentDroneSkillEntityState.asset"; public static string EntityStatesShockStateRed = "RoR2/DLC3/Drones/EntityStates.ShockStateRed.asset"; public static string EntityStatesDroneCleanup = "RoR2/DLC3/Drones/EntityStates.Drone.Cleanup.asset"; public static string EntityStatesDroneCleanupRemoteOp = "RoR2/DLC3/Drones/EntityStates.Drone.CleanupRemoteOp.asset"; public static string EntityStatesDroneDroneCopycatFireLaserDisc = "RoR2/DLC3/Drones/EntityStates.Drone.DroneCopycat.FireLaserDisc.asset"; public static string DTDeathState = "RoR2/DLC3/Drones/DTDeathState.asset"; public static string EntityStatesDroneDeathState32 = "RoR2/DLC3/Drones/EntityStates.Drone.DeathState.asset"; public static string EntityStatesDronePlayerDeathState = "RoR2/DLC3/Drones/EntityStates.Drone.PlayerDeathState.asset"; public static string EntityStatesDroneRemoteOpSpawnState = "RoR2/DLC3/Drones/EntityStates.Drone.RemoteOpSpawnState.asset"; public static string EntityStatesDroneDroneHaulerApproachEnemy = "RoR2/DLC3/Drones/EntityStates.Drone.DroneHauler.ApproachEnemy.asset"; public static string EntityStatesDroneDroneHaulerDropEnemy = "RoR2/DLC3/Drones/EntityStates.Drone.DroneHauler.DropEnemy.asset"; public static string EntityStatesDroneDroneHaulerElevateEnemy = "RoR2/DLC3/Drones/EntityStates.Drone.DroneHauler.ElevateEnemy.asset"; public static string EntityStatesDroneDroneHaulerGrabEnemy = "RoR2/DLC3/Drones/EntityStates.Drone.DroneHauler.GrabEnemy.asset"; public static string EntityStatesImmobilizeState = "RoR2/DLC3/Drones/EntityStates.ImmobilizeState.asset"; public static string EntityStatesDroneDroneJailerDroneJailerCageEntangle = "RoR2/DLC3/Drones/EntityStates.Drone.DroneJailer.DroneJailerCageEntangle.asset"; public static string EntityStatesDroneDroneJailerDroneJailerCageSpawn = "RoR2/DLC3/Drones/EntityStates.Drone.DroneJailer.DroneJailerCageSpawn.asset"; public static string JailerDroneRemoteOpSkillEntityState = "RoR2/DLC3/Drones/JailerDroneRemoteOpSkillEntityState.asset"; public static string JailerAssumePositionEntityState = "RoR2/DLC3/Drones/JailerAssumePositionEntityState.asset"; public static string JailerDeployCageEntityState = "RoR2/DLC3/Drones/JailerDeployCageEntityState.asset"; public static string EntityStatesDroneDroneJunkSurprise = "RoR2/DLC3/Drones/EntityStates.Drone.DroneJunk.Surprise.asset"; public static string EntityStatesDroneDroneWeaponRechargeBeam = "RoR2/DLC3/Drones/EntityStates.Drone.DroneWeapon.RechargeBeam.asset"; public static string EntityStatesDestructibleJunkBombDeath = "RoR2/DLC3/ExplosiveJunkBombDestructible/EntityStates.Destructible.JunkBombDeath.asset"; public static string EntityStatesDestructibleJunkBombIdle = "RoR2/DLC3/ExplosiveJunkBombDestructible/EntityStates.Destructible.JunkBombIdle.asset"; public static string EntityStatesExtractorUnitDeathState = "RoR2/DLC3/ExtractorUnit/EntityStates.ExtractorUnit.DeathState.asset"; public static string EntityStatesExtractorUnitSpawnState = "RoR2/DLC3/ExtractorUnit/EntityStates.ExtractorUnit.SpawnState.asset"; public static string EntityStatesExtractorUnitDuplicateItem = "RoR2/DLC3/ExtractorUnit/EntityStates.ExtractorUnit.DuplicateItem.asset"; public static string EntityStatesExtractorUnitExtractLunge = "RoR2/DLC3/ExtractorUnit/EntityStates.ExtractorUnit.ExtractLunge.asset"; public static string EntityStatesExtractorUnitExtractStealFinish = "RoR2/DLC3/ExtractorUnit/EntityStates.ExtractorUnit.ExtractStealFinish.asset"; public static string EntityStatesExtractorUnitExtractStealWait = "RoR2/DLC3/ExtractorUnit/EntityStates.ExtractorUnit.ExtractStealWait.asset"; public static string EntityStatesExtractorUnitWarningBeforeExtract = "RoR2/DLC3/ExtractorUnit/EntityStates.ExtractorUnit.WarningBeforeExtract.asset"; public static string EntityStatesFriendUnitFinalSacrifice = "RoR2/DLC3/FriendUnit/EntityStates.FriendUnit.FinalSacrifice.asset"; public static string EntityStatesFriendUnitKineticAura = "RoR2/DLC3/FriendUnit/EntityStates.FriendUnit.KineticAura.asset"; public static string EntityStatesFriendUnitKineticAuraImpact = "RoR2/DLC3/FriendUnit/EntityStates.FriendUnit.KineticAuraImpact.asset"; public static string EntityStatesFriendUnitFriendUnitLovesYou = "RoR2/DLC3/FriendUnit/EntityStates.FriendUnit.FriendUnitLovesYou.asset"; public static string EntityStatesFriendUnitPlaytime = "RoR2/DLC3/FriendUnit/EntityStates.FriendUnit.Playtime.asset"; public static string EntityStatesIronHaulerDeathState = "RoR2/DLC3/IronHauler/EntityStates.IronHauler.DeathState.asset"; public static string EntityStatesIronHaulerSpawnState = "RoR2/DLC3/IronHauler/EntityStates.IronHauler.SpawnState.asset"; public static string EntityStatesIronHaulerWeaponAim = "RoR2/DLC3/IronHauler/EntityStates.IronHauler.Weapon.Aim.asset"; public static string EntityStatesIronHaulerWeaponShootProjectile = "RoR2/DLC3/IronHauler/EntityStates.IronHauler.Weapon.ShootProjectile.asset"; public static string EntityStatesMinePodDeathState = "RoR2/DLC3/MinePod/EntityStates.MinePod.DeathState.asset"; public static string EntityStatesMinePodSpawnState = "RoR2/DLC3/MinePod/EntityStates.MinePod.SpawnState.asset"; public static string EntityStatesMinePodMinePlant = "RoR2/DLC3/MinePod/EntityStates.MinePod.MinePlant.asset"; public static string EntityStatesMinePodTeleport = "RoR2/DLC3/MinePod/EntityStates.MinePod.Teleport.asset"; public static string EntityStatesSolusAmalgamatorDeathState = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.DeathState.asset"; public static string EntityStatesSolusAmalgamatorSpawnState = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.SpawnState.asset"; public static string EntityStatesSolusAmalgamatorFlamethrowerCannon = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.FlamethrowerCannon.asset"; public static string EntityStatesSolusAmalgamatorMissilePod = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.MissilePod.asset"; public static string EntityStatesSolusAmalgamatorDetatchFlamethrowerCannon = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.Detatch.FlamethrowerCannon.asset"; public static string EntityStatesSolusAmalgamatorDetatchMissilePod = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.Detatch.MissilePod.asset"; public static string EntityStatesSolusAmalgamatorDetatchThruster = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.Detatch.Thruster.asset"; public static string EntityStatesSolusAmalgamtorFlamethrowerTurret = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamtor.FlamethrowerTurret.asset"; public static string EntityStatesSolusAmalgamatorArtillaryStrike = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.ArtillaryStrike.asset"; public static string EntityStatesSolusAmalgamatorBeam = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.Beam.asset"; public static string EntityStatesSolusAmalgamatorShockArmor = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.ShockArmor.asset"; public static string EntityStatesThrusterDeathState = "RoR2/DLC3/SolusAmalgamator/EntityStates.Thruster.DeathState.asset"; public static string EntityStatesSolusAmalgamatorThruster = "RoR2/DLC3/SolusAmalgamator/EntityStates.SolusAmalgamator.Thruster.asset"; public static string EntityStatesSolusHeartSolusHeartMain = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.SolusHeartMain.asset"; public static string EntityStatesSolusHeartDeathSolusHeartDeathSequence = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartDeathSequence.asset"; public static string EntityStatesSolusHeartDeathSolusHeartDeathSequenceDeath = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartDeathSequence+Death.asset"; public static string EntityStatesSolusHeartDeathSolusHeartDeathSequenceDeathIdle = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartDeathSequence+DeathIdle.asset"; public static string EntityStatesSolusHeartDeathSolusHeartDeathSequenceFall = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartDeathSequence+Fall.asset"; public static string EntityStatesSolusHeartDeathSolusHeartDeathSequenceImpact = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartDeathSequence+Impact.asset"; public static string EntityStatesSolusHeartDeathSolusHeartDeathSequenceOffering = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartDeathSequence+Offering.asset"; public static string EntityStatesSolusHeartDeathSolusHeartDeathSequenceStart = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartDeathSequence+Start.asset"; public static string EntityStatesSolusHeartDeathSolusHeartDeathSequenceSwarmDeath = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartDeathSequence+SwarmDeath.asset"; public static string EntityStatesSolusHeartDeathSolusHeartFinaleSequenceDeath = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartFinaleSequence+Death.asset"; public static string EntityStatesSolusHeartDeathSolusHeartFinaleSequenceDigitalFrozenState = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartFinaleSequence+DigitalFrozenState.asset"; public static string EntityStatesSolusHeartDeathSolusHeartFinaleSequenceOffering = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartFinaleSequence+Offering.asset"; public static string EntityStatesSolusHeartDeathSolusHeartFinaleSequenceOfferingAccepted = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Death.SolusHeartFinaleSequence+OfferingAccepted.asset"; public static string EntityStatesSolusHeartCircleTransformation = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.CircleTransformation.asset"; public static string EntityStatesSolusHeartCutsceneTransformation = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.CutsceneTransformation.asset"; public static string EntityStatesSolusHeartGiantTransformation = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.GiantTransformation.asset"; public static string EntityStatesSolusHeartRattleThenTransform = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.RattleThenTransform.asset"; public static string EntityStatesSolusHeartRattleThenTransform2 = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.RattleThenTransform2.asset"; public static string EntityStatesSolusHeartSimpleTransformation = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.SimpleTransformation.asset"; public static string EntityStatesSolusHeartThresholdReachedStunned = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.ThresholdReachedStunned.asset"; public static string EntityStatesSolusHeartTinyTransformation = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TinyTransformation.asset"; public static string EntityStatesSolusHeartDeathMissionCompleted = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Death.MissionCompleted.asset"; public static string EntityStatesSolusHeartDeathSolusHeartDeathPhase = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Death.SolusHeartDeathPhase.asset"; public static string EntityStatesSolusHeartPhasePreFightMissionPreFight = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.PhasePreFight.MissionPreFight.asset"; public static string EntityStatesSolusHeartPhasePreFightSolusHeartPreFight = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.PhasePreFight.SolusHeartPreFight.asset"; public static string EntityStatesSolusHeartPhasePreFightCutsceneMissionPreFightCutscene = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.PhasePreFightCutscene.MissionPreFightCutscene.asset"; public static string EntityStatesSolusHeartPhasePreFightCutsceneSolusHeartPreFightCutscene = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.PhasePreFightCutscene.SolusHeartPreFightCutscene.asset"; public static string EntityStatesSolusHeartGiantSolusHeartGiant = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Giant.SolusHeartGiant.asset"; public static string EntityStatesSolusHeartGiantSolusHeartGiant2 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Giant.SolusHeartGiant2.asset"; public static string EntityStatesSolusHeartPhase0Mission0 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Phase0.Mission0.asset"; public static string EntityStatesSolusHeartPhase0SolusHeart0 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Phase0.SolusHeart0.asset"; public static string EntityStatesSolusHeartPhase1Mission1 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Phase1.Mission1.asset"; public static string EntityStatesSolusHeartPhase1SolusHeart1 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Phase1.SolusHeart1.asset"; public static string EntityStatesSolusHeartPhase2Mission2 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Phase2.Mission2.asset"; public static string EntityStatesSolusHeartPhase2SolusHeart2 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Phase2.SolusHeart2.asset"; public static string EntityStatesSolusHeartPhase4Mission4 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Phase4.Mission4.asset"; public static string EntityStatesSolusHeartPhase4SolusHeart4 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/EntityStates.SolusHeart.Phase4.SolusHeart4.asset"; public static string EntityStatesSolusHeartAwaitFiveSeconds = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Await+FiveSeconds.asset"; public static string EntityStatesSolusHeartAwaitOneSecond = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Await+OneSecond.asset"; public static string EntityStatesSolusHeartAwaitThreeSeconds = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Await+ThreeSeconds.asset"; public static string EntityStatesSolusHeartDDOS = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.DDOS.asset"; public static string EntityStatesSolusHeartDDOSDDOS3Fires = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.DDOS+DDOS_3Fires.asset"; public static string EntityStatesSolusHeartDDOSDDOS5Fires = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.DDOS+DDOS_5Fires.asset"; public static string EntityStatesSolusHeartDDOSDDOS7Fires = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.DDOS+DDOS_7Fires.asset"; public static string EntityStatesSolusHeartDDOSDDOSGiant = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.DDOS+DDOS_Giant.asset"; public static string EntityStatesSolusHeartDDOSGridAttack = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.DDOSGridAttack.asset"; public static string EntityStatesSolusHeartGroundSlamState = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.GroundSlamState.asset"; public static string EntityStatesSolusHeartGroundSlamState2 = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.GroundSlamState2.asset"; public static string EntityStatesSolusHeartFireOrbitalStrike = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.FireOrbitalStrike.asset"; public static string EntityStatesSolusHeartFireOrbitalStrikeReadLR = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.FireOrbitalStrike+ReadLR.asset"; public static string EntityStatesSolusHeartFireOrbitalStrikeQuickCast = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.FireOrbitalStrikeQuickCast.asset"; public static string EntityStatesSolusHeartFireOrbitalStrikeQuickCastFastProjectile = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.FireOrbitalStrikeQuickCastFastProjectile.asset"; public static string EntityStatesSolusHeartFireOrbitalStrikeSlowCast = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.FireOrbitalStrikeSlowCast.asset"; public static string EntityStatesSolusHeartFireOrbitalStrikeSuperQuickCast = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.FireOrbitalStrikeSuperQuickCast.asset"; public static string EntityStatesSolusHeartOrbitalStrikeBaseOrbitalStrikeState = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.OrbitalStrike.BaseOrbitalStrikeState.asset"; public static string EntityStatesSolusHeartOrbitalStrikeExpanding = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.OrbitalStrike.Expanding.asset"; public static string EntityStatesSolusHeartOrbitalStrikeIdle = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.OrbitalStrike.Idle.asset"; public static string EntityStatesSolusHeartOrbitalStrikeStart = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.OrbitalStrike.Start.asset"; public static string EntityStatesSolusHeartOrbitalStrikeWindDown = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.OrbitalStrike.WindDown.asset"; public static string BaseNodePathfindingState = "RoR2/DLC3/SolusHeart/BaseNodePathfindingState.asset"; public static string Initializing = "RoR2/DLC3/SolusHeart/Initializing.asset"; public static string MoveToNextNode = "RoR2/DLC3/SolusHeart/MoveToNextNode.asset"; public static string PathfinderIdle = "RoR2/DLC3/SolusHeart/PathfinderIdle.asset"; public static string WrapUp = "RoR2/DLC3/SolusHeart/WrapUp.asset"; public static string EntityStatesSolusHeartTeleportBaseState = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportBaseState.asset"; public static string EntityStatesSolusHeartTeleportComboStep = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportComboStep.asset"; public static string EntityStatesSolusHeartTeleportComboStepFiveTeleport = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportComboStep+FiveTeleport.asset"; public static string EntityStatesSolusHeartTeleportComboStepFiveTeleportProjectileless = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportComboStep+FiveTeleportProjectileless.asset"; public static string EntityStatesSolusHeartTeleportComboStepOneTeleport = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportComboStep+OneTeleport.asset"; public static string EntityStatesSolusHeartTeleportComboStepSevenTeleport = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportComboStep+SevenTeleport.asset"; public static string EntityStatesSolusHeartTeleportComboStepThreeTeleport = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportComboStep+ThreeTeleport.asset"; public static string EntityStatesSolusHeartTeleportForward = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportForward.asset"; public static string EntityStatesSolusHeartTeleportRandom = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportRandom.asset"; public static string EntityStatesSolusHeartTeleportThenCast = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportThenCast.asset"; public static string EntityStatesSolusHeartTeleportThenSetState = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.TeleportThenSetState.asset"; public static string SolusHeartTerrainShift = "RoR2/DLC3/SolusHeart/SolusHeart.TerrainShift.asset"; public static string EntityStatesSolusHeartUnderclock = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Underclock.asset"; public static string EntityStatesSolusHeartUnderclockQuickCast = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.UnderclockQuickCast.asset"; public static string EntityStatesSolusHeartUnderclockQuickCastLongLasting = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.UnderclockQuickCastLongLasting.asset"; public static string EntityStatesSolusHeartUnderclockSlowCast = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.UnderclockSlowCast.asset"; public static string EntityStatesSolusMineSpawnState = "RoR2/DLC3/SolusMine/EntityStates.SolusMine.SpawnState.asset"; public static string EntityStatesSolusMineDetonate = "RoR2/DLC3/SolusMine/EntityStates.SolusMine.Detonate.asset"; public static string EntityStatesSolusMineEarlyDetonate = "RoR2/DLC3/SolusMine/EntityStates.SolusMine.EarlyDetonate.asset"; public static string EntityStatesSolusMinePreDetonate = "RoR2/DLC3/SolusMine/EntityStates.SolusMine.PreDetonate.asset"; public static string EntityStatesSolusMineSolusMineMain = "RoR2/DLC3/SolusMine/EntityStates.SolusMine.SolusMineMain.asset"; public static string EntityStatesSolusWingDeathState = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.DeathState.asset"; public static string EntityStatesSolusWingFinalDeathState = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.FinalDeathState.asset"; public static string EntityStatesSolusWingSolusWingCharacterMain = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.SolusWingCharacterMain.asset"; public static string EntityStatesSolusWingSpawnState = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.SpawnState.asset"; public static string EntityStatesSolusWingBodyEnterGlitch = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.BodyEnterGlitch.asset"; public static string EntityStatesSolusWingGlitchState = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.GlitchState.asset"; public static string EntityStatesSolusWingSummonEliteVultures = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.SummonEliteVultures.asset"; public static string EntityStatesSolusWingThresholdShield = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.ThresholdShield.asset"; public static string EntityStatesSolusWingGravPulse = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.GravPulse.asset"; public static string EntityStatesSolusWingGravPulseGlitched = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.GravPulseGlitched.asset"; public static string EntityStatesSolusWingFlyState = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.FlyState.asset"; public static string EntityStatesSolusWingHoverState = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.HoverState.asset"; public static string EntityStatesSolusWingStationaryState = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.StationaryState.asset"; public static string EntityStatesSolusWingFireFromAllWeakpoints = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.FireFromAllWeakpoints.asset"; public static string EntityStatesSolusWingFireLaserBurstBlast = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.FireLaserBurstBlast.asset"; public static string EntityStatesSolusWingRepeatFireFromAllWeakpoints = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.RepeatFireFromAllWeakpoints.asset"; public static string EntityStateSolusWIngSuppressionCue = "RoR2/DLC3/SolusWing/EntityState.SolusWIng.SuppressionCue.asset"; public static string EntityStateSolusWIngSuppressionFire = "RoR2/DLC3/SolusWing/EntityState.SolusWIng.SuppressionFire.asset"; public static string EntityStateSolusWingExpandingLaserCue = "RoR2/DLC3/SolusWing/EntityState.SolusWing.ExpandingLaserCue.asset"; public static string EntityStateSolusWingExpandingLaserFire = "RoR2/DLC3/SolusWing/EntityState.SolusWing.ExpandingLaserFire.asset"; public static string EntityStatesSolusWingSolusWingOverheatBeamBaseState = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.SolusWingOverheatBeamBaseState.asset"; public static string EntityStatesSolusWingSolusWingOverheatBeamChargeUp = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.SolusWingOverheatBeamChargeUp.asset"; public static string EntityStatesSolusWingSolusWingOverheatBeamChargeUpGlitched = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.SolusWingOverheatBeamChargeUpGlitched.asset"; public static string EntityStatesSolusWingSolusWingOverheatLaser = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.SolusWingOverheatLaser.asset"; public static string EntityStatesSolusWingSolusWingOverheatLaserGlitched = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.SolusWingOverheatLaserGlitched.asset"; public static string EntityStatesMissionsSolutionalHauntSolusWingBossEncounterLaserGridChargeLaserGridState = "RoR2/DLC3/SolusWing/EntityStates.Missions.SolutionalHaunt.SolusWingBossEncounter.LaserGrid.ChargeLaserGridState.asset"; public static string EntityStatesMissionsSolutionalHauntSolusWingBossEncounterLaserGridFireLaserGridState = "RoR2/DLC3/SolusWing/EntityStates.Missions.SolutionalHaunt.SolusWingBossEncounter.LaserGrid.FireLaserGridState.asset"; public static string EntityStatesSolusWingRequestLaserGridActvation = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.RequestLaserGridActvation.asset"; public static string EntityStatesSolusWingWeakPointDeathState = "RoR2/DLC3/SolusWing/EntityStates.SolusWing.WeakPoint.DeathState.asset"; public static string EntityStatesSolusWingPodExtinguisherActiveState = "RoR2/DLC3/SolusWingForm1/EntityStates.SolusWing.Pod.ExtinguisherActiveState.asset"; public static string EntityStatesSolusWingPodExtinguisherPodDeathState = "RoR2/DLC3/SolusWingForm1/EntityStates.SolusWing.Pod.ExtinguisherPodDeathState.asset"; public static string EntityStatesSolusWingPodPodDeathState = "RoR2/DLC3/SolusWingForm1/EntityStates.SolusWing.Pod.PodDeathState.asset"; public static string EntityStatesSolusWingPodPodDeathState2 = "RoR2/DLC3/SolusWingForm1/EntityStates.SolusWing.Pod.PodDeathState2.asset"; public static string EntityStatesSolusWingPodPodMainState = "RoR2/DLC3/SolusWingForm1/EntityStates.SolusWing.Pod.PodMainState.asset"; public static string EntityStatesTankerDeathState = "RoR2/DLC3/Tanker/EntityStates.Tanker.DeathState.asset"; public static string EntityStatesTankerSpawnState = "RoR2/DLC3/Tanker/EntityStates.Tanker.SpawnState.asset"; public static string EntityStatesTankerGreasePuddleGreasePuddleDeath = "RoR2/DLC3/Tanker/EntityStates.Tanker.GreasePuddle.GreasePuddleDeath.asset"; public static string EntityStatesTankerGreasePuddleIdle = "RoR2/DLC3/Tanker/EntityStates.Tanker.GreasePuddle.Idle.asset"; public static string EntityStatesTankerGreasePuddleIgniteGrease = "RoR2/DLC3/Tanker/EntityStates.Tanker.GreasePuddle.IgniteGrease.asset"; public static string EntityStatesTankerAccelerant = "RoR2/DLC3/Tanker/EntityStates.Tanker.Accelerant.asset"; public static string EntityStatesTankerIgnite = "RoR2/DLC3/Tanker/EntityStates.Tanker.Ignite.asset"; public static string EntityStatesSolusVendorSolusVendorMainState = "RoR2/DLC3/EntityStates.SolusVendor.SolusVendorMainState.asset"; public static string EntityStatesSolusVendorSpawnState = "RoR2/DLC3/EntityStates.SolusVendor.SpawnState.asset"; public static string EntityStatesSolusVendorStealItem = "RoR2/DLC3/EntityStates.SolusVendor.StealItem.asset"; public static string EntityStatesVultureHunterBodyAimTeleportSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.AimTeleportSpear.asset"; public static string EntityStatesVultureHunterBodyBombingRun = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.BombingRun.asset"; public static string EntityStatesVultureHunterBodyBombingRunLaser = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.BombingRunLaser.asset"; public static string EntityStatesVultureHunterBodyCheckBombingRun = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.CheckBombingRun.asset"; public static string EntityStatesVultureHunterBodyCheckBombingRunLaser = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.CheckBombingRunLaser.asset"; public static string EntityStatesVultureHunterBodyDelayAndCheckFlyToSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.DelayAndCheckFlyToSpear.asset"; public static string EntityStatesVultureHunterBodyDoMurder = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.DoMurder.asset"; public static string EntityStatesVultureHunterBodyFlyToSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.FlyToSpear.asset"; public static string EntityStatesVultureHunterBodyOnSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.OnSpear.asset"; public static string EntityStatesVultureHunterBodyResetSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.ResetSpear.asset"; public static string EntityStatesVultureHunterBodyReturnToAir = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.ReturnToAir.asset"; public static string EntityStatesVultureHunterBodySpawnAfterMuder = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.SpawnAfterMuder.asset"; public static string EntityStatesVultureHunterBodyStrafe = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.Strafe.asset"; public static string EntityStatesVultureHunterBodyTeleportToSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.TeleportToSpear.asset"; public static string EntityStatesVultureHunterBodyThrowSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.ThrowSpear.asset"; public static string EntityStatesVultureHunterBodyThrowTeleportSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.ThrowTeleportSpear.asset"; public static string EntityStatesVultureHunterBodyWaitForSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Body.WaitForSpear.asset"; public static string EntityStatesVultureHunterDeathExplodeAirState = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.DeathExplodeAirState.asset"; public static string EntityStatesVultureHunterDeathState = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.DeathState.asset"; public static string EntityStatesVultureHunterFlightFlying = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Flight.Flying.asset"; public static string EntityStatesVultureHunterFlightLanded = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Flight.Landed.asset"; public static string EntityStatesVultureHunterSpearGroundSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Spear.GroundSpear.asset"; public static string EntityStatesVultureHunterSpearHeldSpear = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Spear.HeldSpear.asset"; public static string EntityStatesVultureHunterWeaponCalldown = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Weapon.Calldown.asset"; public static string EntityStatesVultureHunterWeaponChargeSolusLaser = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Weapon.ChargeSolusLaser.asset"; public static string EntityStatesVultureHunterWeaponFireSolusLaser = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Weapon.FireSolusLaser.asset"; public static string EntityStatesVultureHunterWeaponTargetedCalldown = "RoR2/DLC3/VultureHunter/EntityStates.VultureHunter.Weapon.TargetedCalldown.asset"; public static string EntityStatesWorkerUnitDeathState = "RoR2/DLC3/WorkerUnit/EntityStates.WorkerUnit.DeathState.asset"; public static string EntityStatesWorkerUnitSpawnState = "RoR2/DLC3/WorkerUnit/EntityStates.WorkerUnit.SpawnState.asset"; public static string EntityStatesWorkerUnitFireDrillDash = "RoR2/DLC3/WorkerUnit/EntityStates.WorkerUnit.FireDrillDash.asset"; public static string EntityStatesWorkerUnitWindUpDrillDash = "RoR2/DLC3/WorkerUnit/EntityStates.WorkerUnit.WindUpDrillDash.asset"; public static string TauntedStateConfiguration = "RoR2/DLC3/Taunted State Configuration.asset"; public static string EntityStatesMissionsAccessCodesNodeAccessNodesBaseState = "RoR2/DLC3/AccessCodesNode/EntityStates.Missions.AccessCodes.Node.AccessNodesBaseState.asset"; public static string EntityStatesMissionsAccessCodesNodeComplete = "RoR2/DLC3/AccessCodesNode/EntityStates.Missions.AccessCodes.Node.Complete.asset"; public static string EntityStatesMissionsAccessCodesNodeNodeAccessed = "RoR2/DLC3/AccessCodesNode/EntityStates.Missions.AccessCodes.Node.NodeAccessed.asset"; public static string EntityStatesMissionsAccessCodesNodeNodeActive = "RoR2/DLC3/AccessCodesNode/EntityStates.Missions.AccessCodes.Node.NodeActive.asset"; public static string EntityStatesMissionsAccessCodesNodeNodeReset = "RoR2/DLC3/AccessCodesNode/EntityStates.Missions.AccessCodes.Node.NodeReset.asset"; public static string EntityStatesMissionsAccessCodesNodeNodesOnAndReady = "RoR2/DLC3/AccessCodesNode/EntityStates.Missions.AccessCodes.Node.NodesOnAndReady.asset"; public static string EntityStatesMissionsAccessCodesNodeOff = "RoR2/DLC3/AccessCodesNode/EntityStates.Missions.AccessCodes.Node.Off.asset"; public static string EntityStatesMissionsSolutionalHauntVaultRewardsBaseVaultRewardInteractable = "RoR2/DLC3/BrokenHAND/EntityStates.Missions.SolutionalHaunt.VaultRewards.BaseVaultRewardInteractable.asset"; public static string EntityStatesCoinSlotGrowFlowersState = "RoR2/DLC3/CoinSlot/EntityStates.CoinSlot.GrowFlowersState.asset"; public static string EntityStatesCoinSlotIdle = "RoR2/DLC3/CoinSlot/EntityStates.CoinSlot.Idle.asset"; public static string EntityStatesMissionsSolutionalHauntVaultRewardsDrifterBagChestInteractable = "RoR2/DLC3/DrifterBagChest/EntityStates.Missions.SolutionalHaunt.VaultRewards.DrifterBagChestInteractable.asset"; public static string EntityStatesDroneAssemblyStationAssemblingDrone = "RoR2/DLC3/DroneAssemblyStation/EntityStates.DroneAssemblyStation.AssemblingDrone.asset"; public static string EntityStatesDroneAssemblySyatationAssembleDrone = "RoR2/DLC3/DroneAssemblyStation/EntityStates.DroneAssemblySyatation.AssembleDrone.asset"; public static string EntityStatesDroneCombinerDroneCombinerCombining = "RoR2/DLC3/DroneCombinerStation/EntityStates.DroneCombiner.DroneCombinerCombining.asset"; public static string EntityStatesDroneScrapperIdle = "RoR2/DLC3/DroneScrapper/EntityStates.DroneScrapper.Idle.asset"; public static string EntityStatesScrapperDroneScrapperBaseState = "RoR2/DLC3/DroneScrapper/EntityStates.Scrapper.DroneScrapperBaseState.asset"; public static string EntityStatesScrapperScrappingDrone = "RoR2/DLC3/DroneScrapper/EntityStates.Scrapper.ScrappingDrone.asset"; public static string EntityStatesScrapperScrappingDroneToIdle = "RoR2/DLC3/DroneScrapper/EntityStates.Scrapper.ScrappingDroneToIdle.asset"; public static string EntityStatesScrapperWaitToBeginScrappingDrone = "RoR2/DLC3/DroneScrapper/EntityStates.Scrapper.WaitToBeginScrappingDrone.asset"; public static string EntityStatesDroneVendorAssumeIdleState = "RoR2/DLC3/TripleDroneShop/EntityStates.DroneVendor.AssumeIdleState.asset"; public static string EntityStatesDroneVendorDispatchDroneState = "RoR2/DLC3/TripleDroneShop/EntityStates.DroneVendor.DispatchDroneState.asset"; public static string EntityStatesDroneVendorDispatchDroneState36 = "RoR2/DLC3/TripleDroneShopTerminal/EntityStates.DroneVendor.DispatchDroneState.asset"; public static string EntityStatesFriendUnitUnlockInteractableUnlock = "RoR2/DLC3/FriendUnitUnlockInteractable/EntityStates.FriendUnit.UnlockInteractable.Unlock.asset"; public static string EntityStatesMealPrepCooking = "RoR2/DLC3/MealPrep/EntityStates.MealPrep.Cooking.asset"; public static string EntityStatesMealPrepCookingToIdle = "RoR2/DLC3/MealPrep/EntityStates.MealPrep.CookingToIdle.asset"; public static string EntityStatesMealPrepMealPrepBaseState = "RoR2/DLC3/MealPrep/EntityStates.MealPrep.MealPrepBaseState.asset"; public static string EntityStatesMealPrepMealPrepIdle = "RoR2/DLC3/MealPrep/EntityStates.MealPrep.MealPrepIdle.asset"; public static string EntityStatesMealPrepWaitToBeginCooking = "RoR2/DLC3/MealPrep/EntityStates.MealPrep.WaitToBeginCooking.asset"; public static string ConduitCanyonShieldWallActiveState = "RoR2/DLC3/ConduitCanyonShieldWall_ActiveState.asset"; public static string ConduitCanyonShieldWallDeactivate = "RoR2/DLC3/ConduitCanyonShieldWall_Deactivate.asset"; public static string EntityStatesDestructiblePowerOrbShieldTankDeath = "RoR2/DLC3/PowerOrbShieldTank/EntityStates.Destructible.PowerOrbShieldTankDeath.asset"; public static string EntityStatesMissionsSolutionalHauntPylonActive = "RoR2/DLC3/EntityStates.Missions.SolutionalHaunt.Pylon.Active.asset"; public static string EntityStatesMissionsSolutionalHauntPylonComplete = "RoR2/DLC3/EntityStates.Missions.SolutionalHaunt.Pylon.Complete.asset"; public static string EntityStatesMissionsSolutionalHauntPylonOff = "RoR2/DLC3/EntityStates.Missions.SolutionalHaunt.Pylon.Off.asset"; public static string EntityStatesMissionsSolutionalHauntPylonPylonBaseState = "RoR2/DLC3/EntityStates.Missions.SolutionalHaunt.Pylon.PylonBaseState.asset"; public static string EntityStatesMissionsSolutionalHauntPylonPylonOnAndReady = "RoR2/DLC3/EntityStates.Missions.SolutionalHaunt.Pylon.PylonOnAndReady.asset"; public static string EntityStatesSolusVendorShrineDisabled = "RoR2/DLC3/SolusVendorShrine/EntityStates.SolusVendorShrine.Disabled.asset"; public static string EntityStatesSolusVendorShrineDropItem = "RoR2/DLC3/SolusVendorShrine/EntityStates.SolusVendorShrine.DropItem.asset"; public static string EntityStatesSolusVendorShrineIdle = "RoR2/DLC3/SolusVendorShrine/EntityStates.SolusVendorShrine.Idle.asset"; public static string EntityStatesDistributorDistributeItems = "RoR2/DLC3/TemporaryItemsDistributor/EntityStates.Distributor.DistributeItems.asset"; public static string EntityStatesDistributorDistributorIdle = "RoR2/DLC3/TemporaryItemsDistributor/EntityStates.Distributor.DistributorIdle.asset"; public static string EntityStatesDistributorIdleToDistributeItems = "RoR2/DLC3/TemporaryItemsDistributor/EntityStates.Distributor.IdleToDistributeItems.asset"; public static string EntityStatesComputationalExchangeAwake = "RoR2/DLC3/computationalexchange/EntityStates.ComputationalExchange.Awake.asset"; public static string EntityStatesComputationalExchangeSolusWebPortalOpenned = "RoR2/DLC3/computationalexchange/EntityStates.ComputationalExchange.SolusWebPortalOpenned.asset"; public static string EntityStatesComputationalExchangeSolusWebPortalSequence = "RoR2/DLC3/computationalexchange/EntityStates.ComputationalExchange.SolusWebPortalSequence.asset"; public static string EntityStatesComputationalExchangeWakeUp = "RoR2/DLC3/computationalexchange/EntityStates.ComputationalExchange.WakeUp.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventIdle = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventIdle.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventMakeEliteVulnerable = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventMakeEliteVulnerable.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventOpenDoor = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventOpenDoor.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventOpenExhaustPorts = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventOpenExhaustPorts.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventRevealTank = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventRevealTank.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventSpawnBoss = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventSpawnBoss.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventSpawnEnemy = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventSpawnEnemy.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventSpawnInvulnerableElite = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventSpawnInvulnerableElite.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventSpawnOrb = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventSpawnOrb.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventSpawnPortal = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventSpawnPortal.asset"; public static string EntityStatesMissionsRepurposedCraterPowerOrbEventStartEvent = "RoR2/DLC3/repurposedcrater/EntityStates.Missions.RepurposedCrater.PowerOrbEventStartEvent.asset"; public static string EntityStatesDestructibleDrifterTankDeathState = "RoR2/DLC3/solutionalhaunt/EntityStates.Destructible.DrifterTankDeathState.asset"; public static string EntityStatesDestructibleDrifterTankSpawnState = "RoR2/DLC3/solutionalhaunt/EntityStates.Destructible.DrifterTankSpawnState.asset"; public static string RoR2SolusWingSolusWingLaserGridControllerLaserGridCooldownState = "RoR2/DLC3/solutionalhaunt/RoR2.SolusWing.SolusWingLaserGridController+LaserGridCooldownState.asset"; public static string RoR2SolusWingSolusWingLaserGridControllerLaserGridRoutineState = "RoR2/DLC3/solutionalhaunt/RoR2.SolusWing.SolusWingLaserGridController+LaserGridRoutineState.asset"; public static string RoR2SolusWingSolusWingLaserGridControllerLaserGridWarmDownState = "RoR2/DLC3/solutionalhaunt/RoR2.SolusWing.SolusWingLaserGridController+LaserGridWarmDownState.asset"; public static string RoR2SolusWingSolusWingLaserGridControllerLaserGridWarmUpState = "RoR2/DLC3/solutionalhaunt/RoR2.SolusWing.SolusWingLaserGridController+LaserGridWarmUpState.asset"; public static string EntityStatesSolusWing2BaseMissionStateSettings = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing2.BaseMissionStateSettings.asset"; public static string EntityStatesSolusWIng2Mission0ACutscene = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWIng2.Mission0ACutscene.asset"; public static string EntityStatesSolusWing2Mission0PreFight = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing2.Mission0PreFight.asset"; public static string EntityStatesSolusWing2Mission1Tunnel = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing2.Mission1Tunnel.asset"; public static string EntityStatesSolusWing2Mission2Fight = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing2.Mission2Fight.asset"; public static string EntityStatesSolusWing2Mission3Darkness = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing2.Mission3Darkness.asset"; public static string EntityStatesSolusWing2Mission4Desperation = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing2.Mission4Desperation.asset"; public static string EntityStatesSolusWing2Mission5Death = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing2.Mission5Death.asset"; public static string EntityStatesSolusWingPostFightFalling = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing.PostFight.Falling.asset"; public static string EntityStatesSolusWingPostFightSpawnEyePortal = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing.PostFight.SpawnEyePortal.asset"; public static string EntityStatesSolusWingPostFightBaseState = "RoR2/DLC3/solutionalhaunt/EntityStates.SolusWing.PostFightBaseState.asset"; public static string EntityStatesMissionsSolutionalHauntSolusWingBossEncounterEncounterFinished = "RoR2/DLC3/solutionalhaunt/EntityStates.Missions.SolutionalHaunt.SolusWingBossEncounter.EncounterFinished.asset"; public static string EntityStatesAncientWispMonsterChannelRain = "RoR2/Junk/AncientWisp/EntityStates.AncientWispMonster.ChannelRain.asset"; public static string EntityStatesAncientWispMonsterChargeBomb = "RoR2/Junk/AncientWisp/EntityStates.AncientWispMonster.ChargeBomb.asset"; public static string EntityStatesAncientWispMonsterChargeRain = "RoR2/Junk/AncientWisp/EntityStates.AncientWispMonster.ChargeRain.asset"; public static string EntityStatesAncientWispMonsterChargeRHCannon = "RoR2/Junk/AncientWisp/EntityStates.AncientWispMonster.ChargeRHCannon.asset"; public static string EntityStatesAncientWispMonsterEndRain = "RoR2/Junk/AncientWisp/EntityStates.AncientWispMonster.EndRain.asset"; public static string EntityStatesAncientWispMonsterEnrage = "RoR2/Junk/AncientWisp/EntityStates.AncientWispMonster.Enrage.asset"; public static string EntityStatesAncientWispMonsterFireBomb = "RoR2/Junk/AncientWisp/EntityStates.AncientWispMonster.FireBomb.asset"; public static string EntityStatesAncientWispMonsterFireRHCannon = "RoR2/Junk/AncientWisp/EntityStates.AncientWispMonster.FireRHCannon.asset"; public static string EntityStatesAncientWispMonsterThrow = "RoR2/Junk/AncientWisp/EntityStates.AncientWispMonster.Throw.asset"; public static string EntityStatesArchWispMonsterDeathState = "RoR2/Junk/ArchWisp/EntityStates.ArchWispMonster.DeathState.asset"; public static string EntityStatesArchWispMonsterChargeCannons = "RoR2/Junk/ArchWisp/EntityStates.ArchWispMonster.ChargeCannons.asset"; public static string EntityStatesArchWispMonsterFireCannons = "RoR2/Junk/ArchWisp/EntityStates.ArchWispMonster.FireCannons.asset"; public static string EntityStatesAssassinWeaponSlashCombo = "RoR2/Junk/Assassin/EntityStates.Assassin.Weapon.SlashCombo.asset"; public static string EntityStatesCommandoCommandoWeaponCastSmokescreen = "RoR2/Junk/Bandit/EntityStates.Commando.CommandoWeapon.CastSmokescreen.asset"; public static string EntityStatesCommandoCommandoWeaponCastSmokescreenNoDelay = "RoR2/Junk/Bandit/EntityStates.Commando.CommandoWeapon.CastSmokescreenNoDelay.asset"; public static string EntityStatesCommandoCommandoWeaponFireLightsOut = "RoR2/Junk/Bandit/EntityStates.Commando.CommandoWeapon.FireLightsOut.asset"; public static string EntityStatesCommandoCommandoWeaponFireShotgun = "RoR2/Junk/Bandit/EntityStates.Commando.CommandoWeapon.FireShotgun.asset"; public static string EntityStatesCommandoCommandoWeaponFireThermite = "RoR2/Junk/Bandit/EntityStates.Commando.CommandoWeapon.FireThermite.asset"; public static string EntityStatesCommandoCommandoWeaponPrepLightsOut = "RoR2/Junk/Bandit/EntityStates.Commando.CommandoWeapon.PrepLightsOut.asset"; public static string EntityStatesBeetleMonsterMainState = "RoR2/Junk/Beetle/EntityStates.BeetleMonster.MainState.asset"; public static string EntityStatesBeetleMonsterMeleeState = "RoR2/Junk/Beetle/EntityStates.BeetleMonster.MeleeState.asset"; public static string EntityStatesBeetleQueenMonsterWeakState = "RoR2/Junk/BeetleQueen/EntityStates.BeetleQueenMonster.WeakState.asset"; public static string EntityStatesBeetleQueenMonsterBeginBurrow = "RoR2/Junk/BeetleQueen/EntityStates.BeetleQueenMonster.BeginBurrow.asset"; public static string EntityStatesBellBellWeaponBuffBeam = "RoR2/Junk/Bell/EntityStates.Bell.BellWeapon.BuffBeam.asset"; public static string EntityStatesCommandoCommandoWeaponFireRocket = "RoR2/Junk/Bomber/EntityStates.Commando.CommandoWeapon.FireRocket.asset"; public static string EntityStatesBrotherMonsterThroneSpawnState = "RoR2/Junk/Brother/EntityStates.BrotherMonster.ThroneSpawnState.asset"; public static string EntityStatesCaptainWeaponCallSupplyDropForce = "RoR2/Junk/Captain/EntityStates.Captain.Weapon.CallSupplyDropForce.asset"; public static string EntityStatesCaptainWeaponCallSupplyDropPlating = "RoR2/Junk/Captain/EntityStates.Captain.Weapon.CallSupplyDropPlating.asset"; public static string EntityStatesCaptainSupplyDropDepletionState = "RoR2/Junk/Captain/EntityStates.CaptainSupplyDrop.DepletionState.asset"; public static string EntityStatesCaptainSupplyDropPreDepletionState = "RoR2/Junk/Captain/EntityStates.CaptainSupplyDrop.PreDepletionState.asset"; public static string EntityStatesClaymanMonsterSpawnState = "RoR2/Junk/ClayMan/EntityStates.ClaymanMonster.SpawnState.asset"; public static string EntityStatesClaymanMonsterLeap = "RoR2/Junk/ClayMan/EntityStates.ClaymanMonster.Leap.asset"; public static string EntityStatesClaymanMonsterSwipeForward = "RoR2/Junk/ClayMan/EntityStates.ClaymanMonster.SwipeForward.asset"; public static string EntityStatesCommandoMainState = "RoR2/Junk/Commando/EntityStates.Commando.MainState.asset"; public static string EntityStatesCommandoCombatDodge = "RoR2/Junk/Commando/EntityStates.Commando.CombatDodge.asset"; public static string EntityStatesCommandoCommandoWeaponFireShrapnel = "RoR2/Junk/Commando/EntityStates.Commando.CommandoWeapon.FireShrapnel.asset"; public static string EntityStatesCommandoCommandoWeaponFireSweepBarrage = "RoR2/Junk/Commando/EntityStates.Commando.CommandoWeapon.FireSweepBarrage.asset"; public static string EntityStatesCommandoCommandoWeaponPrepBarrage = "RoR2/Junk/Commando/EntityStates.Commando.CommandoWeapon.PrepBarrage.asset"; public static string EntityStatesCommandoCommandoWeaponThrowStickyGrenade = "RoR2/Junk/Commando/EntityStates.Commando.CommandoWeapon.ThrowStickyGrenade.asset"; public static string EntityStatesCommandoCommandoWeaponFireBarrage = "RoR2/Junk/CommandoPerformanceTest/EntityStates.Commando.CommandoWeapon.FireBarrage.asset"; public static string EntityStatesCrocoDisease = "RoR2/Junk/Croco/EntityStates.Croco.Disease.asset"; public static string EntityStatesEngiEngiWallShieldDeployed = "RoR2/Junk/Engi/EntityStates.Engi.EngiWallShield.Deployed.asset"; public static string EntityStatesEngiEngiWallShieldUndeployed = "RoR2/Junk/Engi/EntityStates.Engi.EngiWallShield.Undeployed.asset"; public static string EntityStatesEngiMineDeployerBaseMineDeployerState = "RoR2/Junk/Engi/EntityStates.Engi.MineDeployer.BaseMineDeployerState.asset"; public static string EntityStatesEngiMineDeployerFireMine = "RoR2/Junk/Engi/EntityStates.Engi.MineDeployer.FireMine.asset"; public static string EntityStatesEngiMineDeployerWaitForDeath = "RoR2/Junk/Engi/EntityStates.Engi.MineDeployer.WaitForDeath.asset"; public static string EntityStatesEngiMineDeployerWaitForStick = "RoR2/Junk/Engi/EntityStates.Engi.MineDeployer.WaitForStick.asset"; public static string EntityStatesEngiEngiMissilePainterStartup = "RoR2/Junk/Engi/EntityStates.Engi.EngiMissilePainter.Startup.asset"; public static string EntityStatesEngiEngiWeaponEngiOtherShield = "RoR2/Junk/Engi/EntityStates.Engi.EngiWeapon.EngiOtherShield.asset"; public static string EntityStatesEngiEngiWeaponEngiSelfShield = "RoR2/Junk/Engi/EntityStates.Engi.EngiWeapon.EngiSelfShield.asset"; public static string EntityStatesEngiEngiWeaponEngiTeamShield = "RoR2/Junk/Engi/EntityStates.Engi.EngiWeapon.EngiTeamShield.asset"; public static string EntityStatesEngiEngiWeaponFireConcussionBlast = "RoR2/Junk/Engi/EntityStates.Engi.EngiWeapon.FireConcussionBlast.asset"; public static string EntityStatesEngiEngiWeaponFireSeekerGrenades = "RoR2/Junk/Engi/EntityStates.Engi.EngiWeapon.FireSeekerGrenades.asset"; public static string EntityStatesEngiEngiWeaponFireWallShield = "RoR2/Junk/Engi/EntityStates.Engi.EngiWeapon.FireWallShield.asset"; public static string EntityStatesEngiEngiWeaponThrowMineDeployer = "RoR2/Junk/Engi/EntityStates.Engi.EngiWeapon.ThrowMineDeployer.asset"; public static string EntityStatesGrandParentBossOffspring = "RoR2/Junk/GrandParent/EntityStates.GrandParentBoss.Offspring.asset"; public static string EntityStatesGrandParentBossPortalFist = "RoR2/Junk/GrandParent/EntityStates.GrandParentBoss.PortalFist.asset"; public static string EntityStatesGrandParentBossPortalJump = "RoR2/Junk/GrandParent/EntityStates.GrandParentBoss.PortalJump.asset"; public static string EntityStatesGrandParentBossSpiritPull = "RoR2/Junk/GrandParent/EntityStates.GrandParentBoss.SpiritPull.asset"; public static string EntityStatesHANDOverclock = "RoR2/Junk/HAND/EntityStates.HAND.Overclock.asset"; public static string EntityStatesHANDWeaponChargeSlam = "RoR2/Junk/HAND/EntityStates.HAND.Weapon.ChargeSlam.asset"; public static string EntityStatesHANDWeaponFireWinch = "RoR2/Junk/HAND/EntityStates.HAND.Weapon.FireWinch.asset"; public static string EntityStatesHANDWeaponFullSwing = "RoR2/Junk/HAND/EntityStates.HAND.Weapon.FullSwing.asset"; public static string EntityStatesHANDWeaponSlam = "RoR2/Junk/HAND/EntityStates.HAND.Weapon.Slam.asset"; public static string EntityStatesHuntressHuntressWeaponIdleTracking = "RoR2/Junk/Huntress/EntityStates.Huntress.HuntressWeapon.IdleTracking.asset"; public static string EntityStatesHuntressBackflipState = "RoR2/Junk/Huntress/EntityStates.Huntress.BackflipState.asset"; public static string EntityStatesHuntressHuntressWeaponChargeArrow = "RoR2/Junk/Huntress/EntityStates.Huntress.HuntressWeapon.ChargeArrow.asset"; public static string EntityStatesHuntressHuntressWeaponFireArrow = "RoR2/Junk/Huntress/EntityStates.Huntress.HuntressWeapon.FireArrow.asset"; public static string EntityStatesHuntressHuntressWeaponFireArrowOld = "RoR2/Junk/Huntress/EntityStates.Huntress.HuntressWeapon.FireArrowOld.asset"; public static string EntityStatesHuntressHuntressWeaponFireGlaive = "RoR2/Junk/Huntress/EntityStates.Huntress.HuntressWeapon.FireGlaive.asset"; public static string EntityStatesImpMonsterBackstab = "RoR2/Junk/Imp/EntityStates.ImpMonster.Backstab.asset"; public static string EntityStatesImpMonsterChargeSpines = "RoR2/Junk/Imp/EntityStates.ImpMonster.ChargeSpines.asset"; public static string EntityStatesImpMonsterFireSpines = "RoR2/Junk/Imp/EntityStates.ImpMonster.FireSpines.asset"; public static string EntityStatesJellyfishDash = "RoR2/Junk/Jellyfish/EntityStates.Jellyfish.Dash.asset"; public static string EntityStatesJellyfishSwimState = "RoR2/Junk/Jellyfish/EntityStates.Jellyfish.SwimState.asset"; public static string EntityStatesLemurianMonsterLeapAttackState = "RoR2/Junk/Lemurian/EntityStates.LemurianMonster.LeapAttackState.asset"; public static string EntityStatesLoaderBeginOvercharge = "RoR2/Junk/Loader/EntityStates.Loader.BeginOvercharge.asset"; public static string EntityStatesLoaderBigPunch = "RoR2/Junk/Loader/EntityStates.Loader.BigPunch.asset"; public static string EntityStatesMageCalibrate = "RoR2/Junk/Mage/EntityStates.MageCalibrate.asset"; public static string EntityStatesMageWeaponChargeMeteor = "RoR2/Junk/Mage/EntityStates.Mage.Weapon.ChargeMeteor.asset"; public static string EntityStatesMageWeaponFireIceBolt = "RoR2/Junk/Mage/EntityStates.Mage.Weapon.FireIceBolt.asset"; public static string EntityStatesMageWeaponFireIceOrb = "RoR2/Junk/Mage/EntityStates.Mage.Weapon.FireIceOrb.asset"; public static string EntityStatesMageWeaponFireLaserbolt = "RoR2/Junk/Mage/EntityStates.Mage.Weapon.FireLaserbolt.asset"; public static string EntityStatesMageWeaponFireRoller = "RoR2/Junk/Mage/EntityStates.Mage.Weapon.FireRoller.asset"; public static string EntityStatesMageWeaponIceNova = "RoR2/Junk/Mage/EntityStates.Mage.Weapon.IceNova.asset"; public static string EntityStatesMagmaWormLeap = "RoR2/Junk/MagmaWorm/EntityStates.MagmaWorm.Leap.asset"; public static string EntityStatesMercAssaulter = "RoR2/Junk/Merc/EntityStates.Merc.Assaulter.asset"; public static string EntityStatesMercGroundLight = "RoR2/Junk/Merc/EntityStates.Merc.GroundLight.asset"; public static string EntityStatesPaladinDashSlam = "RoR2/Junk/Paladin/EntityStates.Paladin.DashSlam.asset"; public static string EntityStatesPaladinLeapSlam = "RoR2/Junk/Paladin/EntityStates.Paladin.LeapSlam.asset"; public static string EntityStatesPaladinPaladinWeaponBarrierUp = "RoR2/Junk/Paladin/EntityStates.Paladin.PaladinWeapon.BarrierUp.asset"; public static string EntityStatesPaladinPaladinWeaponFireBigRocket = "RoR2/Junk/Paladin/EntityStates.Paladin.PaladinWeapon.FireBigRocket.asset"; public static string EntityStatesPaladinPaladinWeaponFireRocket = "RoR2/Junk/Paladin/EntityStates.Paladin.PaladinWeapon.FireRocket.asset"; public static string EntityStatesPotPotWeaponFireCannon = "RoR2/Junk/PotMobile/EntityStates.Pot.PotWeapon.FireCannon.asset"; public static string EntityStatesRoboBallBossWeaponEnableEyebeams = "RoR2/Junk/RoboBallBoss/EntityStates.RoboBallBoss.Weapon.EnableEyebeams.asset"; public static string EntityStatesRoboBallBossWeaponFireSpinningEyeBeam = "RoR2/Junk/RoboBallBoss/EntityStates.RoboBallBoss.Weapon.FireSpinningEyeBeam.asset"; public static string EntityStatesLockSkill = "RoR2/Junk/Sniper/EntityStates.LockSkill.asset"; public static string EntityStatesSniperScopeScopeSniper = "RoR2/Junk/Sniper/EntityStates.Sniper.Scope.ScopeSniper.asset"; public static string EntityStatesSniperSniperWeaponFireRifle = "RoR2/Junk/Sniper/EntityStates.Sniper.SniperWeapon.FireRifle.asset"; public static string EntityStatesSniperSniperWeaponReload = "RoR2/Junk/Sniper/EntityStates.Sniper.SniperWeapon.Reload.asset"; public static string EntityStatesSquidSquidDeathState = "RoR2/Junk/Squid/EntityStates.Squid.SquidDeathState.asset"; public static string EntityStatesToolbotAimHealDrone = "RoR2/Junk/Toolbot/EntityStates.Toolbot.AimHealDrone.asset"; public static string EntityStatesToolbotChargeSpear = "RoR2/Junk/Toolbot/EntityStates.Toolbot.ChargeSpear.asset"; public static string EntityStatesToolbotDroneProjectileHoverHeal = "RoR2/Junk/Toolbot/EntityStates.Toolbot.DroneProjectileHoverHeal.asset"; public static string EntityStatesToolbotDroneProjectileHover = "RoR2/Junk/Toolbot/EntityStates.Toolbot.DroneProjectileHover.asset"; public static string EntityStatesToolbotDroneProjectileHoverStun = "RoR2/Junk/Toolbot/EntityStates.Toolbot.DroneProjectileHoverStun.asset"; public static string EntityStatesToolbotDroneProjectileInFlight = "RoR2/Junk/Toolbot/EntityStates.Toolbot.DroneProjectileInFlight.asset"; public static string EntityStatesToolbotDroneProjectilePrepHover = "RoR2/Junk/Toolbot/EntityStates.Toolbot.DroneProjectilePrepHover.asset"; public static string EntityStatesPounderPound = "RoR2/Junk/Treebot/EntityStates.Pounder.Pound.asset"; public static string EntityStatesPounderSpawn = "RoR2/Junk/Treebot/EntityStates.Pounder.Spawn.asset"; public static string EntityStatesTreebotBurrowDash = "RoR2/Junk/Treebot/EntityStates.Treebot.BurrowDash.asset"; public static string EntityStatesTreebotBurrowed = "RoR2/Junk/Treebot/EntityStates.Treebot.Burrowed.asset"; public static string EntityStatesTreebotBurrowIn = "RoR2/Junk/Treebot/EntityStates.Treebot.BurrowIn.asset"; public static string EntityStatesTreebotBurrowOut = "RoR2/Junk/Treebot/EntityStates.Treebot.BurrowOut.asset"; public static string EntityStatesTreebotWeaponAimFlower = "RoR2/Junk/Treebot/EntityStates.Treebot.Weapon.AimFlower.asset"; public static string EntityStatesTreebotWeaponAimMortar = "RoR2/Junk/Treebot/EntityStates.Treebot.Weapon.AimMortar.asset"; public static string EntityStatesTreebotWeaponCreatePounder = "RoR2/Junk/Treebot/EntityStates.Treebot.Weapon.CreatePounder.asset"; public static string EntityStatesTreebotWeaponFireMortar = "RoR2/Junk/Treebot/EntityStates.Treebot.Weapon.FireMortar.asset"; public static string EntityStatesTreebotWeaponFireMortar2 = "RoR2/Junk/Treebot/EntityStates.Treebot.Weapon.FireMortar2.asset"; public static string EntityStatesTreebotWeaponFireSonicPull = "RoR2/Junk/Treebot/EntityStates.Treebot.Weapon.FireSonicPull.asset"; public static string EntityStatesVagrantMonsterExplosionAttack = "RoR2/Junk/Vagrant/EntityStates.VagrantMonster.ExplosionAttack.asset"; public static string EntityStatesVagrantMonsterWeaponJellyStorm = "RoR2/Junk/Vagrant/EntityStates.VagrantMonster.Weapon.JellyStorm.asset"; public static string EntityStatesCloakTest = "RoR2/Junk/Common/EntityStates.CloakTest.asset"; public static string EntityStatesEmoteSurpriseState = "RoR2/Junk/Common/EntityStates.Emote.SurpriseState.asset"; public static string EntityStatesEmotePoint = "RoR2/Junk/Common/EntityStates.EmotePoint.asset"; public static string EntityStatesHoverState = "RoR2/Junk/Common/EntityStates.HoverState.asset"; public static string RoR2GameEndingControllerCreditsState = "RoR2/Junk/Core/RoR2.GameEndingController+CreditsState.asset"; public static string RoR2GameEndingControllerEndingCutsceneState = "RoR2/Junk/Core/RoR2.GameEndingController+EndingCutsceneState.asset"; public static string RoR2GameEndingControllerGameEndingControllerBaseState = "RoR2/Junk/Core/RoR2.GameEndingController+GameEndingControllerBaseState.asset"; public static string RoR2GameEndingControllerPostGameReportState = "RoR2/Junk/Core/RoR2.GameEndingController+PostGameReportState.asset"; public static string RoR2OrbitalLaserControllerOrbitalLaserBaseState = "RoR2/Junk/OrbitalLaser/RoR2.OrbitalLaserController+OrbitalLaserBaseState.asset"; public static string RoR2OrbitalLaserControllerOrbitalLaserChargeState = "RoR2/Junk/OrbitalLaser/RoR2.OrbitalLaserController+OrbitalLaserChargeState.asset"; public static string RoR2OrbitalLaserControllerOrbitalLaserDecayState = "RoR2/Junk/OrbitalLaser/RoR2.OrbitalLaserController+OrbitalLaserDecayState.asset"; public static string RoR2OrbitalLaserControllerOrbitalLaserFireState = "RoR2/Junk/OrbitalLaser/RoR2.OrbitalLaserController+OrbitalLaserFireState.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerAfterTrial1 = "RoR2/Junk/ArtifactTrial1Controller/EntityStates.Missions.ArtifactWorld.TrialController.AfterTrial1.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerBeforeTrial1 = "RoR2/Junk/ArtifactTrial1Controller/EntityStates.Missions.ArtifactWorld.TrialController.BeforeTrial1.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerDuringTrial1 = "RoR2/Junk/ArtifactTrial1Controller/EntityStates.Missions.ArtifactWorld.TrialController.DuringTrial1.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerFinishTrial1 = "RoR2/Junk/ArtifactTrial1Controller/EntityStates.Missions.ArtifactWorld.TrialController.FinishTrial1.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerAfterTrial2 = "RoR2/Junk/ArtifactTrial2Controller/EntityStates.Missions.ArtifactWorld.TrialController.AfterTrial2.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerFinishTrial2 = "RoR2/Junk/ArtifactTrial2Controller/EntityStates.Missions.ArtifactWorld.TrialController.FinishTrial2.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerAfterTrial = "RoR2/Junk/BaseArtifactTrialController/EntityStates.Missions.ArtifactWorld.TrialController.AfterTrial.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerArtifactTrialControllerBaseState = "RoR2/Junk/BaseArtifactTrialController/EntityStates.Missions.ArtifactWorld.TrialController.ArtifactTrialControllerBaseState.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerBeforeTrial = "RoR2/Junk/BaseArtifactTrialController/EntityStates.Missions.ArtifactWorld.TrialController.BeforeTrial.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerDuringTrial = "RoR2/Junk/BaseArtifactTrialController/EntityStates.Missions.ArtifactWorld.TrialController.DuringTrial.asset"; public static string EntityStatesMissionsArtifactWorldTrialControllerFinishTrial = "RoR2/Junk/BaseArtifactTrialController/EntityStates.Missions.ArtifactWorld.TrialController.FinishTrial.asset"; public static string EntityStatesParentEggBaseEggState = "RoR2/Junk/Incubator/EntityStates.ParentEgg.BaseEggState.asset"; public static string EntityStatesParentEggDeath = "RoR2/Junk/Incubator/EntityStates.ParentEgg.Death.asset"; public static string EntityStatesParentEggHatch = "RoR2/Junk/Incubator/EntityStates.ParentEgg.Hatch.asset"; public static string EntityStatesParentEggIncubateState = "RoR2/Junk/Incubator/EntityStates.ParentEgg.IncubateState.asset"; public static string EntityStatesParentEggPreHatch = "RoR2/Junk/Incubator/EntityStates.ParentEgg.PreHatch.asset"; public static string EntityStatesParentPodDeathState = "RoR2/Junk/Incubator/EntityStates.ParentPod.DeathState.asset"; public static string EntityStatesGlobalSkillsWoundSlashWoundSlash = "RoR2/Junk/LunarSkillReplacements/EntityStates.GlobalSkills.WoundSlash.WoundSlash.asset"; public static string EntityStatesSiphonItemBaseSiphonItemState = "RoR2/Junk/SiphonOnLowHealth/EntityStates.SiphonItem.BaseSiphonItemState.asset"; public static string EntityStatesSiphonItemChargeState = "RoR2/Junk/SiphonOnLowHealth/EntityStates.SiphonItem.ChargeState.asset"; public static string EntityStatesSiphonItemDetonateState = "RoR2/Junk/SiphonOnLowHealth/EntityStates.SiphonItem.DetonateState.asset"; public static string EntityStatesSiphonItemReadyState = "RoR2/Junk/SiphonOnLowHealth/EntityStates.SiphonItem.ReadyState.asset"; public static string EntityStatesSiphonItemRechargeState = "RoR2/Junk/SiphonOnLowHealth/EntityStates.SiphonItem.RechargeState.asset"; public static string RoR2UILogBookLogBookControllerEnterLogViewState = "RoR2/Junk/UI/RoR2.UI.LogBook.LogBookController+EnterLogViewState.asset"; public static string RoR2UILogBookLogBookControllerFadeState = "RoR2/Junk/UI/RoR2.UI.LogBook.LogBookController+FadeState.asset"; public static string AurelioniteHeartActivationState = "RoR2/AurelioniteHeartActivationState.asset"; public static string AurelioniteHeartFalseSonUnlockState = "RoR2/AurelioniteHeartFalseSonUnlockState.asset"; public static string AurelioniteHeartIdleState = "RoR2/AurelioniteHeartIdleState.asset"; public static string AurelioniteHeartInertState = "RoR2/AurelioniteHeartInertState.asset"; } public static class SurfaceDef { public static string sdAltarSkeleton = "RoR2/Base/AltarSkeleton/sdAltarSkeleton.asset"; public static string sdBeetleWorker = "RoR2/Base/Beetle/sdBeetleWorker.asset"; public static string sdBeetleGuard = "RoR2/Base/BeetleGuard/sdBeetleGuard.asset"; public static string sdBeetleQueen = "RoR2/Base/BeetleQueen/sdBeetleQueen.asset"; public static string sdBell = "RoR2/Base/Bell/sdBell.asset"; public static string sdBison = "RoR2/Base/Bison/sdBison.asset"; public static string sdBrother = "RoR2/Base/Brother/sdBrother.asset"; public static string sdClayboss = "RoR2/Base/ClayBoss/sdClayboss.asset"; public static string sdGolem = "RoR2/Base/Golem/sdGolem.asset"; public static string sdGrandparent = "RoR2/Base/Grandparent/sdGrandparent.asset"; public static string sdGravekeeper = "RoR2/Base/Gravekeeper/sdGravekeeper.asset"; public static string sdGravekeeperCanister = "RoR2/Base/Gravekeeper/sdGravekeeperCanister.asset"; public static string sdGreaterWisp = "RoR2/Base/GreaterWisp/sdGreaterWisp.asset"; public static string sdHermitCrab = "RoR2/Base/HermitCrab/sdHermitCrab.asset"; public static string sdImp = "RoR2/Base/Imp/sdImp.asset"; public static string sdImpBoss = "RoR2/Base/ImpBoss/sdImpBoss.asset"; public static string sdLemurian = "RoR2/Base/Lemurian/sdLemurian.asset"; public static string sdLemurianBruiser = "RoR2/Base/LemurianBruiser/sdLemurianBruiser.asset"; public static string sdLunarWisp = "RoR2/Base/LunarWisp/sdLunarWisp.asset"; public static string sdMagmaWorm = "RoR2/Base/MagmaWorm/sdMagmaWorm.asset"; public static string sdMinimushroom = "RoR2/Base/MiniMushroom/sdMinimushroom.asset"; public static string sdNullifier = "RoR2/Base/Nullifier/sdNullifier.asset"; public static string sdRoboBall = "RoR2/Base/RoboBallBoss/sdRoboBall.asset"; public static string sdScavenger = "RoR2/Base/Scav/sdScavenger.asset"; public static string sdVagrant = "RoR2/Base/Vagrant/sdVagrant.asset"; public static string sdVulture = "RoR2/Base/Vulture/sdVulture.asset"; public static string sdWisp = "RoR2/Base/Wisp/sdWisp.asset"; public static string sdBeachGrass = "RoR2/Base/Common/sdBeachGrass.asset"; public static string sdCrystal = "RoR2/Base/Common/sdCrystal.asset"; public static string sdDirt = "RoR2/Base/Common/sdDirt.asset"; public static string sdIce = "RoR2/Base/Common/sdIce.asset"; public static string sdLava = "RoR2/Base/Common/sdLava.asset"; public static string sdLavaSuper = "RoR2/Base/Common/sdLavaSuper.asset"; public static string sdMachine = "RoR2/Base/Common/sdMachine.asset"; public static string sdMetal = "RoR2/Base/Common/sdMetal.asset"; public static string sdMystery = "RoR2/Base/Common/sdMystery.asset"; public static string sdSand = "RoR2/Base/Common/sdSand.asset"; public static string sdSkymeadowDirt = "RoR2/Base/Common/sdSkymeadowDirt.asset"; public static string sdSnow = "RoR2/Base/Common/sdSnow.asset"; public static string sdSolus = "RoR2/Base/Common/sdSolus.asset"; public static string sdStone = "RoR2/Base/Common/sdStone.asset"; public static string sdStoneHalcyonite = "RoR2/Base/Common/sdStoneHalcyonite.asset"; public static string sdWater = "RoR2/Base/Common/sdWater.asset"; public static string sdWood = "RoR2/Base/Common/sdWood.asset"; public static string sdWormCrystal = "RoR2/Base/Common/sdWormCrystal.asset"; public static string sdWormHusk = "RoR2/Base/Common/sdWormHusk.asset"; public static string sdClayGrenadier = "RoR2/DLC1/ClayGrenadier/sdClayGrenadier.asset"; public static string sdMajorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/sdMajorConstruct.asset"; public static string sdVermin = "RoR2/DLC1/Vermin/sdVermin.asset"; public static string sdVoidBarnacle = "RoR2/DLC1/VoidBarnacle/sdVoidBarnacle.asset"; public static string sdVoidJailer = "RoR2/DLC1/VoidJailer/sdVoidJailer.asset"; public static string sdVoidMegaCrab = "RoR2/DLC1/VoidMegaCrab/sdVoidMegaCrab.asset"; public static string sdVoidRaidCrabWalkableSurface = "RoR2/DLC1/VoidRaidCrab/sdVoidRaidCrabWalkableSurface.asset"; public static string sdChild = "RoR2/DLC2/Child/sdChild.asset"; public static string sdFSB = "RoR2/DLC2/FalseSonBoss/sdFSB.asset"; public static string sdHalcyonite = "RoR2/DLC2/Halcyonite/sdHalcyonite.asset"; public static string sdScorchling = "RoR2/DLC2/Scorchling/sdScorchling.asset"; public static string sdDefectiveUnit = "RoR2/DLC3/DefectiveUnit/sdDefectiveUnit.asset"; public static string sdExtractorUnit = "RoR2/DLC3/ExtractorUnit/sdExtractorUnit.asset"; public static string sdIronHauler = "RoR2/DLC3/IronHauler/sdIronHauler.asset"; public static string sdSolusAmalgamator = "RoR2/DLC3/SolusAmalgamator/sdSolusAmalgamator.asset"; public static string sdVirtual = "RoR2/DLC3/sdVirtual.asset"; public static string sdClayBruiser = "RoR2/Junk/ClayBruiser/sdClayBruiser.asset"; public static string sdJellyfish = "RoR2/Junk/Jellyfish/sdJellyfish.asset"; public static string sdParent = "RoR2/Junk/Parent/sdParent.asset"; public static string sdTitan = "RoR2/Junk/Titan/sdTitan.asset"; } public static class LoopSoundDef { public static string lsdArtifactShellSolarFlareFlight = "RoR2/Base/ArtifactShell/lsdArtifactShellSolarFlareFlight.asset"; public static string lsdBrotherBlueWall = "RoR2/Base/Brother/lsdBrotherBlueWall.asset"; public static string lsdBrotherFirePillar = "RoR2/Base/Brother/lsdBrotherFirePillar.asset"; public static string lsdBrotherOrb = "RoR2/Base/Brother/lsdBrotherOrb.asset"; public static string lsdBrotherShockwave = "RoR2/Base/Brother/lsdBrotherShockwave.asset"; public static string lsdCaptainAirstrikeAlt = "RoR2/Base/Captain/lsdCaptainAirstrikeAlt.asset"; public static string lsdClaybossTarballLoop = "RoR2/Base/ClayBoss/lsdClaybossTarballLoop.asset"; public static string lsdGrandparentSunActive = "RoR2/Base/Grandparent/lsdGrandparentSunActive.asset"; public static string lsdGrandparentSunDamage = "RoR2/Base/Grandparent/lsdGrandparentSunDamage.asset"; public static string lsdGrandparentBoulderFlight = "RoR2/Base/Grandparent/lsdGrandparentBoulderFlight.asset"; public static string lsdGrandparentGravSphereFlight = "RoR2/Base/Grandparent/lsdGrandparentGravSphereFlight.asset"; public static string lsdLemurianFireballFlight = "RoR2/Base/Lemurian/lsdLemurianFireballFlight.asset"; public static string lsdLemurianBruiserFireballFlight = "RoR2/Base/LemurianBruiser/lsdLemurianBruiserFireballFlight.asset"; public static string lsdLunarWispTrackingBombFlight = "RoR2/Base/LunarWisp/lsdLunarWispTrackingBombFlight.asset"; public static string lsdFireballsOnHitFlight = "RoR2/Base/MagmaWorm/lsdFireballsOnHitFlight.asset"; public static string lsdSporeGrenadeGasCloud = "RoR2/Base/MiniMushroom/lsdSporeGrenadeGasCloud.asset"; public static string lsdNullifierDeathBomb = "RoR2/Base/Nullifier/lsdNullifierDeathBomb.asset"; public static string lsdVagrantTrackingBombFlight = "RoR2/Base/Vagrant/lsdVagrantTrackingBombFlight.asset"; public static string lsdSawmerang = "RoR2/Base/Saw/lsdSawmerang.asset"; public static string lsdFireTornado = "RoR2/Base/ElementalRings/lsdFireTornado.asset"; public static string lsdLunarSecondaryProjectileFlight = "RoR2/Base/LunarSkillReplacements/lsdLunarSecondaryProjectileFlight.asset"; public static string lsdVerminSpitProjectileFlight = "RoR2/DLC1/FlyingVermin/lsdVerminSpitProjectileFlight.asset"; public static string lsdMajorConstructLaser = "RoR2/DLC1/MajorAndMinorConstruct/lsdMajorConstructLaser.asset"; public static string lsdMinorConstructProjectile = "RoR2/DLC1/MajorAndMinorConstruct/lsdMinorConstructProjectile.asset"; public static string lsdRailgunnerBackpackCharged = "RoR2/DLC1/Railgunner/lsdRailgunnerBackpackCharged.asset"; public static string lsdRailgunnerBackpackCharging = "RoR2/DLC1/Railgunner/lsdRailgunnerBackpackCharging.asset"; public static string lsdRailgunnerBackpackOffline = "RoR2/DLC1/Railgunner/lsdRailgunnerBackpackOffline.asset"; public static string lsdRailgunnerMineAltLoop = "RoR2/DLC1/Railgunner/lsdRailgunnerMineAltLoop.asset"; public static string lsdRailgunnerReload = "RoR2/DLC1/Railgunner/lsdRailgunnerReload.asset"; public static string lsdRailgunnerScope = "RoR2/DLC1/Railgunner/lsdRailgunnerScope.asset"; public static string lsdVoidBarnacleIdle = "RoR2/DLC1/VoidBarnacle/lsdVoidBarnacleIdle.asset"; public static string lsdVoidBarnacleBullet = "RoR2/DLC1/VoidBarnacle/lsdVoidBarnacleBullet.asset"; public static string lsdVoidJailerDeathBomb = "RoR2/DLC1/VoidJailer/lsdVoidJailerDeathBomb.asset"; public static string lsdJailerDart = "RoR2/DLC1/VoidJailer/lsdJailerDart.asset"; public static string lsdVoidMegaCrabDeathBomb = "RoR2/DLC1/VoidMegaCrab/lsdVoidMegaCrabDeathBomb.asset"; public static string lsdMegaCrabBlackCannonProjectile = "RoR2/DLC1/VoidMegaCrab/lsdMegaCrabBlackCannonProjectile.asset"; public static string lsdVoidRaidCrabGauntlet = "RoR2/DLC1/VoidRaidCrab/lsdVoidRaidCrabGauntlet.asset"; public static string lsdVoidRaidCrabMissile = "RoR2/DLC1/VoidRaidCrab/lsdVoidRaidCrabMissile.asset"; public static string lsdVoidRaidMultiBeamDotZone = "RoR2/DLC1/VoidRaidCrab/lsdVoidRaidMultiBeamDotZone.asset"; public static string lsdVoidRaidCrabSpinBeam = "RoR2/DLC1/VoidRaidCrab/lsdVoidRaidCrabSpinBeam.asset"; public static string lsdVoidRaidCrabVacuumAttack = "RoR2/DLC1/VoidRaidCrab/lsdVoidRaidCrabVacuumAttack.asset"; public static string lsdVoidSurvivorDisplay = "RoR2/DLC1/VoidSurvivor/lsdVoidSurvivorDisplay.asset"; public static string lsdVoidMegaBlasterFlight = "RoR2/DLC1/VoidSurvivor/lsdVoidMegaBlasterFlight.asset"; public static string lsdEliteEarthTether = "RoR2/DLC1/EliteEarth/lsdEliteEarthTether.asset"; public static string lsdMolotovDotZone = "RoR2/DLC1/Molotov/lsdMolotovDotZone.asset"; public static string lsdInfiniteTowerSafeWardTravelling = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/lsdInfiniteTowerSafeWardTravelling.asset"; public static string lsdInfiniteTowerNextWaveTimer = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/lsdInfiniteTowerNextWaveTimer.asset"; public static string lsdFreeChestMultiShop = "RoR2/DLC1/FreeChestMultiShop/lsdFreeChestMultiShop.asset"; public static string lsdVoidCampCenter = "RoR2/DLC1/VoidCamp/lsdVoidCampCenter.asset"; public static string lsdPreFracture = "RoR2/DLC1/BleedOnHitVoid/lsdPreFracture.asset"; public static string lsdMissileVoid = "RoR2/DLC1/MissileVoid/lsdMissileVoid.asset"; public static string lsdMushroomVoid = "RoR2/DLC1/MushroomVoid/lsdMushroomVoid.asset"; public static string IsdCleaver = "RoR2/DLC2/Chef/IsdCleaver.asset"; public static string lsdChefDisplay = "RoR2/DLC2/Chef/lsdChefDisplay.asset"; public static string lsdChefDisplayIdle = "RoR2/DLC2/Chef/lsdChefDisplayIdle.asset"; public static string lsdBoostedSearFireball = "RoR2/DLC2/Chef/lsdBoostedSearFireball.asset"; public static string lsdYesChefFireLoop = "RoR2/DLC2/Chef/lsdYesChefFireLoop.asset"; public static string lsdChildTrackingOrb = "RoR2/DLC2/Child/lsdChildTrackingOrb.asset"; public static string lsdFalseSonBossPrimeDevastatorOrbLoop = "RoR2/DLC2/FalseSonBoss/lsdFalseSonBossPrimeDevastatorOrbLoop.asset"; public static string lsdFalseSonBossColumn = "RoR2/DLC2/FalseSonBoss/lsdFalseSonBossColumn.asset"; public static string lsdScorchlingBombAOELoop = "RoR2/DLC2/Scorchling/lsdScorchlingBombAOELoop.asset"; public static string lsdSoulSpiralProjectile = "RoR2/DLC2/Seeker/lsdSoulSpiralProjectile.asset"; public static string lsdUnseenHandLoop = "RoR2/DLC2/Seeker/lsdUnseenHandLoop.asset"; public static string lsdBossMissileMovement = "RoR2/DLC2/Items/BarrageOnBoss/lsdBossMissileMovement.asset"; public static string stunAndPierceLoopSoundDef = "RoR2/DLC2/Items/StunAndPierce/stunAndPierceLoopSoundDef.asset"; public static string lsdArtilleryProjectileFlightLoop = "RoR2/DLC3/DefectiveUnit/lsdArtilleryProjectileFlightLoop.asset"; public static string lsdDroneBallDotZone = "RoR2/DLC3/Drone Tech/lsdDroneBallDotZone.asset"; public static string lsdCarryTether = "RoR2/DLC3/ExtractorUnit/lsdCarryTether.asset"; public static string lsdSolusAmalgamatorTrackingBombFlight = "RoR2/DLC3/SolusAmalgamator/lsdSolusAmalgamatorTrackingBombFlight.asset"; public static string lsdDDOS = "RoR2/DLC3/SolusHeart/lsdDDOS.asset"; public static string GravpulseLoopDef = "RoR2/DLC3/SolusWing/GravpulseLoopDef.asset"; public static string GlitchphaseLoopDef = "RoR2/DLC3/SolusWing/GlitchphaseLoopDef.asset"; public static string OverHeatBeamLoopDef = "RoR2/DLC3/SolusWing/OverHeatBeamLoopDef.asset"; public static string LasergridLoopDef = "RoR2/DLC3/SolusWing/LasergridLoopDef.asset"; public static string OverheatAmbientLoopDef = "RoR2/DLC3/SolusWingForm1/OverheatAmbientLoopDef.asset"; public static string PodExtinguisherBrokenLoopDef = "RoR2/DLC3/SolusWingForm1/PodExtinguisherBrokenLoopDef.asset"; public static string PodExtinguisherLoopDef = "RoR2/DLC3/SolusWingForm1/PodExtinguisherLoopDef.asset"; public static string PodHeatLoopDef = "RoR2/DLC3/SolusWingForm1/PodHeatLoopDef.asset"; public static string FlamesLoopDef = "RoR2/DLC3/Tanker/FlamesLoopDef.asset"; public static string lsdCalldownLoop = "RoR2/DLC3/VultureHunter/lsdCalldownLoop.asset"; public static string lsdWyrmOnHit = "RoR2/DLC3/Items/WyrmOnHit/lsdWyrmOnHit.asset"; public static string lsdLunarGolemProjectileFlight = "RoR2/Junk/LunarGolem/lsdLunarGolemProjectileFlight.asset"; } public static class SkillFamily { public static string ArtifactShellPrimarySkillFamily = "RoR2/Base/ArtifactShell/ArtifactShellPrimarySkillFamily.asset"; public static string Bandit2BodyPrimaryFamily = "RoR2/Base/Bandit2/Bandit2BodyPrimaryFamily.asset"; public static string Bandit2BodySecondaryFamily = "RoR2/Base/Bandit2/Bandit2BodySecondaryFamily.asset"; public static string Bandit2BodySpecialFamily = "RoR2/Base/Bandit2/Bandit2BodySpecialFamily.asset"; public static string Bandit2BodyUtilityFamily = "RoR2/Base/Bandit2/Bandit2BodyUtilityFamily.asset"; public static string BeetleBodyPrimaryFamily = "RoR2/Base/Beetle/BeetleBodyPrimaryFamily.asset"; public static string BeetleBodySecondaryFamily = "RoR2/Base/Beetle/BeetleBodySecondaryFamily.asset"; public static string BeetleGuardBodyPrimaryFamily = "RoR2/Base/BeetleGuard/BeetleGuardBodyPrimaryFamily.asset"; public static string BeetleGuardBodySecondaryFamily = "RoR2/Base/BeetleGuard/BeetleGuardBodySecondaryFamily.asset"; public static string BeetleGuardBodyUtilityFamily = "RoR2/Base/BeetleGuard/BeetleGuardBodyUtilityFamily.asset"; public static string BeetleQueen2BodyPrimaryFamily = "RoR2/Base/BeetleQueen/BeetleQueen2BodyPrimaryFamily.asset"; public static string BeetleQueen2BodySecondaryFamily = "RoR2/Base/BeetleQueen/BeetleQueen2BodySecondaryFamily.asset"; public static string BeetleQueen2BodySpecialFamily = "RoR2/Base/BeetleQueen/BeetleQueen2BodySpecialFamily.asset"; public static string BellBodyPrimaryFamily = "RoR2/Base/Bell/BellBodyPrimaryFamily.asset"; public static string BisonBodyPrimaryFamily = "RoR2/Base/Bison/BisonBodyPrimaryFamily.asset"; public static string BisonBodyUtilityFamily = "RoR2/Base/Bison/BisonBodyUtilityFamily.asset"; public static string BrotherPrimaryFamily = "RoR2/Base/Brother/BrotherPrimaryFamily.asset"; public static string BrotherSecondaryFamily = "RoR2/Base/Brother/BrotherSecondaryFamily.asset"; public static string BrotherSpecialFamily = "RoR2/Base/Brother/BrotherSpecialFamily.asset"; public static string BrotherUtilityFamily = "RoR2/Base/Brother/BrotherUtilityFamily.asset"; public static string BrotherHurtPrimaryFamily = "RoR2/Base/Brother/BrotherHurtPrimaryFamily.asset"; public static string BrotherHurtSecondaryFamily = "RoR2/Base/Brother/BrotherHurtSecondaryFamily.asset"; public static string BrotherHauntBodyPrimarySkillFamily = "RoR2/Base/BrotherHaunt/BrotherHauntBodyPrimarySkillFamily.asset"; public static string CaptainPrimarySkillFamily = "RoR2/Base/Captain/CaptainPrimarySkillFamily.asset"; public static string CaptainSecondarySkillFamily = "RoR2/Base/Captain/CaptainSecondarySkillFamily.asset"; public static string CaptainSpecialSkillFamily = "RoR2/Base/Captain/CaptainSpecialSkillFamily.asset"; public static string CaptainSupplyDrop1SkillFamily = "RoR2/Base/Captain/CaptainSupplyDrop1SkillFamily.asset"; public static string CaptainSupplyDrop2SkillFamily = "RoR2/Base/Captain/CaptainSupplyDrop2SkillFamily.asset"; public static string CaptainUtilitySkillFamily = "RoR2/Base/Captain/CaptainUtilitySkillFamily.asset"; public static string ClayBossBodyPrimaryFamily = "RoR2/Base/ClayBoss/ClayBossBodyPrimaryFamily.asset"; public static string ClayBossBodySecondaryFamily = "RoR2/Base/ClayBoss/ClayBossBodySecondaryFamily.asset"; public static string ClayBossBodySpecialFamily = "RoR2/Base/ClayBoss/ClayBossBodySpecialFamily.asset"; public static string ClayBruiserBodyPrimaryFamily = "RoR2/Base/ClayBruiser/ClayBruiserBodyPrimaryFamily.asset"; public static string ClayBruiserBodySecondaryFamily = "RoR2/Base/ClayBruiser/ClayBruiserBodySecondaryFamily.asset"; public static string MinigunCopycatSkillFamily = "RoR2/Base/ClayBruiser/MinigunCopycatSkillFamily.asset"; public static string CommandoBodyPrimaryFamily = "RoR2/Base/Commando/CommandoBodyPrimaryFamily.asset"; public static string CommandoBodySecondaryFamily = "RoR2/Base/Commando/CommandoBodySecondaryFamily.asset"; public static string CommandoBodySpecialFamily = "RoR2/Base/Commando/CommandoBodySpecialFamily.asset"; public static string CommandoBodyUtilityFamily = "RoR2/Base/Commando/CommandoBodyUtilityFamily.asset"; public static string CrocoBodyPassiveFamily = "RoR2/Base/Croco/CrocoBodyPassiveFamily.asset"; public static string CrocoBodyPrimaryFamily = "RoR2/Base/Croco/CrocoBodyPrimaryFamily.asset"; public static string CrocoBodySecondaryFamily = "RoR2/Base/Croco/CrocoBodySecondaryFamily.asset"; public static string CrocoBodySpecialFamily = "RoR2/Base/Croco/CrocoBodySpecialFamily.asset"; public static string CrocoBodyUtilityFamily = "RoR2/Base/Croco/CrocoBodyUtilityFamily.asset"; public static string BackupDroneBodyPrimaryFamily = "RoR2/Base/Drones/BackupDroneBodyPrimaryFamily.asset"; public static string Drone1BodyPrimaryFamily = "RoR2/Base/Drones/Drone1BodyPrimaryFamily.asset"; public static string Drone2BodyPrimaryFamily = "RoR2/Base/Drones/Drone2BodyPrimaryFamily.asset"; public static string EmergencyDroneBodyPrimarySkillFamily = "RoR2/Base/Drones/EmergencyDroneBodyPrimarySkillFamily.asset"; public static string FlameDroneBodyPrimaryFamily = "RoR2/Base/Drones/FlameDroneBodyPrimaryFamily.asset"; public static string MegaDroneBodyPrimaryFamily = "RoR2/Base/Drones/MegaDroneBodyPrimaryFamily.asset"; public static string MegaDroneBodySecondaryFamily = "RoR2/Base/Drones/MegaDroneBodySecondaryFamily.asset"; public static string MissileDroneBodyPrimaryFamily = "RoR2/Base/Drones/MissileDroneBodyPrimaryFamily.asset"; public static string Turret1BodyPrimaryFamily = "RoR2/Base/Drones/Turret1BodyPrimaryFamily.asset"; public static string ElectricWormBodyPrimaryFamily = "RoR2/Base/ElectricWorm/ElectricWormBodyPrimaryFamily.asset"; public static string ElectricWormBodySpecialFamily = "RoR2/Base/ElectricWorm/ElectricWormBodySpecialFamily.asset"; public static string ElectricWormBodyUtilityFamily = "RoR2/Base/ElectricWorm/ElectricWormBodyUtilityFamily.asset"; public static string EngiBodyPrimaryFamily = "RoR2/Base/Engi/EngiBodyPrimaryFamily.asset"; public static string EngiBodySecondaryFamily = "RoR2/Base/Engi/EngiBodySecondaryFamily.asset"; public static string EngiBodySpecialFamily = "RoR2/Base/Engi/EngiBodySpecialFamily.asset"; public static string EngiBodyUtilityFamily = "RoR2/Base/Engi/EngiBodyUtilityFamily.asset"; public static string EngiTurretBodyPrimaryFamily = "RoR2/Base/Engi/EngiTurretBodyPrimaryFamily.asset"; public static string EngiWalkerTurretBodyPrimaryFamily = "RoR2/Base/Engi/EngiWalkerTurretBodyPrimaryFamily.asset"; public static string GolemBodyPrimaryFamily = "RoR2/Base/Golem/GolemBodyPrimaryFamily.asset"; public static string GolemBodySecondaryFamily = "RoR2/Base/Golem/GolemBodySecondaryFamily.asset"; public static string GrandParentBodyPrimaryFamily = "RoR2/Base/Grandparent/GrandParentBodyPrimaryFamily.asset"; public static string GrandParentBodySecondaryFamily = "RoR2/Base/Grandparent/GrandParentBodySecondaryFamily.asset"; public static string GrandParentBodySpecialFamily = "RoR2/Base/Grandparent/GrandParentBodySpecialFamily.asset"; public static string GrandParentBodyUtilityFamily = "RoR2/Base/Grandparent/GrandParentBodyUtilityFamily.asset"; public static string GravekeeperBodyPrimaryFamily = "RoR2/Base/Gravekeeper/GravekeeperBodyPrimaryFamily.asset"; public static string GravekeeperBodySecondaryFamily = "RoR2/Base/Gravekeeper/GravekeeperBodySecondaryFamily.asset"; public static string GreaterWispBodyPrimaryFamily = "RoR2/Base/GreaterWisp/GreaterWispBodyPrimaryFamily.asset"; public static string HereticPrimaryFamily = "RoR2/Base/Heretic/HereticPrimaryFamily.asset"; public static string HereticSecondaryFamily = "RoR2/Base/Heretic/HereticSecondaryFamily.asset"; public static string HereticSpecialFamily = "RoR2/Base/Heretic/HereticSpecialFamily.asset"; public static string HereticUtilityFamily = "RoR2/Base/Heretic/HereticUtilityFamily.asset"; public static string HermitCrabBodyPrimaryFamily = "RoR2/Base/HermitCrab/HermitCrabBodyPrimaryFamily.asset"; public static string HuntressBodyPrimaryFamily = "RoR2/Base/Huntress/HuntressBodyPrimaryFamily.asset"; public static string HuntressBodySecondaryFamily = "RoR2/Base/Huntress/HuntressBodySecondaryFamily.asset"; public static string HuntressBodySpecialFamily = "RoR2/Base/Huntress/HuntressBodySpecialFamily.asset"; public static string HuntressBodyUtilityFamily = "RoR2/Base/Huntress/HuntressBodyUtilityFamily.asset"; public static string ImpBodyPrimaryFamily = "RoR2/Base/Imp/ImpBodyPrimaryFamily.asset"; public static string ImpBodyUtilityFamily = "RoR2/Base/Imp/ImpBodyUtilityFamily.asset"; public static string ImpBossBodyPrimaryFamily = "RoR2/Base/ImpBoss/ImpBossBodyPrimaryFamily.asset"; public static string ImpBossBodySecondaryFamily = "RoR2/Base/ImpBoss/ImpBossBodySecondaryFamily.asset"; public static string ImpBossBodyUtilityFamily = "RoR2/Base/ImpBoss/ImpBossBodyUtilityFamily.asset"; public static string JellyfishBodySecondaryFamily = "RoR2/Base/Jellyfish/JellyfishBodySecondaryFamily.asset"; public static string LemurianBodyPrimaryFamily = "RoR2/Base/Lemurian/LemurianBodyPrimaryFamily.asset"; public static string LemurianBodySecondaryFamily = "RoR2/Base/Lemurian/LemurianBodySecondaryFamily.asset"; public static string LemurianBruiserBodyPrimaryFamily = "RoR2/Base/LemurianBruiser/LemurianBruiserBodyPrimaryFamily.asset"; public static string LemurianBruiserBodySecondaryFamily = "RoR2/Base/LemurianBruiser/LemurianBruiserBodySecondaryFamily.asset"; public static string LoaderBodyPrimaryFamily = "RoR2/Base/Loader/LoaderBodyPrimaryFamily.asset"; public static string LoaderBodySecondaryFamily = "RoR2/Base/Loader/LoaderBodySecondaryFamily.asset"; public static string LoaderBodySpecialFamily = "RoR2/Base/Loader/LoaderBodySpecialFamily.asset"; public static string LoaderBodyUtilityFamily = "RoR2/Base/Loader/LoaderBodyUtilityFamily.asset"; public static string LunarExploderPrimaryFamily = "RoR2/Base/LunarExploder/LunarExploderPrimaryFamily.asset"; public static string LunarGolemBodyPrimaryFamily = "RoR2/Base/LunarGolem/LunarGolemBodyPrimaryFamily.asset"; public static string LunarGolemBodySecondaryFamily = "RoR2/Base/LunarGolem/LunarGolemBodySecondaryFamily.asset"; public static string LunarWispBodyPrimaryFamily = "RoR2/Base/LunarWisp/LunarWispBodyPrimaryFamily.asset"; public static string LunarWispBodySecondaryFamily = "RoR2/Base/LunarWisp/LunarWispBodySecondaryFamily.asset"; public static string MageBodyPrimaryFamily = "RoR2/Base/Mage/MageBodyPrimaryFamily.asset"; public static string MageBodySecondaryFamily = "RoR2/Base/Mage/MageBodySecondaryFamily.asset"; public static string MageBodySpecialFamily = "RoR2/Base/Mage/MageBodySpecialFamily.asset"; public static string MageBodyUtilityFamily = "RoR2/Base/Mage/MageBodyUtilityFamily.asset"; public static string MagmaWormBodyPrimaryFamily = "RoR2/Base/MagmaWorm/MagmaWormBodyPrimaryFamily.asset"; public static string MagmaWormBodySpecialFamily = "RoR2/Base/MagmaWorm/MagmaWormBodySpecialFamily.asset"; public static string MagmaWormBodyUtilityFamily = "RoR2/Base/MagmaWorm/MagmaWormBodyUtilityFamily.asset"; public static string MercBodyPrimaryFamily = "RoR2/Base/Merc/MercBodyPrimaryFamily.asset"; public static string MercBodySecondaryFamily = "RoR2/Base/Merc/MercBodySecondaryFamily.asset"; public static string MercBodySpecialFamily = "RoR2/Base/Merc/MercBodySpecialFamily.asset"; public static string MercBodyUtilityFamily = "RoR2/Base/Merc/MercBodyUtilityFamily.asset"; public static string MiniMushroomPrimarySkillFamily = "RoR2/Base/MiniMushroom/MiniMushroomPrimarySkillFamily.asset"; public static string MiniMushroomUtility = "RoR2/Base/MiniMushroom/MiniMushroomUtility.asset"; public static string NullifierPrimaryFamily = "RoR2/Base/Nullifier/NullifierPrimaryFamily.asset"; public static string ParentBodyPrimaryFamily = "RoR2/Base/Parent/ParentBodyPrimaryFamily.asset"; public static string ParentBodySecondaryFamily = "RoR2/Base/Parent/ParentBodySecondaryFamily.asset"; public static string RoboBallMiniPrimaryFamily = "RoR2/Base/RoboBallBoss/RoboBallMiniPrimaryFamily.asset"; public static string RoboBallBossBodyPrimaryFamily = "RoR2/Base/RoboBallBoss/RoboBallBossBodyPrimaryFamily.asset"; public static string RoboBallBossBodySpecialFamily = "RoR2/Base/RoboBallBoss/RoboBallBossBodySpecialFamily.asset"; public static string RoboBallBossBodyUtilityFamily = "RoR2/Base/RoboBallBoss/RoboBallBossBodyUtilityFamily.asset"; public static string SuperRoboBallBossBodyPrimaryFamily = "RoR2/Base/RoboBallBoss/SuperRoboBallBossBodyPrimaryFamily.asset"; public static string SuperRoboBallBossBodySpecialFamily = "RoR2/Base/RoboBallBoss/SuperRoboBallBossBodySpecialFamily.asset"; public static string ScavPrimaryFamily = "RoR2/Base/Scav/ScavPrimaryFamily.asset"; public static string ScavSecondaryFamily = "RoR2/Base/Scav/ScavSecondaryFamily.asset"; public static string ScavUtilityFamily = "RoR2/Base/Scav/ScavUtilityFamily.asset"; public static string ShopkeeperBodySpecialFamily = "RoR2/Base/Shopkeeper/ShopkeeperBodySpecialFamily.asset"; public static string SpectatorBodyPrimarySkillFamily = "RoR2/Base/Shopkeeper/Spectator/SpectatorBodyPrimarySkillFamily.asset"; public static string TitanBodySecondaryFamily = "RoR2/Base/Titan/TitanBodySecondaryFamily.asset"; public static string TitanBodySpecialFamily = "RoR2/Base/Titan/TitanBodySpecialFamily.asset"; public static string TitanBodyUtilityFamily = "RoR2/Base/Titan/TitanBodyUtilityFamily.asset"; public static string TitanGoldBodySecondaryFamily = "RoR2/Base/Titan/TitanGoldBodySecondaryFamily.asset"; public static string TitanGoldBodySpecialFamily = "RoR2/Base/Titan/TitanGoldBodySpecialFamily.asset"; public static string TitanGoldBodyUtilityFamily = "RoR2/Base/Titan/TitanGoldBodyUtilityFamily.asset"; public static string ToolbotBodyPrimary1 = "RoR2/Base/Toolbot/ToolbotBodyPrimary1.asset"; public static string ToolbotBodyPrimary2 = "RoR2/Base/Toolbot/ToolbotBodyPrimary2.asset"; public static string ToolbotBodySecondaryFamily = "RoR2/Base/Toolbot/ToolbotBodySecondaryFamily.asset"; public static string ToolbotBodySpecialFamily = "RoR2/Base/Toolbot/ToolbotBodySpecialFamily.asset"; public static string ToolbotBodyUtilityFamily = "RoR2/Base/Toolbot/ToolbotBodyUtilityFamily.asset"; public static string TreebotBodyPrimaryFamily = "RoR2/Base/Treebot/TreebotBodyPrimaryFamily.asset"; public static string TreebotBodySecondaryFamily = "RoR2/Base/Treebot/TreebotBodySecondaryFamily.asset"; public static string TreebotBodySpecialFamily = "RoR2/Base/Treebot/TreebotBodySpecialFamily.asset"; public static string TreebotBodyUtilityFamily = "RoR2/Base/Treebot/TreebotBodyUtilityFamily.asset"; public static string VagrantBodyPrimaryFamily = "RoR2/Base/Vagrant/VagrantBodyPrimaryFamily.asset"; public static string VagrantBodySecondaryFamily = "RoR2/Base/Vagrant/VagrantBodySecondaryFamily.asset"; public static string VagrantBodySpecialFamily = "RoR2/Base/Vagrant/VagrantBodySpecialFamily.asset"; public static string VultureBodyPrimarySkillFamily = "RoR2/Base/Vulture/VultureBodyPrimarySkillFamily.asset"; public static string VultureBodyUtilitySkillFamily = "RoR2/Base/Vulture/VultureBodyUtilitySkillFamily.asset"; public static string WispBodyPrimaryFamily = "RoR2/Base/Wisp/WispBodyPrimaryFamily.asset"; public static string UrchinTurretBodyPrimaryFamily = "RoR2/Base/ElitePoison/UrchinTurretBodyPrimaryFamily.asset"; public static string SquidTurretBodyPrimaryFamily = "RoR2/Base/Squid/SquidTurretBodyPrimaryFamily.asset"; public static string AcidLarvaPrimaryFamily = "RoR2/DLC1/AcidLarva/AcidLarvaPrimaryFamily.asset"; public static string Assassin2PrimaryFamily = "RoR2/DLC1/Assassin2/Assassin2PrimaryFamily.asset"; public static string Assassin2SecondaryFamily = "RoR2/DLC1/Assassin2/Assassin2SecondaryFamily.asset"; public static string Assassin2UtilityFamily = "RoR2/DLC1/Assassin2/Assassin2UtilityFamily.asset"; public static string ClayGrenadierBodyPrimaryFamily = "RoR2/DLC1/ClayGrenadier/ClayGrenadierBodyPrimaryFamily.asset"; public static string ClayGrenadierBodySecondaryFamily = "RoR2/DLC1/ClayGrenadier/ClayGrenadierBodySecondaryFamily.asset"; public static string FlyingVerminBodyPrimarySkillFamily = "RoR2/DLC1/FlyingVermin/FlyingVerminBodyPrimarySkillFamily.asset"; public static string GupBodyPrimaryFamily = "RoR2/DLC1/Gup/GupBodyPrimaryFamily.asset"; public static string MajorConstructBodyPrimaryFamily = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructBodyPrimaryFamily.asset"; public static string MajorConstructBodySpecialFamily = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructBodySpecialFamily.asset"; public static string MajorConstructBodyUtilityFamily = "RoR2/DLC1/MajorAndMinorConstruct/MajorConstructBodyUtilityFamily.asset"; public static string MegaConstructPrimaryFamily = "RoR2/DLC1/MajorAndMinorConstruct/MegaConstructPrimaryFamily.asset"; public static string MegaConstructSpecialFamily = "RoR2/DLC1/MajorAndMinorConstruct/MegaConstructSpecialFamily.asset"; public static string MegaConstructUtilityFamily = "RoR2/DLC1/MajorAndMinorConstruct/MegaConstructUtilityFamily.asset"; public static string MinorConstructPrimaryFamily = "RoR2/DLC1/MajorAndMinorConstruct/MinorConstructPrimaryFamily.asset"; public static string RailgunnerBodyPrimaryFamily = "RoR2/DLC1/Railgunner/RailgunnerBodyPrimaryFamily.asset"; public static string RailgunnerBodySecondaryFamily = "RoR2/DLC1/Railgunner/RailgunnerBodySecondaryFamily.asset"; public static string RailgunnerBodySpecialFamily = "RoR2/DLC1/Railgunner/RailgunnerBodySpecialFamily.asset"; public static string RailgunnerBodyUtilityFamily = "RoR2/DLC1/Railgunner/RailgunnerBodyUtilityFamily.asset"; public static string RailgunnerPassiveFamily = "RoR2/DLC1/Railgunner/RailgunnerPassiveFamily.asset"; public static string VerminBodyPrimarySkillFamily = "RoR2/DLC1/Vermin/VerminBodyPrimarySkillFamily.asset"; public static string VoidBarnaclePrimaryFamily = "RoR2/DLC1/VoidBarnacle/VoidBarnaclePrimaryFamily.asset"; public static string VoidJailerPrimaryFamily = "RoR2/DLC1/VoidJailer/VoidJailerPrimaryFamily.asset"; public static string VoidJailerSecondaryFamily = "RoR2/DLC1/VoidJailer/VoidJailerSecondaryFamily.asset"; public static string VoidMegaCrabPrimaryFamily = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabPrimaryFamily.asset"; public static string VoidMegaCrabSecondaryFamily = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabSecondaryFamily.asset"; public static string VoidMegaCrabSpecialFamily = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabSpecialFamily.asset"; public static string MiniVoidRaidCrabPrimaryFamily = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabPrimaryFamily.asset"; public static string MiniVoidRaidCrabSecondaryFamily = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabSecondaryFamily.asset"; public static string MiniVoidRaidCrabSpecialFamily = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabSpecialFamily.asset"; public static string MiniVoidRaidCrabUtilityFamily = "RoR2/DLC1/VoidRaidCrab/MiniVoidRaidCrabUtilityFamily.asset"; public static string VoidRaidCrabPrimaryFamily = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabPrimaryFamily.asset"; public static string VoidRaidCrabSecondaryFamily = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabSecondaryFamily.asset"; public static string VoidRaidCrabSpecialFamily = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabSpecialFamily.asset"; public static string VoidRaidCrabUtilityFamily = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabUtilityFamily.asset"; public static string VoidSurvivorSpecialFamily = "RoR2/DLC1/VoidSurvivor/VoidSurvivorSpecialFamily.asset"; public static string VoidSurvivorPassiveFamily = "RoR2/DLC1/VoidSurvivor/VoidSurvivorPassiveFamily.asset"; public static string VoidSurvivorPrimaryFamily = "RoR2/DLC1/VoidSurvivor/VoidSurvivorPrimaryFamily.asset"; public static string VoidSurvivorSecondaryFamily = "RoR2/DLC1/VoidSurvivor/VoidSurvivorSecondaryFamily.asset"; public static string VoidSurvivorUtilityFamily = "RoR2/DLC1/VoidSurvivor/VoidSurvivorUtilityFamily.asset"; public static string VoidInfestorPrimaryFamily = "RoR2/DLC1/EliteVoid/VoidInfestorPrimaryFamily.asset"; public static string ChefPassiveFamily = "RoR2/DLC2/Chef/ChefPassiveFamily.asset"; public static string ChefPrimaryFamily = "RoR2/DLC2/Chef/ChefPrimaryFamily.asset"; public static string ChefSecondaryFamily = "RoR2/DLC2/Chef/ChefSecondaryFamily.asset"; public static string ChefSpecialFamily = "RoR2/DLC2/Chef/ChefSpecialFamily.asset"; public static string ChefUtilityFamily = "RoR2/DLC2/Chef/ChefUtilityFamily.asset"; public static string ChildBodyPrimaryFamily = "RoR2/DLC2/Child/ChildBodyPrimaryFamily.asset"; public static string ChildBodySecondaryFamily = "RoR2/DLC2/Child/ChildBodySecondaryFamily.asset"; public static string FalseSonBodyPassiveFamily = "RoR2/DLC2/FalseSon/FalseSonBodyPassiveFamily.asset"; public static string FalseSonBodyPrimaryFamily = "RoR2/DLC2/FalseSon/FalseSonBodyPrimaryFamily.asset"; public static string FalseSonBodySecondaryFamily = "RoR2/DLC2/FalseSon/FalseSonBodySecondaryFamily.asset"; public static string FalseSonBodySpecialFamily = "RoR2/DLC2/FalseSon/FalseSonBodySpecialFamily.asset"; public static string FalseSonBodyUtilityFamily = "RoR2/DLC2/FalseSon/FalseSonBodyUtilityFamily.asset"; public static string FalseSonBossUtilityFamily = "RoR2/DLC2/FalseSonBoss/FalseSonBossUtilityFamily.asset"; public static string FalseSonBossLunarShardBrokenPrimaryFamily = "RoR2/DLC2/FalseSonBoss/FalseSonBossLunarShardBrokenPrimaryFamily.asset"; public static string FalseSonBossSpecialFamily = "RoR2/DLC2/FalseSonBoss/FalseSonBossSpecialFamily.asset"; public static string FalseSonBossPrimaryFamily = "RoR2/DLC2/FalseSonBoss/FalseSonBossPrimaryFamily.asset"; public static string FalseSonBossSecondaryFamily = "RoR2/DLC2/FalseSonBoss/FalseSonBossSecondaryFamily.asset"; public static string HalcyoniteMonsterPrimaryFamily = "RoR2/DLC2/Halcyonite/HalcyoniteMonsterPrimaryFamily.asset"; public static string HalcyoniteMonsterSecondaryFamily = "RoR2/DLC2/Halcyonite/HalcyoniteMonsterSecondaryFamily.asset"; public static string HalcyoniteMonsterSpecialFamily = "RoR2/DLC2/Halcyonite/HalcyoniteMonsterSpecialFamily.asset"; public static string HalcyoniteMonsterUtilityFamily = "RoR2/DLC2/Halcyonite/HalcyoniteMonsterUtilityFamily.asset"; public static string ScorchlingPrimaryFamily = "RoR2/DLC2/Scorchling/ScorchlingPrimaryFamily.asset"; public static string ScorchlingSecondaryFamily = "RoR2/DLC2/Scorchling/ScorchlingSecondaryFamily.asset"; public static string ScorchlingUtility = "RoR2/DLC2/Scorchling/ScorchlingUtility.asset"; public static string SeekerBodyPassiveFamily = "RoR2/DLC2/Seeker/SeekerBodyPassiveFamily.asset"; public static string SeekerBodyPrimaryFamily = "RoR2/DLC2/Seeker/SeekerBodyPrimaryFamily.asset"; public static string SeekerBodySecondaryFamily = "RoR2/DLC2/Seeker/SeekerBodySecondaryFamily.asset"; public static string SeekerBodySpecialFamily = "RoR2/DLC2/Seeker/SeekerBodySpecialFamily.asset"; public static string SeekerBodyUtilityFamily = "RoR2/DLC2/Seeker/SeekerBodyUtilityFamily.asset"; public static string DefectiveUnitPrimary = "RoR2/DLC3/DefectiveUnit/DefectiveUnitPrimary.asset"; public static string DefectiveUnitSecondary = "RoR2/DLC3/DefectiveUnit/DefectiveUnitSecondary.asset"; public static string DrifterSurvivorPassiveFamily = "RoR2/DLC3/Drifter/DrifterSurvivorPassiveFamily.asset"; public static string DrifterSurvivorPrimaryFamily = "RoR2/DLC3/Drifter/DrifterSurvivorPrimaryFamily.asset"; public static string DrifterSurvivorSecondaryFamily = "RoR2/DLC3/Drifter/DrifterSurvivorSecondaryFamily.asset"; public static string DrifterSurvivorSpecial = "RoR2/DLC3/Drifter/DrifterSurvivorSpecial.asset"; public static string DrifterSurvivorUtilityFamily = "RoR2/DLC3/Drifter/DrifterSurvivorUtilityFamily.asset"; public static string DroneTechPassiveSkillFamily1 = "RoR2/DLC3/Drone Tech/DroneTechPassiveSkillFamily1.asset"; public static string DroneTechPassiveSkillFamily2 = "RoR2/DLC3/Drone Tech/DroneTechPassiveSkillFamily2.asset"; public static string DroneTechPrimarySkillFamily = "RoR2/DLC3/Drone Tech/DroneTechPrimarySkillFamily.asset"; public static string CommandBombardmentSkillFamily = "RoR2/DLC3/Drone Tech/CommandBombardmentSkillFamily.asset"; public static string CommandBomberSkillFamily = "RoR2/DLC3/Drone Tech/CommandBomberSkillFamily.asset"; public static string CleanupActivateFamily = "RoR2/DLC3/Drone Tech/CleanupActivateFamily.asset"; public static string CommanderActivateFamily = "RoR2/DLC3/Drone Tech/CommanderActivateFamily.asset"; public static string CopycatActivateSkillFamily = "RoR2/DLC3/Drone Tech/CopycatActivateSkillFamily.asset"; public static string Drone1ActivateSkillFamily = "RoR2/DLC3/Drone Tech/Drone1ActivateSkillFamily.asset"; public static string CommandHealSkillFamily = "RoR2/DLC3/Drone Tech/CommandHealSkillFamily.asset"; public static string DTGunnerActivateSkillFamily = "RoR2/DLC3/Drone Tech/DTGunnerActivateSkillFamily.asset"; public static string CommandHaulerSkillFamily = "RoR2/DLC3/Drone Tech/CommandHaulerSkillFamily.asset"; public static string CommandStimSkillFamily = "RoR2/DLC3/Drone Tech/CommandStimSkillFamily.asset"; public static string CommandEmergencyFamily = "RoR2/DLC3/Drone Tech/CommandEmergencyFamily.asset"; public static string FlamethrowerActivateFamily = "RoR2/DLC3/Drone Tech/FlamethrowerActivateFamily.asset"; public static string CommandGenericFamily = "RoR2/DLC3/Drone Tech/CommandGenericFamily.asset"; public static string CommandHaulSkillFamily = "RoR2/DLC3/Drone Tech/CommandHaulSkillFamily.asset"; public static string CommandJailerSkillFamily = "RoR2/DLC3/Drone Tech/CommandJailerSkillFamily.asset"; public static string CommandJunkSkillFamily = "RoR2/DLC3/Drone Tech/CommandJunkSkillFamily.asset"; public static string MegaCommandActivateSkillFamily = "RoR2/DLC3/Drone Tech/MegaCommandActivateSkillFamily.asset"; public static string MissileCommandActivateSkillFamily = "RoR2/DLC3/Drone Tech/MissileCommandActivateSkillFamily.asset"; public static string CommandRechargeSkillFamily = "RoR2/DLC3/Drone Tech/CommandRechargeSkillFamily.asset"; public static string StrikeCommandActivateSkillFamily = "RoR2/DLC3/Drone Tech/StrikeCommandActivateSkillFamily.asset"; public static string DroneTechSecondarySkillFamily = "RoR2/DLC3/Drone Tech/DroneTechSecondarySkillFamily.asset"; public static string DroneTechSpecialSkillFamily = "RoR2/DLC3/Drone Tech/DroneTechSpecialSkillFamily.asset"; public static string DroneTechUtilitySkillFamily = "RoR2/DLC3/Drone Tech/DroneTechUtilitySkillFamily.asset"; public static string BombardmentDroneRemoteOpSkillDefFamily = "RoR2/DLC3/Drones/BombardmentDroneRemoteOpSkillDefFamily.asset"; public static string BombardmentDroneSkillDefFamily = "RoR2/DLC3/Drones/BombardmentDroneSkillDefFamily.asset"; public static string CleanupDronePrimaryFamily = "RoR2/DLC3/Drones/CleanupDronePrimaryFamily.asset"; public static string CleanupDroneRemoteOpPrimaryFamily = "RoR2/DLC3/Drones/CleanupDroneRemoteOpPrimaryFamily.asset"; public static string CopyCatPrimaryFamily = "RoR2/DLC3/Drones/CopyCatPrimaryFamily.asset"; public static string ApproachEnemySkillDefFamily = "RoR2/DLC3/Drones/ApproachEnemySkillDefFamily.asset"; public static string ElevateEnemySkillDefFamily = "RoR2/DLC3/Drones/ElevateEnemySkillDefFamily.asset"; public static string GrabEnemySkillDefFamily = "RoR2/DLC3/Drones/GrabEnemySkillDefFamily.asset"; public static string JailerDroneRemoteOpSkillDefFamily = "RoR2/DLC3/Drones/JailerDroneRemoteOpSkillDefFamily.asset"; public static string DroneJailerTrapSkillDefFamily = "RoR2/DLC3/Drones/DroneJailerTrapSkillDefFamily.asset"; public static string JunkDroneSurpriseSkillFamily = "RoR2/DLC3/Drones/JunkDroneSurpriseSkillFamily.asset"; public static string RechargeDronePrimaryFamily = "RoR2/DLC3/Drones/RechargeDronePrimaryFamily.asset"; public static string ExtractorUnitPrimary = "RoR2/DLC3/ExtractorUnit/ExtractorUnitPrimary.asset"; public static string ExtractorUnitSecondary = "RoR2/DLC3/ExtractorUnit/ExtractorUnitSecondary.asset"; public static string FriendUnitPrimaryFamily = "RoR2/DLC3/FriendUnit/FriendUnit_Primary_Family.asset"; public static string FriendUnitSecondaryFamily = "RoR2/DLC3/FriendUnit/FriendUnit_Secondary_Family.asset"; public static string FriendUnitUtilityFamily = "RoR2/DLC3/FriendUnit/FriendUnit_Utility_Family.asset"; public static string AimSkillDefFamily = "RoR2/DLC3/IronHauler/AimSkillDefFamily.asset"; public static string ShootProjectileSkillDefFamily = "RoR2/DLC3/IronHauler/ShootProjectileSkillDefFamily.asset"; public static string MinePodPrimaryFamily = "RoR2/DLC3/MinePod/MinePodPrimaryFamily.asset"; public static string MinePodSecondaryFamily = "RoR2/DLC3/MinePod/MinePodSecondaryFamily.asset"; public static string SolusAmalgamatorFlamethrowerCannonPrimary = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorFlamethrowerCannonPrimary.asset"; public static string SolusAmalgamatorMissilePodPrimary = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorMissilePodPrimary.asset"; public static string SolusAmalgamatorPrimaryFamily = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorPrimaryFamily.asset"; public static string SolusAmalgamatorSecondaryFamily = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorSecondaryFamily.asset"; public static string SolusAmalgamatorSpecialFamily = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorSpecialFamily.asset"; public static string SolusAmalgamatorUtilityFamily = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorUtilityFamily.asset"; public static string SolusAmalgamatorThrusterPrimary = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorThrusterPrimary.asset"; public static string SolusHeartPassiveFamily = "RoR2/DLC3/SolusHeart/SolusHeartPassiveFamily.asset"; public static string SolusHeartPrimaryFamily = "RoR2/DLC3/SolusHeart/SolusHeartPrimaryFamily.asset"; public static string SolusHeartSecondaryFamily = "RoR2/DLC3/SolusHeart/SolusHeartSecondaryFamily.asset"; public static string SolusHeartSpecialFamily = "RoR2/DLC3/SolusHeart/SolusHeartSpecialFamily.asset"; public static string SolusHeartUtilityFamily = "RoR2/DLC3/SolusHeart/SolusHeartUtilityFamily.asset"; public static string SolusWingPrimarySkillFamily = "RoR2/DLC3/SolusWing/SolusWing Primary Skill Family.asset"; public static string SolusWingSecondarySkillFamily = "RoR2/DLC3/SolusWing/SolusWing Secondary Skill Family.asset"; public static string SolusWingSpecialSkillFamily = "RoR2/DLC3/SolusWing/SolusWing Special Skill Family.asset"; public static string SolusWingUtilitySkillFamily = "RoR2/DLC3/SolusWing/SolusWing Utility Skill Family.asset"; public static string TankerPrimaryFamily = "RoR2/DLC3/Tanker/TankerPrimaryFamily.asset"; public static string TankerSecondaryFamily = "RoR2/DLC3/Tanker/TankerSecondaryFamily.asset"; public static string SolusVendorSpecialFamily = "RoR2/DLC3/SolusVendorSpecialFamily.asset"; public static string HunterVulturePrimary = "RoR2/DLC3/VultureHunter/HunterVulturePrimary.asset"; public static string HunterVultureSecondary = "RoR2/DLC3/VultureHunter/HunterVultureSecondary.asset"; public static string HunterVultureUtility = "RoR2/DLC3/VultureHunter/HunterVultureUtility.asset"; public static string WorkerUnitPrimaryFamily = "RoR2/DLC3/WorkerUnit/WorkerUnitPrimaryFamily.asset"; public static string AncientWispBodyPrimaryFamily = "RoR2/Junk/AncientWisp/AncientWispBodyPrimaryFamily.asset"; public static string AncientWispBodySecondaryFamily = "RoR2/Junk/AncientWisp/AncientWispBodySecondaryFamily.asset"; public static string AncientWispBodyUtilityFamily = "RoR2/Junk/AncientWisp/AncientWispBodyUtilityFamily.asset"; public static string ArchWispBodyPrimaryFamily = "RoR2/Junk/ArchWisp/ArchWispBodyPrimaryFamily.asset"; public static string AssassinBodyPrimaryFamily = "RoR2/Junk/Assassin/AssassinBodyPrimaryFamily.asset"; public static string AssassinBodySecondaryFamily = "RoR2/Junk/Assassin/AssassinBodySecondaryFamily.asset"; public static string AssassinBodyUtilityFamily = "RoR2/Junk/Assassin/AssassinBodyUtilityFamily.asset"; public static string BackupDroneOldBodyPrimaryFamily = "RoR2/Junk/BackupDroneOld/BackupDroneOldBodyPrimaryFamily.asset"; public static string BanditBodyPrimaryFamily = "RoR2/Junk/Bandit/BanditBodyPrimaryFamily.asset"; public static string BanditBodySecondaryFamily = "RoR2/Junk/Bandit/BanditBodySecondaryFamily.asset"; public static string BanditBodySpecialFamily = "RoR2/Junk/Bandit/BanditBodySpecialFamily.asset"; public static string BanditBodyUtilityFamily = "RoR2/Junk/Bandit/BanditBodyUtilityFamily.asset"; public static string BomberBodyPrimaryFamily = "RoR2/Junk/Bomber/BomberBodyPrimaryFamily.asset"; public static string BomberBodySecondaryFamily = "RoR2/Junk/Bomber/BomberBodySecondaryFamily.asset"; public static string BomberBodySpecialFamily = "RoR2/Junk/Bomber/BomberBodySpecialFamily.asset"; public static string BomberBodyUtilityFamily = "RoR2/Junk/Bomber/BomberBodyUtilityFamily.asset"; public static string ClayBodyPrimaryFamily = "RoR2/Junk/ClayMan/ClayBodyPrimaryFamily.asset"; public static string ClayBodySecondaryFamily = "RoR2/Junk/ClayMan/ClayBodySecondaryFamily.asset"; public static string CommandoPerformanceTestBodyPrimaryFamily = "RoR2/Junk/CommandoPerformanceTest/CommandoPerformanceTestBodyPrimaryFamily.asset"; public static string CommandoPerformanceTestBodySecondaryFamily = "RoR2/Junk/CommandoPerformanceTest/CommandoPerformanceTestBodySecondaryFamily.asset"; public static string CommandoPerformanceTestBodySpecialFamily = "RoR2/Junk/CommandoPerformanceTest/CommandoPerformanceTestBodySpecialFamily.asset"; public static string CommandoPerformanceTestBodyUtilityFamily = "RoR2/Junk/CommandoPerformanceTest/CommandoPerformanceTestBodyUtilityFamily.asset"; public static string EnforcerBodyPrimaryFamily = "RoR2/Junk/Enforcer/EnforcerBodyPrimaryFamily.asset"; public static string EnforcerBodySecondaryFamily = "RoR2/Junk/Enforcer/EnforcerBodySecondaryFamily.asset"; public static string EnforcerBodySpecialFamily = "RoR2/Junk/Enforcer/EnforcerBodySpecialFamily.asset"; public static string EnforcerBodyUtilityFamily = "RoR2/Junk/Enforcer/EnforcerBodyUtilityFamily.asset"; public static string EngiBeamTurretBodyPrimaryFamily = "RoR2/Junk/Engi/EngiBeamTurretBodyPrimaryFamily.asset"; public static string HANDBodyPrimaryFamily = "RoR2/Junk/HAND/HANDBodyPrimaryFamily.asset"; public static string HANDBodySecondaryFamily = "RoR2/Junk/HAND/HANDBodySecondaryFamily.asset"; public static string HANDBodySpecialFamily = "RoR2/Junk/HAND/HANDBodySpecialFamily.asset"; public static string HANDBodyUtilityFamily = "RoR2/Junk/HAND/HANDBodyUtilityFamily.asset"; public static string PaladinBodyPrimaryFamily = "RoR2/Junk/Paladin/PaladinBodyPrimaryFamily.asset"; public static string PaladinBodySecondaryFamily = "RoR2/Junk/Paladin/PaladinBodySecondaryFamily.asset"; public static string PaladinBodyUtilityFamily = "RoR2/Junk/Paladin/PaladinBodyUtilityFamily.asset"; public static string PotMobileBodyPrimaryFamily = "RoR2/Junk/PotMobile/PotMobileBodyPrimaryFamily.asset"; public static string PotMobile2BodyPrimaryFamily = "RoR2/Junk/PotMobile2/PotMobile2BodyPrimaryFamily.asset"; public static string SniperBodyPrimaryFamily = "RoR2/Junk/Sniper/SniperBodyPrimaryFamily.asset"; public static string SniperBodySecondaryFamily = "RoR2/Junk/Sniper/SniperBodySecondaryFamily.asset"; public static string SniperBodySpecialFamily = "RoR2/Junk/Sniper/SniperBodySpecialFamily.asset"; public static string SniperBodyUtilityFamily = "RoR2/Junk/Sniper/SniperBodyUtilityFamily.asset"; } public static class SkillDef { public static string FireSolarFlares = "RoR2/Base/ArtifactShell/FireSolarFlares.asset"; public static string Bandit2SerratedShivs = "RoR2/Base/Bandit2/Bandit2SerratedShivs.asset"; public static string ResetRevolver = "RoR2/Base/Bandit2/ResetRevolver.asset"; public static string SkullRevolver = "RoR2/Base/Bandit2/SkullRevolver.asset"; public static string SlashBlade = "RoR2/Base/Bandit2/SlashBlade.asset"; public static string ThrowSmokebomb = "RoR2/Base/Bandit2/ThrowSmokebomb.asset"; public static string BeetleBodyHeadbutt = "RoR2/Base/Beetle/BeetleBodyHeadbutt.asset"; public static string BeetleBodySleep = "RoR2/Base/Beetle/BeetleBodySleep.asset"; public static string BeetleGuardBodyDefenseUp = "RoR2/Base/BeetleGuard/BeetleGuardBodyDefenseUp.asset"; public static string BeetleGuardBodyGroundSlam = "RoR2/Base/BeetleGuard/BeetleGuardBodyGroundSlam.asset"; public static string BeetleGuardBodySunder = "RoR2/Base/BeetleGuard/BeetleGuardBodySunder.asset"; public static string BeetleQueen2BodySpawnWards = "RoR2/Base/BeetleQueen/BeetleQueen2BodySpawnWards.asset"; public static string BeetleQueen2BodySpit = "RoR2/Base/BeetleQueen/BeetleQueen2BodySpit.asset"; public static string BeetleQueen2BodySummonEggs = "RoR2/Base/BeetleQueen/BeetleQueen2BodySummonEggs.asset"; public static string BellBodyBellBlast = "RoR2/Base/Bell/BellBodyBellBlast.asset"; public static string BisonBodyCharge = "RoR2/Base/Bison/BisonBodyCharge.asset"; public static string BisonBodyHeadbutt = "RoR2/Base/Bison/BisonBodyHeadbutt.asset"; public static string FireLunarShards = "RoR2/Base/Brother/FireLunarShards.asset"; public static string SkyLeap = "RoR2/Base/Brother/SkyLeap.asset"; public static string SprintBash = "RoR2/Base/Brother/SprintBash.asset"; public static string WeaponSlam = "RoR2/Base/Brother/WeaponSlam.asset"; public static string FireLunarShardsHurt = "RoR2/Base/Brother/FireLunarShardsHurt.asset"; public static string FistSlam = "RoR2/Base/Brother/FistSlam.asset"; public static string FireRandomProjectiles = "RoR2/Base/BrotherHaunt/FireRandomProjectiles.asset"; public static string CallAirstrike = "RoR2/Base/Captain/CallAirstrike.asset"; public static string CallAirstrikeAlt = "RoR2/Base/Captain/CallAirstrikeAlt.asset"; public static string CallSupplyDropEquipmentRestock = "RoR2/Base/Captain/CallSupplyDropEquipmentRestock.asset"; public static string CallSupplyDropHacking = "RoR2/Base/Captain/CallSupplyDropHacking.asset"; public static string CallSupplyDropHealing = "RoR2/Base/Captain/CallSupplyDropHealing.asset"; public static string CallSupplyDropShocking = "RoR2/Base/Captain/CallSupplyDropShocking.asset"; public static string CaptainCancelDummy = "RoR2/Base/Captain/CaptainCancelDummy.asset"; public static string CaptainShotgun = "RoR2/Base/Captain/CaptainShotgun.asset"; public static string CaptainSkillDisconnected = "RoR2/Base/Captain/CaptainSkillDisconnected.asset"; public static string CaptainSkillUsedUp = "RoR2/Base/Captain/CaptainSkillUsedUp.asset"; public static string CaptainTazer = "RoR2/Base/Captain/CaptainTazer.asset"; public static string ClayBossBodyChargeBombardment = "RoR2/Base/ClayBoss/ClayBossBodyCharge Bombardment.asset"; public static string ClayBossBodyRecover = "RoR2/Base/ClayBoss/ClayBossBodyRecover.asset"; public static string ClayBossBodyTarball = "RoR2/Base/ClayBoss/ClayBossBodyTarball.asset"; public static string ClayBruiserBodyGun = "RoR2/Base/ClayBruiser/ClayBruiserBodyGun.asset"; public static string ClayBruiserBodyKnockback = "RoR2/Base/ClayBruiser/ClayBruiserBodyKnockback.asset"; public static string MinigunCopycatSkill = "RoR2/Base/ClayBruiser/MinigunCopycatSkill.asset"; public static string CommandoBodyBarrage = "RoR2/Base/Commando/CommandoBodyBarrage.asset"; public static string CommandoBodyFireFMJ = "RoR2/Base/Commando/CommandoBodyFireFMJ.asset"; public static string CommandoBodyFireShotgunBlast = "RoR2/Base/Commando/CommandoBodyFireShotgunBlast.asset"; public static string CommandoBodyRoll = "RoR2/Base/Commando/CommandoBodyRoll.asset"; public static string CommandoSlide = "RoR2/Base/Commando/CommandoSlide.asset"; public static string ThrowGrenade = "RoR2/Base/Commando/ThrowGrenade.asset"; public static string CrocoBite = "RoR2/Base/Croco/CrocoBite.asset"; public static string CrocoChainableLeap = "RoR2/Base/Croco/CrocoChainableLeap.asset"; public static string CrocoDisease = "RoR2/Base/Croco/CrocoDisease.asset"; public static string CrocoLeap = "RoR2/Base/Croco/CrocoLeap.asset"; public static string CrocoPassiveBlight = "RoR2/Base/Croco/CrocoPassiveBlight.asset"; public static string CrocoPassivePoison = "RoR2/Base/Croco/CrocoPassivePoison.asset"; public static string CrocoSpit = "RoR2/Base/Croco/CrocoSpit.asset"; public static string BackupDroneBodyGun = "RoR2/Base/Drones/BackupDroneBodyGun.asset"; public static string Drone1BodyGun = "RoR2/Base/Drones/Drone1BodyGun.asset"; public static string Drone2BodyHealingBeam = "RoR2/Base/Drones/Drone2BodyHealingBeam.asset"; public static string StartHealBeam = "RoR2/Base/Drones/StartHealBeam.asset"; public static string FlameDroneBodyFlamethrower = "RoR2/Base/Drones/FlameDroneBodyFlamethrower.asset"; public static string MegaDroneBodyGun = "RoR2/Base/Drones/MegaDroneBodyGun.asset"; public static string MegaDroneBodyRocket = "RoR2/Base/Drones/MegaDroneBodyRocket.asset"; public static string MissileDroneBodyGun = "RoR2/Base/Drones/MissileDroneBodyGun.asset"; public static string Turret1BodyTurret = "RoR2/Base/Drones/Turret1BodyTurret.asset"; public static string ElectricWormBodyBlink = "RoR2/Base/ElectricWorm/ElectricWormBodyBlink.asset"; public static string ElectricWormBodyStanceSwitch = "RoR2/Base/ElectricWorm/ElectricWormBodyStanceSwitch.asset"; public static string EngiBodyFireGrenade = "RoR2/Base/Engi/EngiBodyFireGrenade.asset"; public static string EngiBodyPlaceBubbleShield = "RoR2/Base/Engi/EngiBodyPlaceBubbleShield.asset"; public static string EngiBodyPlaceMine = "RoR2/Base/Engi/EngiBodyPlaceMine.asset"; public static string EngiBodyPlaceSpiderMine = "RoR2/Base/Engi/EngiBodyPlaceSpiderMine.asset"; public static string EngiBodyPlaceTurret = "RoR2/Base/Engi/EngiBodyPlaceTurret.asset"; public static string EngiBodyPlaceWalkerTurret = "RoR2/Base/Engi/EngiBodyPlaceWalkerTurret.asset"; public static string EngiCancelTargetingDummy = "RoR2/Base/Engi/EngiCancelTargetingDummy.asset"; public static string EngiConfirmTargetDummy = "RoR2/Base/Engi/EngiConfirmTargetDummy.asset"; public static string EngiHarpoons = "RoR2/Base/Engi/EngiHarpoons.asset"; public static string EngiTurretBodyTurret = "RoR2/Base/Engi/EngiTurretBodyTurret.asset"; public static string EngiTurretFireBeam = "RoR2/Base/Engi/EngiTurretFireBeam.asset"; public static string GolemBodyClap = "RoR2/Base/Golem/GolemBodyClap.asset"; public static string GolemBodyLaser = "RoR2/Base/Golem/GolemBodyLaser.asset"; public static string GrandParentChannelSun = "RoR2/Base/Grandparent/GrandParentChannelSun.asset"; public static string GrandParentSecondary = "RoR2/Base/Grandparent/GrandParentSecondary.asset"; public static string GravekeeperBodyBarrage = "RoR2/Base/Gravekeeper/GravekeeperBodyBarrage.asset"; public static string GravekeeperBodyPrepHook = "RoR2/Base/Gravekeeper/GravekeeperBodyPrepHook.asset"; public static string GreaterWispBodyCannons = "RoR2/Base/GreaterWisp/GreaterWispBodyCannons.asset"; public static string HereticDefaultAbility = "RoR2/Base/Heretic/HereticDefaultAbility.asset"; public static string HermitCrabBodyBurrowMortar = "RoR2/Base/HermitCrab/HermitCrabBodyBurrowMortar.asset"; public static string AimArrowSnipe = "RoR2/Base/Huntress/AimArrowSnipe.asset"; public static string FireArrowSnipe = "RoR2/Base/Huntress/FireArrowSnipe.asset"; public static string HuntressBodyArrowRain = "RoR2/Base/Huntress/HuntressBodyArrowRain.asset"; public static string HuntressBodyBlink = "RoR2/Base/Huntress/HuntressBodyBlink.asset"; public static string HuntressBodyMiniBlink = "RoR2/Base/Huntress/HuntressBodyMiniBlink.asset"; public static string ImpBodyBlink = "RoR2/Base/Imp/ImpBodyBlink.asset"; public static string ImpBodyDoubleSlash = "RoR2/Base/Imp/ImpBodyDoubleSlash.asset"; public static string ImpBossBodyBlink = "RoR2/Base/ImpBoss/ImpBossBodyBlink.asset"; public static string ImpBossBodyFireVoidspikes = "RoR2/Base/ImpBoss/ImpBossBodyFireVoidspikes.asset"; public static string ImpBossBodyGroundPound = "RoR2/Base/ImpBoss/ImpBossBodyGroundPound.asset"; public static string JellyfishBodyNova = "RoR2/Base/Jellyfish/JellyfishBodyNova.asset"; public static string LemurianBodyBite = "RoR2/Base/Lemurian/LemurianBodyBite.asset"; public static string LemurianBodyFireball = "RoR2/Base/Lemurian/LemurianBodyFireball.asset"; public static string LemurianBruiserBodyPrimary = "RoR2/Base/LemurianBruiser/LemurianBruiserBodyPrimary.asset"; public static string LemurianBruiserBodySecondary = "RoR2/Base/LemurianBruiser/LemurianBruiserBodySecondary.asset"; public static string FireHook = "RoR2/Base/Loader/FireHook.asset"; public static string FireYankHook = "RoR2/Base/Loader/FireYankHook.asset"; public static string ThrowPylon = "RoR2/Base/Loader/ThrowPylon.asset"; public static string FireExploderShards = "RoR2/Base/LunarExploder/FireExploderShards.asset"; public static string LunarGolemBodyShield = "RoR2/Base/LunarGolem/LunarGolemBodyShield.asset"; public static string LunarGolemBodyTwinShot = "RoR2/Base/LunarGolem/LunarGolemBodyTwinShot.asset"; public static string LunarWispBodyMiniguns = "RoR2/Base/LunarWisp/LunarWispBodyMiniguns.asset"; public static string LunarWispBodySeekingBomb = "RoR2/Base/LunarWisp/LunarWispBodySeekingBomb.asset"; public static string MageBodyFlamethrower = "RoR2/Base/Mage/MageBodyFlamethrower.asset"; public static string MageBodyFlyUp = "RoR2/Base/Mage/MageBodyFlyUp.asset"; public static string MageBodyIceBomb = "RoR2/Base/Mage/MageBodyIceBomb.asset"; public static string MageBodyNovaBomb = "RoR2/Base/Mage/MageBodyNovaBomb.asset"; public static string MageBodyWall = "RoR2/Base/Mage/MageBodyWall.asset"; public static string MagmaWormBodyBlink = "RoR2/Base/MagmaWorm/MagmaWormBodyBlink.asset"; public static string MagmaWormBodyStanceSwitch = "RoR2/Base/MagmaWorm/MagmaWormBodyStanceSwitch.asset"; public static string MagmaWormBodySteerAtTarget = "RoR2/Base/MagmaWorm/MagmaWormBodySteerAtTarget.asset"; public static string MercBodyEvis = "RoR2/Base/Merc/MercBodyEvis.asset"; public static string MercBodyEvisProjectile = "RoR2/Base/Merc/MercBodyEvisProjectile.asset"; public static string MercBodyFocusedAssault = "RoR2/Base/Merc/MercBodyFocusedAssault.asset"; public static string MercBodyUppercut = "RoR2/Base/Merc/MercBodyUppercut.asset"; public static string MercBodyWhirlwind = "RoR2/Base/Merc/MercBodyWhirlwind.asset"; public static string MiniMushroomSporeGrenade = "RoR2/Base/MiniMushroom/MiniMushroomSporeGrenade.asset"; public static string FireNullifier = "RoR2/Base/Nullifier/FireNullifier.asset"; public static string ParentLoomingPresence = "RoR2/Base/Parent/ParentLoomingPresence.asset"; public static string FireEyeBeam = "RoR2/Base/RoboBallBoss/FireEyeBeam.asset"; public static string DeployMinion = "RoR2/Base/RoboBallBoss/DeployMinion.asset"; public static string EyeBlast = "RoR2/Base/RoboBallBoss/EyeBlast.asset"; public static string FireDelayKnockup = "RoR2/Base/RoboBallBoss/FireDelayKnockup.asset"; public static string SuperEyeblast = "RoR2/Base/RoboBallBoss/SuperEyeblast.asset"; public static string SuperFireDelayKnockup = "RoR2/Base/RoboBallBoss/SuperFireDelayKnockup.asset"; public static string FindItem = "RoR2/Base/Scav/FindItem.asset"; public static string PrepEnergyCannon = "RoR2/Base/Scav/PrepEnergyCannon.asset"; public static string PrepSack = "RoR2/Base/Scav/PrepSack.asset"; public static string ShopkeeperBodyKickFromShop = "RoR2/Base/Shopkeeper/ShopkeeperBodyKickFromShop.asset"; public static string LockOn = "RoR2/Base/Shopkeeper/Spectator/LockOn.asset"; public static string TitanBodyFist = "RoR2/Base/Titan/TitanBodyFist.asset"; public static string TitanBodyLaser = "RoR2/Base/Titan/TitanBodyLaser.asset"; public static string TitanBodyRechargeRocks = "RoR2/Base/Titan/TitanBodyRechargeRocks.asset"; public static string ChargeGoldLaser = "RoR2/Base/Titan/ChargeGoldLaser.asset"; public static string FireGoldFist = "RoR2/Base/Titan/FireGoldFist.asset"; public static string ToolbotBodyStunDrone = "RoR2/Base/Toolbot/ToolbotBodyStunDrone.asset"; public static string ToolbotBodySwap = "RoR2/Base/Toolbot/ToolbotBodySwap.asset"; public static string ToolbotBodyToolbotDash = "RoR2/Base/Toolbot/ToolbotBodyToolbotDash.asset"; public static string ToolbotCancelDualWield = "RoR2/Base/Toolbot/ToolbotCancelDualWield.asset"; public static string ToolbotDualWield = "RoR2/Base/Toolbot/ToolbotDualWield.asset"; public static string TreebotBodyAimMortar2 = "RoR2/Base/Treebot/TreebotBodyAimMortar2.asset"; public static string TreebotBodyAimMortarRain = "RoR2/Base/Treebot/TreebotBodyAimMortarRain.asset"; public static string TreebotBodyFireFlower2 = "RoR2/Base/Treebot/TreebotBodyFireFlower2.asset"; public static string TreebotBodyFireFruitSeed = "RoR2/Base/Treebot/TreebotBodyFireFruitSeed.asset"; public static string TreebotBodyFireSyringe = "RoR2/Base/Treebot/TreebotBodyFireSyringe.asset"; public static string TreebotBodyPlantSonicBoom = "RoR2/Base/Treebot/TreebotBodyPlantSonicBoom.asset"; public static string TreebotBodySonicBoom = "RoR2/Base/Treebot/TreebotBodySonicBoom.asset"; public static string VagrantBodyChargeMegaNova = "RoR2/Base/Vagrant/VagrantBodyChargeMegaNova.asset"; public static string VagrantBodyJellyBarrage = "RoR2/Base/Vagrant/VagrantBodyJellyBarrage.asset"; public static string VagrantBodyTrackingBomb = "RoR2/Base/Vagrant/VagrantBodyTrackingBomb.asset"; public static string ChargeWindblade = "RoR2/Base/Vulture/ChargeWindblade.asset"; public static string FlyToLand = "RoR2/Base/Vulture/FlyToLand.asset"; public static string WispBodyFireEmber = "RoR2/Base/Wisp/WispBodyFireEmber.asset"; public static string UrchinTurretBodyTurret = "RoR2/Base/ElitePoison/UrchinTurretBodyTurret.asset"; public static string SquidTurretBodyTurret = "RoR2/Base/Squid/SquidTurretBodyTurret.asset"; public static string LarvaLeap = "RoR2/DLC1/AcidLarva/LarvaLeap.asset"; public static string Assassin2Hide = "RoR2/DLC1/Assassin2/Assassin2Hide.asset"; public static string Assassin2Shuriken = "RoR2/DLC1/Assassin2/Assassin2Shuriken.asset"; public static string Assassin2Strike = "RoR2/DLC1/Assassin2/Assassin2Strike.asset"; public static string ThrowBarrel = "RoR2/DLC1/ClayGrenadier/ThrowBarrel.asset"; public static string Spit = "RoR2/DLC1/FlyingVermin/Spit.asset"; public static string GupSpikes = "RoR2/DLC1/Gup/GupSpikes.asset"; public static string FireTrackingLaser = "RoR2/DLC1/MajorAndMinorConstruct/FireTrackingLaser.asset"; public static string SwitchStance = "RoR2/DLC1/MajorAndMinorConstruct/SwitchStance.asset"; public static string RaiseShield = "RoR2/DLC1/MajorAndMinorConstruct/RaiseShield.asset"; public static string FireConstructBeam = "RoR2/DLC1/MajorAndMinorConstruct/FireConstructBeam.asset"; public static string RailgunnerBodyActiveReload = "RoR2/DLC1/Railgunner/RailgunnerBodyActiveReload.asset"; public static string RailgunnerBodyFireMineBlinding = "RoR2/DLC1/Railgunner/RailgunnerBodyFireMineBlinding.asset"; public static string RailgunnerBodyFireMineConcussive = "RoR2/DLC1/Railgunner/RailgunnerBodyFireMineConcussive.asset"; public static string VoidBarnacleFire = "RoR2/DLC1/VoidBarnacle/VoidBarnacleFire.asset"; public static string VoidJailerChargeCapture = "RoR2/DLC1/VoidJailer/VoidJailerChargeCapture.asset"; public static string VoidJailerChargeFire = "RoR2/DLC1/VoidJailer/VoidJailerChargeFire.asset"; public static string FireCrabBlackCannon = "RoR2/DLC1/VoidMegaCrab/FireCrabBlackCannon.asset"; public static string FireCrabWhiteCannon = "RoR2/DLC1/VoidMegaCrab/FireCrabWhiteCannon.asset"; public static string FireVoidMissiles = "RoR2/DLC1/VoidMegaCrab/FireVoidMissiles.asset"; public static string RaidCrabEyeMissiles = "RoR2/DLC1/VoidRaidCrab/RaidCrabEyeMissiles.asset"; public static string RaidCrabMultiBeam = "RoR2/DLC1/VoidRaidCrab/RaidCrabMultiBeam.asset"; public static string RaidCrabSpinBeam = "RoR2/DLC1/VoidRaidCrab/RaidCrabSpinBeam.asset"; public static string RaidCrabVacuumAttack = "RoR2/DLC1/VoidRaidCrab/RaidCrabVacuumAttack.asset"; public static string FireCorruptBeam = "RoR2/DLC1/VoidSurvivor/FireCorruptBeam.asset"; public static string FireHandBeam = "RoR2/DLC1/VoidSurvivor/FireHandBeam.asset"; public static string ChargeMegaBlaster = "RoR2/DLC1/VoidSurvivor/ChargeMegaBlaster.asset"; public static string FireCorruptDisk = "RoR2/DLC1/VoidSurvivor/FireCorruptDisk.asset"; public static string CrushHealth = "RoR2/DLC1/VoidSurvivor/CrushHealth.asset"; public static string VoidBlinkDown = "RoR2/DLC1/VoidSurvivor/VoidBlinkDown.asset"; public static string VoidBlinkUp = "RoR2/DLC1/VoidSurvivor/VoidBlinkUp.asset"; public static string VoidInfestorLeap = "RoR2/DLC1/EliteVoid/VoidInfestorLeap.asset"; public static string ChefChefsKiss = "RoR2/DLC2/Chef/ChefChefsKiss.asset"; public static string ChefDice = "RoR2/DLC2/Chef/ChefDice.asset"; public static string ChefDiceBoosted = "RoR2/DLC2/Chef/ChefDiceBoosted.asset"; public static string ChefSear = "RoR2/DLC2/Chef/ChefSear.asset"; public static string ChefSearBoosted = "RoR2/DLC2/Chef/ChefSearBoosted.asset"; public static string ChefIceBox = "RoR2/DLC2/Chef/ChefIceBox.asset"; public static string ChefIceBoxBoosted = "RoR2/DLC2/Chef/ChefIceBoxBoosted.asset"; public static string ChefGlaze = "RoR2/DLC2/Chef/ChefGlaze.asset"; public static string YesChef = "RoR2/DLC2/Chef/YesChef.asset"; public static string ChefRolyPoly = "RoR2/DLC2/Chef/ChefRolyPoly.asset"; public static string ChefRolyPolyBoosted = "RoR2/DLC2/Chef/ChefRolyPolyBoosted.asset"; public static string ChildBodySparkBall = "RoR2/DLC2/Child/ChildBodySparkBall.asset"; public static string ChildBodyFrolic = "RoR2/DLC2/Child/ChildBodyFrolic.asset"; public static string FalseSonBodyAurelioniteCore = "RoR2/DLC2/FalseSon/FalseSonBodyAurelioniteCore.asset"; public static string FalseSonBodyTheTamperedHeart = "RoR2/DLC2/FalseSon/FalseSonBodyTheTamperedHeart.asset"; public static string FalseSonClubSlam = "RoR2/DLC2/FalseSon/FalseSonClubSlam.asset"; public static string FalseSonShotgunBlast = "RoR2/DLC2/FalseSon/FalseSonShotgunBlast.asset"; public static string FalseSonBodyLunarSpikes = "RoR2/DLC2/FalseSon/FalseSonBodyLunarSpikes.asset"; public static string FalseSonLunarSpikesShotgun = "RoR2/DLC2/FalseSon/FalseSonLunarSpikesShotgun.asset"; public static string FalseSonLunarStake = "RoR2/DLC2/FalseSon/FalseSonLunarStake.asset"; public static string FalseSonBodyStep = "RoR2/DLC2/FalseSon/FalseSonBodyStep.asset"; public static string FalseSonMeridiansWill = "RoR2/DLC2/FalseSon/FalseSonMeridiansWill.asset"; public static string FalseSonBossLunarGaze = "RoR2/DLC2/FalseSonBoss/FalseSonBossLunarGaze.asset"; public static string FalseSonBossPrimeDevastator = "RoR2/DLC2/FalseSonBoss/FalseSonBossPrimeDevastator.asset"; public static string FalseSonBossLunarGazePlus = "RoR2/DLC2/FalseSonBoss/FalseSonBossLunarGazePlus.asset"; public static string FalseSonBossFissureSlam = "RoR2/DLC2/FalseSonBoss/FalseSonBossFissureSlam.asset"; public static string FalseSonBossHeroRelicSwing = "RoR2/DLC2/FalseSonBoss/FalseSonBossHeroRelicSwing.asset"; public static string FalseSonBossSwatAwayPlayers = "RoR2/DLC2/FalseSonBoss/FalseSonBossSwatAwayPlayers.asset"; public static string FalseSonBossLunarRain = "RoR2/DLC2/FalseSonBoss/FalseSonBossLunarRain.asset"; public static string FalseSonBossTaintedOffering = "RoR2/DLC2/FalseSonBoss/FalseSonBossTaintedOffering.asset"; public static string FalseSonBossCorruptedPaths = "RoR2/DLC2/FalseSonBoss/FalseSonBossCorruptedPaths.asset"; public static string FalseSonBossOverloadSpike = "RoR2/DLC2/FalseSonBoss/FalseSonBossOverloadSpike.asset"; public static string HalcyoniteMonsterGoldenSwipe = "RoR2/DLC2/Halcyonite/HalcyoniteMonsterGoldenSwipe.asset"; public static string HalcyoniteMonsterTriLaser = "RoR2/DLC2/Halcyonite/HalcyoniteMonsterTriLaser.asset"; public static string HalcyoniteMonsterGoldenSlash = "RoR2/DLC2/Halcyonite/HalcyoniteMonsterGoldenSlash.asset"; public static string HalcyoniteMonsterWhirlwindRush = "RoR2/DLC2/Halcyonite/HalcyoniteMonsterWhirlwindRush.asset"; public static string ScorchlingBreach = "RoR2/DLC2/Scorchling/ScorchlingBreach.asset"; public static string ScorchlingLavaBomb = "RoR2/DLC2/Scorchling/ScorchlingLavaBomb.asset"; public static string ScorchlingEnsureBurrow = "RoR2/DLC2/Scorchling/ScorchlingEnsureBurrow.asset"; public static string SeekerBodyInnerStrength = "RoR2/DLC2/Seeker/SeekerBodyInnerStrength.asset"; public static string SeekerBodySoulSpiral = "RoR2/DLC2/Seeker/SeekerBodySoulSpiral.asset"; public static string SeekerBodyUnseenHand = "RoR2/DLC2/Seeker/SeekerBodyUnseenHand.asset"; public static string SeekerBodyMeditate = "RoR2/DLC2/Seeker/SeekerBodyMeditate.asset"; public static string SeekerPalmBlast = "RoR2/DLC2/Seeker/SeekerPalmBlast.asset"; public static string SeekerBodyReprieve = "RoR2/DLC2/Seeker/SeekerBodyReprieve.asset"; public static string SeekerBodySojourn = "RoR2/DLC2/Seeker/SeekerBodySojourn.asset"; public static string DisabledSkill = "RoR2/DLC2/Common/DisabledSkill.asset"; public static string DefectiveUnitDenial = "RoR2/DLC3/DefectiveUnit/DefectiveUnitDenial.asset"; public static string DefectiveUnitDenialProjectile = "RoR2/DLC3/DefectiveUnit/DefectiveUnitDenialProjectile.asset"; public static string DefectiveUnitDetonate11 = "RoR2/DLC3/DefectiveUnit/DefectiveUnitDetonate.asset"; public static string EmptyBag = "RoR2/DLC3/Drifter/EmptyBag.asset"; public static string Repossess = "RoR2/DLC3/Drifter/Repossess.asset"; public static string SuffocateSlam = "RoR2/DLC3/Drifter/SuffocateSlam.asset"; public static string Suffocate = "RoR2/DLC3/Drifter/Suffocate.asset"; public static string BluntForceTornado = "RoR2/DLC3/Drifter/BluntForceTornado.asset"; public static string TornadoSlam = "RoR2/DLC3/Drifter/TornadoSlam.asset"; public static string NanoBomb = "RoR2/DLC3/Drone Tech/NanoBomb.asset"; public static string FireNanoPistol = "RoR2/DLC3/Drone Tech/FireNanoPistol.asset"; public static string CommandBombardment = "RoR2/DLC3/Drone Tech/CommandBombardment.asset"; public static string CommandBomber = "RoR2/DLC3/Drone Tech/CommandBomber.asset"; public static string CommandCleanup = "RoR2/DLC3/Drone Tech/CommandCleanup.asset"; public static string CommandWarcry = "RoR2/DLC3/Drone Tech/CommandWarcry.asset"; public static string CopycatActivateSkillDef = "RoR2/DLC3/Drone Tech/CopycatActivateSkillDef.asset"; public static string CommandFireTurretSkillDef = "RoR2/DLC3/Drone Tech/CommandFireTurretSkillDef.asset"; public static string CommandHealSkillDef = "RoR2/DLC3/Drone Tech/CommandHealSkillDef.asset"; public static string CommandFireTurretBounce = "RoR2/DLC3/Drone Tech/CommandFireTurretBounce.asset"; public static string CommandElevate = "RoR2/DLC3/Drone Tech/CommandElevate.asset"; public static string CommandStimSkillDef = "RoR2/DLC3/Drone Tech/CommandStimSkillDef.asset"; public static string CommandHealNova = "RoR2/DLC3/Drone Tech/CommandHealNova.asset"; public static string CommandFlamethrowerActivate = "RoR2/DLC3/Drone Tech/CommandFlamethrowerActivate.asset"; public static string CommandGeneric = "RoR2/DLC3/Drone Tech/CommandGeneric.asset"; public static string CommandHaul = "RoR2/DLC3/Drone Tech/CommandHaul.asset"; public static string CommandTrap = "RoR2/DLC3/Drone Tech/CommandTrap.asset"; public static string CommandFireJunk = "RoR2/DLC3/Drone Tech/CommandFireJunk.asset"; public static string MegaCommandActivateSkillDef = "RoR2/DLC3/Drone Tech/MegaCommandActivateSkillDef.asset"; public static string MissileCommandActivateSkillDef = "RoR2/DLC3/Drone Tech/MissileCommandActivateSkillDef.asset"; public static string CommandRecharge = "RoR2/DLC3/Drone Tech/CommandRecharge.asset"; public static string StrikeCommandActivateSkillDef = "RoR2/DLC3/Drone Tech/StrikeCommandActivateSkillDef.asset"; public static string DroneBall = "RoR2/DLC3/Drone Tech/DroneBall.asset"; public static string DroneBallShootable = "RoR2/DLC3/Drone Tech/DroneBallShootable.asset"; public static string DroneLeap6 = "RoR2/DLC3/Drone Tech/DroneLeap.asset"; public static string DroneLeapRepeat = "RoR2/DLC3/Drone Tech/DroneLeapRepeat.asset"; public static string CommandShieldFormation = "RoR2/DLC3/Drone Tech/CommandShieldFormation.asset"; public static string BombardmentDroneRemoteOpSkillDef = "RoR2/DLC3/Drones/BombardmentDroneRemoteOpSkillDef.asset"; public static string BombardmentDroneSkillDef = "RoR2/DLC3/Drones/BombardmentDroneSkillDef.asset"; public static string CancelCleanup = "RoR2/DLC3/Drones/CancelCleanup.asset"; public static string DroneRecycle = "RoR2/DLC3/Drones/DroneRecycle.asset"; public static string DroneRecycleRemoteOp = "RoR2/DLC3/Drones/DroneRecycleRemoteOp.asset"; public static string ApproachEnemySkillDef = "RoR2/DLC3/Drones/ApproachEnemySkillDef.asset"; public static string ElevateEnemySkillDef = "RoR2/DLC3/Drones/ElevateEnemySkillDef.asset"; public static string GrabEnemySkillDef = "RoR2/DLC3/Drones/GrabEnemySkillDef.asset"; public static string JailerDroneRemoteOpSkillDef = "RoR2/DLC3/Drones/JailerDroneRemoteOpSkillDef.asset"; public static string DroneJailerTrapSkillDef = "RoR2/DLC3/Drones/DroneJailerTrapSkillDef.asset"; public static string JunkDroneSupriseSkill = "RoR2/DLC3/Drones/JunkDroneSupriseSkill.asset"; public static string RechargeBeam = "RoR2/DLC3/Drones/RechargeBeam.asset"; public static string ExtractorUnitDuplicate = "RoR2/DLC3/ExtractorUnit/ExtractorUnitDuplicate.asset"; public static string ExtractorUnitExtract = "RoR2/DLC3/ExtractorUnit/ExtractorUnitExtract.asset"; public static string KineticAura = "RoR2/DLC3/FriendUnit/KineticAura.asset"; public static string FriendUnitLovesYou = "RoR2/DLC3/FriendUnit/FriendUnitLovesYou.asset"; public static string Playtime = "RoR2/DLC3/FriendUnit/Playtime.asset"; public static string AimSkillDef = "RoR2/DLC3/IronHauler/AimSkillDef.asset"; public static string ShootProjectileSkillDef = "RoR2/DLC3/IronHauler/ShootProjectileSkillDef.asset"; public static string MinePodSkillMinePlant = "RoR2/DLC3/MinePod/MinePodSkillMinePlant.asset"; public static string MinePodSkillTeleport = "RoR2/DLC3/MinePod/MinePodSkillTeleport.asset"; public static string SolusAmalgamatorFlamethrowerCannon = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorFlamethrowerCannon.asset"; public static string SolusAmalgamatorMissilePod = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorMissilePod.asset"; public static string SolusAmalgamatorDetachFlamethrowerCannon = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorDetachFlamethrowerCannon.asset"; public static string SolusAmalgamatorDetachMissilePod = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorDetachMissilePod.asset"; public static string SolusAmalgamatorDetachThruster = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorDetachThruster.asset"; public static string SolusAmalgamatorFlamethrowerTurret = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorFlamethrowerTurret.asset"; public static string SolusAmalgamatorArtillaryStrike = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorArtillaryStrike.asset"; public static string SolusAmalgamatorBeam = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorBeam.asset"; public static string SolusAmalgamatorShockArmor = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorShockArmor.asset"; public static string SolusAmalgamatorThruster = "RoR2/DLC3/SolusAmalgamator/SolusAmalgamatorThruster.asset"; public static string EntityStatesSolusHeartNothing = "RoR2/DLC3/SolusHeart/EntityStates.SolusHeart.Nothing.asset"; public static string SolusHeartSkillDefTeleport = "RoR2/DLC3/SolusHeart/SolusHeartSkillDefTeleport.asset"; public static string SolusHeartSkillDefTeleportRandom = "RoR2/DLC3/SolusHeart/SolusHeartSkillDefTeleportRandom.asset"; public static string SolusWingSpecialSkillDef = "RoR2/DLC3/SolusWing/SolusWing Special Skill Def.asset"; public static string SolusWingPrimarySkillDef = "RoR2/DLC3/SolusWing/SolusWing Primary Skill Def.asset"; public static string SolusWingSecondaryGravPulse = "RoR2/DLC3/SolusWing/SolusWing Secondary GravPulse.asset"; public static string SolusWingSecondaryGravPulseGlitched = "RoR2/DLC3/SolusWing/SolusWing Secondary GravPulseGlitched.asset"; public static string SolusWingSecondarySuppression = "RoR2/DLC3/SolusWing/SolusWing Secondary Suppression.asset"; public static string OverheatLaser = "RoR2/DLC3/SolusWing/OverheatLaser.asset"; public static string OverheatLaserGlitched = "RoR2/DLC3/SolusWing/OverheatLaserGlitched.asset"; public static string SolusWingSpecialSkillDef5 = "RoR2/DLC3/SolusWing/Solus Wing Special Skill Def.asset"; public static string TankerAccelerant = "RoR2/DLC3/Tanker/TankerAccelerant.asset"; public static string TankerIgnite = "RoR2/DLC3/Tanker/TankerIgnite.asset"; public static string SolusVendorStealItem = "RoR2/DLC3/SolusVendorStealItem.asset"; public static string AirbornePrimary = "RoR2/DLC3/VultureHunter/AirbornePrimary.asset"; public static string ChargeSolusLaser = "RoR2/DLC3/VultureHunter/ChargeSolusLaser.asset"; public static string Murder = "RoR2/DLC3/VultureHunter/Murder.asset"; public static string BombingRunLaserSkill = "RoR2/DLC3/VultureHunter/BombingRunLaserSkill.asset"; public static string BombingRunSkill = "RoR2/DLC3/VultureHunter/BombingRunSkill.asset"; public static string Calldown = "RoR2/DLC3/VultureHunter/Calldown.asset"; public static string LeaveSpear = "RoR2/DLC3/VultureHunter/LeaveSpear.asset"; public static string ThrowSpear = "RoR2/DLC3/VultureHunter/ThrowSpear.asset"; public static string WorkerUnitDrillDash = "RoR2/DLC3/WorkerUnit/WorkerUnitDrillDash.asset"; public static string WorkerUnitFrenziedMelee = "RoR2/DLC3/WorkerUnit/WorkerUnitFrenziedMelee.asset"; public static string AncientWispBodyEnrage = "RoR2/Junk/AncientWisp/AncientWispBodyEnrage.asset"; public static string AncientWispBodyRain = "RoR2/Junk/AncientWisp/AncientWispBodyRain.asset"; public static string AncientWispBodyRHCanon = "RoR2/Junk/AncientWisp/AncientWispBodyRHCanon.asset"; public static string ArchWispBodyCannons = "RoR2/Junk/ArchWisp/ArchWispBodyCannons.asset"; public static string AssassinBodyFireGrenade = "RoR2/Junk/Assassin/AssassinBodyFireGrenade.asset"; public static string AssassinBodyPlaceMine = "RoR2/Junk/Assassin/AssassinBodyPlaceMine.asset"; public static string AssassinBodyUtility = "RoR2/Junk/Assassin/AssassinBodyUtility.asset"; public static string BackupDroneOldBodyGun = "RoR2/Junk/BackupDroneOld/BackupDroneOldBodyGun.asset"; public static string BanditBodyCloak = "RoR2/Junk/Bandit/BanditBodyCloak.asset"; public static string BanditBodyFireShotgun = "RoR2/Junk/Bandit/BanditBodyFireShotgun.asset"; public static string BanditBodyGrenade = "RoR2/Junk/Bandit/BanditBodyGrenade.asset"; public static string BanditBodyLightsOut = "RoR2/Junk/Bandit/BanditBodyLightsOut.asset"; public static string BomberBodyFireBarrage = "RoR2/Junk/Bomber/BomberBodyFireBarrage.asset"; public static string BomberBodyFireRocket = "RoR2/Junk/Bomber/BomberBodyFireRocket.asset"; public static string BomberBodyPaintMicroMissiles = "RoR2/Junk/Bomber/BomberBodyPaintMicroMissiles.asset"; public static string BomberBodyRoll = "RoR2/Junk/Bomber/BomberBodyRoll.asset"; public static string CallSupplyDropDefense = "RoR2/Junk/Captain/CallSupplyDropDefense.asset"; public static string ClayBodyLeap = "RoR2/Junk/ClayMan/ClayBodyLeap.asset"; public static string ClayBodySwipeForward = "RoR2/Junk/ClayMan/ClayBodySwipeForward.asset"; public static string CommandoBodySweepBarrage = "RoR2/Junk/Commando/CommandoBodySweepBarrage.asset"; public static string ThrowStickyGrenade = "RoR2/Junk/Commando/ThrowStickyGrenade.asset"; public static string CommandoPerformanceTestBodyBarrage = "RoR2/Junk/CommandoPerformanceTest/CommandoPerformanceTestBodyBarrage.asset"; public static string CommandoPerformanceTestBodyFireFMJ = "RoR2/Junk/CommandoPerformanceTest/CommandoPerformanceTestBodyFireFMJ.asset"; public static string CommandoPerformanceTestBodyFirePistol = "RoR2/Junk/CommandoPerformanceTest/CommandoPerformanceTestBodyFirePistol.asset"; public static string CommandoPerformanceTestBodyRoll = "RoR2/Junk/CommandoPerformanceTest/CommandoPerformanceTestBodyRoll.asset"; public static string EnforcerBodyFireBarrage = "RoR2/Junk/Enforcer/EnforcerBodyFireBarrage.asset"; public static string EnforcerBodyFireFMJ = "RoR2/Junk/Enforcer/EnforcerBodyFireFMJ.asset"; public static string EnforcerBodyFirePistol = "RoR2/Junk/Enforcer/EnforcerBodyFirePistol.asset"; public static string EnforcerBodyRoll = "RoR2/Junk/Enforcer/EnforcerBodyRoll.asset"; public static string EngiBeamTurretBodyTurret = "RoR2/Junk/Engi/EngiBeamTurretBodyTurret.asset"; public static string PortalFist = "RoR2/Junk/GrandParent/PortalFist.asset"; public static string HANDBodyFireWinch = "RoR2/Junk/HAND/HANDBodyFire Winch.asset"; public static string HANDBodyFullSwing = "RoR2/Junk/HAND/HANDBodyFullSwing.asset"; public static string HANDBodyOverclock = "RoR2/Junk/HAND/HANDBodyOverclock.asset"; public static string HANDBodySlam = "RoR2/Junk/HAND/HANDBodySlam.asset"; public static string BeginOvercharge = "RoR2/Junk/Loader/BeginOvercharge.asset"; public static string MercBodyGroundLight = "RoR2/Junk/Merc/MercBodyGroundLight.asset"; public static string PaladinBodyBarrierUp = "RoR2/Junk/Paladin/PaladinBodyBarrierUp.asset"; public static string PaladinBodyLeap = "RoR2/Junk/Paladin/PaladinBodyLeap.asset"; public static string PaladinBodyRocket = "RoR2/Junk/Paladin/PaladinBodyRocket.asset"; public static string PotMobileBodyFireCannon = "RoR2/Junk/PotMobile/PotMobileBodyFireCannon.asset"; public static string PotMobile2BodyFireCannon = "RoR2/Junk/PotMobile2/PotMobile2BodyFireCannon.asset"; public static string EnableEyebeam = "RoR2/Junk/RoboBallBoss/EnableEyebeam.asset"; public static string SniperBodyFireFMJ = "RoR2/Junk/Sniper/SniperBodyFireFMJ.asset"; public static string SniperBodyFireRifle = "RoR2/Junk/Sniper/SniperBodyFireRifle.asset"; public static string SniperBodyReload = "RoR2/Junk/Sniper/SniperBodyReload.asset"; public static string SniperBodyRoll = "RoR2/Junk/Sniper/SniperBodyRoll.asset"; public static string TreebotBodySonicPull = "RoR2/Junk/Treebot/TreebotBodySonicPull.asset"; public static string LunarClawSpecialReplacement = "RoR2/Junk/LunarSkillReplacements/LunarClawSpecialReplacement.asset"; } public static class SurvivorDef { public static string Bandit2 = "RoR2/Base/Bandit2/Bandit2.asset"; public static string Captain = "RoR2/Base/Captain/Captain.asset"; public static string Commando = "RoR2/Base/Commando/Commando.asset"; public static string Croco = "RoR2/Base/Croco/Croco.asset"; public static string Engi = "RoR2/Base/Engi/Engi.asset"; public static string Heretic = "RoR2/Base/Heretic/Heretic.asset"; public static string Huntress = "RoR2/Base/Huntress/Huntress.asset"; public static string Loader = "RoR2/Base/Loader/Loader.asset"; public static string Mage = "RoR2/Base/Merc/Mage.asset"; public static string Merc = "RoR2/Base/Merc/Merc.asset"; public static string Toolbot = "RoR2/Base/Toolbot/Toolbot.asset"; public static string Treebot = "RoR2/Base/Treebot/Treebot.asset"; public static string Railgunner = "RoR2/DLC1/Railgunner/Railgunner.asset"; public static string VoidSurvivor = "RoR2/DLC1/VoidSurvivor/VoidSurvivor.asset"; public static string Chef = "RoR2/DLC2/Chef/Chef.asset"; public static string FalseSon = "RoR2/DLC2/FalseSon/FalseSon.asset"; public static string Seeker = "RoR2/DLC2/Seeker/Seeker.asset"; public static string Drifter = "RoR2/DLC3/Drifter/Drifter.asset"; public static string DroneTech = "RoR2/DLC3/Drone Tech/DroneTech.asset"; } public static class BuffDef { public static string bdBanditSkull = "RoR2/Base/Bandit2/bdBanditSkull.asset"; public static string bdCloakSpeed = "RoR2/Base/Bandit2/bdCloakSpeed.asset"; public static string bdSuperBleed = "RoR2/Base/Bandit2/bdSuperBleed.asset"; public static string bdBeetleJuice = "RoR2/Base/BeetleGroup/bdBeetleJuice.asset"; public static string bdBlight = "RoR2/Base/Croco/bdBlight.asset"; public static string bdCrocoRegen = "RoR2/Base/Croco/bdCrocoRegen.asset"; public static string bdPoisoned = "RoR2/Base/Croco/bdPoisoned.asset"; public static string bdOverheat = "RoR2/Base/Grandparent/bdOverheat.asset"; public static string bdLunarShell = "RoR2/Base/LunarGolem/bdLunarShell.asset"; public static string bdMercExpose = "RoR2/Base/Merc/bdMercExpose.asset"; public static string bdNullified = "RoR2/Base/Nullifier/bdNullified.asset"; public static string bdNullifyStack = "RoR2/Base/Nullifier/bdNullifyStack.asset"; public static string bdEngiShield = "RoR2/Base/RoboBallBoss/bdEngiShield.asset"; public static string bdEntangle = "RoR2/Base/Treebot/bdEntangle.asset"; public static string bdFruiting = "RoR2/Base/Treebot/bdFruiting.asset"; public static string bdWeak = "RoR2/Base/Treebot/bdWeak.asset"; public static string bdArmorBoost = "RoR2/Base/Common/bdArmorBoost.asset"; public static string bdBleeding = "RoR2/Base/Common/bdBleeding.asset"; public static string bdClayGoo = "RoR2/Base/Common/bdClayGoo.asset"; public static string bdCloak = "RoR2/Base/Common/bdCloak.asset"; public static string bdCripple = "RoR2/Base/Common/bdCripple.asset"; public static string bdHiddenInvincibility = "RoR2/Base/Common/bdHiddenInvincibility.asset"; public static string bdImmune = "RoR2/Base/Common/bdImmune.asset"; public static string bdIntangible = "RoR2/Base/Common/bdIntangible.asset"; public static string bdOnFire = "RoR2/Base/Common/bdOnFire.asset"; public static string bdSlow50 = "RoR2/Base/Common/bdSlow50.asset"; public static string bdSlow80 = "RoR2/Base/Common/bdSlow80.asset"; public static string bdSmallArmorBoost = "RoR2/Base/Common/bdSmallArmorBoost.asset"; public static string bdVoidFogMild = "RoR2/Base/Common/bdVoidFogMild.asset"; public static string bdVoidFogStackCooldown = "RoR2/Base/Common/bdVoidFogStackCooldown.asset"; public static string bdVoidFogStrong = "RoR2/Base/Common/bdVoidFogStrong.asset"; public static string bdEliteFire = "RoR2/Base/EliteFire/bdEliteFire.asset"; public static string bdEliteHaunted = "RoR2/Base/EliteHaunted/bdEliteHaunted.asset"; public static string bdEliteHauntedRecipient = "RoR2/Base/EliteHaunted/bdEliteHauntedRecipient.asset"; public static string bdEliteIce = "RoR2/Base/EliteIce/bdEliteIce.asset"; public static string bdEliteLightning = "RoR2/Base/EliteLightning/bdEliteLightning.asset"; public static string bdEliteLunar = "RoR2/Base/EliteLunar/bdEliteLunar.asset"; public static string bdElitePoison = "RoR2/Base/ElitePoison/bdElitePoison.asset"; public static string bdHealingDisabled = "RoR2/Base/ElitePoison/bdHealingDisabled.asset"; public static string bdFullCrit = "RoR2/Base/CritOnUse/bdFullCrit.asset"; public static string bdElephantArmorBoost = "RoR2/Base/GainArmor/bdElephantArmorBoost.asset"; public static string bdBugWings = "RoR2/Base/Jetpack/bdBugWings.asset"; public static string bdLifeSteal = "RoR2/Base/LifestealOnHit/bdLifeSteal.asset"; public static string bdTeamWarCry = "RoR2/Base/TeamWarCry/bdTeamWarCry.asset"; public static string bdTonicBuff = "RoR2/Base/Tonic/bdTonicBuff.asset"; public static string bdPermanentCurse = "RoR2/Base/EclipseRun/bdPermanentCurse.asset"; public static string bdPulverizeBuildup = "RoR2/Base/ArmorReductionOnHit/bdPulverizeBuildup.asset"; public static string bdPulverized = "RoR2/Base/ArmorReductionOnHit/bdPulverized.asset"; public static string bdAttackSpeedOnCrit = "RoR2/Base/AttackSpeedOnCrit/bdAttackSpeedOnCrit.asset"; public static string bdDeathMark = "RoR2/Base/DeathMark/bdDeathMark.asset"; public static string bdElementalRingsCooldown = "RoR2/Base/ElementalRings/bdElementalRingsCooldown.asset"; public static string bdElementalRingsReady = "RoR2/Base/ElementalRings/bdElementalRingsReady.asset"; public static string bdEnergized = "RoR2/Base/EnergizedOnEquipmentUse/bdEnergized.asset"; public static string bdNoCooldowns = "RoR2/Base/KillEliteFrenzy/bdNoCooldowns.asset"; public static string bdLaserTurbineKillCharge = "RoR2/Base/LaserTurbine/bdLaserTurbineKillCharge.asset"; public static string bdLunarSecondaryRoot = "RoR2/Base/LunarSkillReplacements/bdLunarSecondaryRoot.asset"; public static string bdLunarDetonationCharge = "RoR2/Base/LunarSkillReplacements/bdLunarDetonationCharge.asset"; public static string bdMedkitHeal = "RoR2/Base/Medkit/bdMedkitHeal.asset"; public static string bdPowerBuff = "RoR2/Base/RandomDamageZone/bdPowerBuff.asset"; public static string bdTeslaField = "RoR2/Base/ShockNearby/bdTeslaField.asset"; public static string bdSlow60 = "RoR2/Base/SlowOnHit/bdSlow60.asset"; public static string bdWhipBoost = "RoR2/Base/SprintOutOfCombat/bdWhipBoost.asset"; public static string bdWarCryBuff = "RoR2/Base/WarCryOnMultiKill/bdWarCryBuff.asset"; public static string bdWarbanner = "RoR2/Base/WardOnLevel/bdWarbanner.asset"; public static string bdJailerSlow = "RoR2/DLC1/VoidJailer/bdJailerSlow.asset"; public static string bdJailerTether = "RoR2/DLC1/VoidJailer/bdJailerTether.asset"; public static string bdVoidRaidCrabWardWipeFog = "RoR2/DLC1/VoidRaidCrab/bdVoidRaidCrabWardWipeFog.asset"; public static string bdVoidSurvivorCorruptMode = "RoR2/DLC1/VoidSurvivor/bdVoidSurvivorCorruptMode.asset"; public static string bdBlinded = "RoR2/DLC1/Common/Buffs/bdBlinded.asset"; public static string bdEliteEarth = "RoR2/DLC1/EliteEarth/bdEliteEarth.asset"; public static string bdEliteSecretSpeed = "RoR2/DLC1/bdEliteSecretSpeed.asset"; public static string bdEliteVoid = "RoR2/DLC1/EliteVoid/bdEliteVoid.asset"; public static string bdBearVoidCooldown = "RoR2/DLC1/BearVoid/bdBearVoidCooldown.asset"; public static string bdBearVoidReady = "RoR2/DLC1/BearVoid/bdBearVoidReady.asset"; public static string bdFracture = "RoR2/DLC1/BleedOnHitVoid/bdFracture.asset"; public static string bdElementalRingVoidCooldown = "RoR2/DLC1/ElementalRingVoid/bdElementalRingVoidCooldown.asset"; public static string bdElementalRingVoidReady = "RoR2/DLC1/ElementalRingVoid/bdElementalRingVoidReady.asset"; public static string bdImmuneToDebuffCooldown = "RoR2/DLC1/ImmuneToDebuff/bdImmuneToDebuffCooldown.asset"; public static string bdImmuneToDebuffReady = "RoR2/DLC1/ImmuneToDebuff/bdImmuneToDebuffReady.asset"; public static string bdKillMoveSpeed = "RoR2/DLC1/MoveSpeedOnKill/bdKillMoveSpeed.asset"; public static string bdMushroomVoidActive = "RoR2/DLC1/MushroomVoid/bdMushroomVoidActive.asset"; public static string bdOutOfCombatArmorBuff = "RoR2/DLC1/OutOfCombatArmor/bdOutOfCombatArmorBuff.asset"; public static string bdPermanentDebuff = "RoR2/DLC1/PermanentDebuffOnHit/bdPermanentDebuff.asset"; public static string bdPrimarySkillShurikenBuff = "RoR2/DLC1/PrimarySkillShuriken/bdPrimarySkillShurikenBuff.asset"; public static string bdStrongerBurn = "RoR2/DLC1/StrengthenBurn/bdStrongerBurn.asset"; public static string bdAmputate = "RoR2/DLC2/bdAmputate.asset"; public static string bdAttackSpeedPerNearbyAllyOrEnemyBuff = "RoR2/DLC2/bdAttackSpeedPerNearbyAllyOrEnemyBuff.asset"; public static string bdBeadArmor = "RoR2/DLC2/bdBeadArmor.asset"; public static string bdBoostAllStatsBuff = "RoR2/DLC2/bdBoostAllStatsBuff.asset"; public static string bdDisableAllSkills = "RoR2/DLC2/bdDisableAllSkills.asset"; public static string bdElusiveAntlersBuff = "RoR2/DLC2/bdElusiveAntlersBuff.asset"; public static string bdExtraBossMissile = "RoR2/DLC2/bdExtraBossMissile.asset"; public static string bdHiddenRejectAllDamage = "RoR2/DLC2/bdHiddenRejectAllDamage.asset"; public static string bdSojournVehicle = "RoR2/DLC2/bdSojournVehicle.asset"; public static string bdBoosted = "RoR2/DLC2/Chef/Buffs/bdBoosted.asset"; public static string bdboostedFireEffect = "RoR2/DLC2/Chef/Buffs/bdboostedFireEffect.asset"; public static string bdboostedFrostEffect = "RoR2/DLC2/Chef/Buffs/bdboostedFrostEffect.asset"; public static string bdCookingChilled = "RoR2/DLC2/Chef/Buffs/bdCookingChilled.asset"; public static string bdCookingChopped = "RoR2/DLC2/Chef/Buffs/bdCookingChopped.asset"; public static string bdCookingOiled = "RoR2/DLC2/Chef/Buffs/bdCookingOiled.asset"; public static string bdCookingRoasted = "RoR2/DLC2/Chef/Buffs/bdCookingRoasted.asset"; public static string bdCookingRolled = "RoR2/DLC2/Chef/Buffs/bdCookingRolled.asset"; public static string bdCookingRolling = "RoR2/DLC2/Chef/Buffs/bdCookingRolling.asset"; public static string bdCookingSearing = "RoR2/DLC2/Chef/Buffs/bdCookingSearing.asset"; public static string bdOiled = "RoR2/DLC2/Chef/bdOiled.asset"; public static string bdFreezeImmune = "RoR2/DLC2/Chef/bdFreezeImmune.asset"; public static string bdFrost = "RoR2/DLC2/Chef/bdFrost.asset"; public static string bdChildFrolicCooldown = "RoR2/DLC2/Child/bdChildFrolicCooldown.asset"; public static string bdCorruptionFesters = "RoR2/DLC2/CorruptionSpike/bdCorruptionFesters.asset"; public static string bdWeakenedBeating = "RoR2/DLC2/CorruptionSpike/bdWeakenedBeating.asset"; public static string bdlunarruin = "RoR2/DLC2/FalseSon/bdlunarruin.asset"; public static string bdTamperingASAndArmorBonus = "RoR2/DLC2/FalseSon/bdTamperingASAndArmorBonus.asset"; public static string bdTamperingMSAndHRBonus = "RoR2/DLC2/FalseSon/bdTamperingMSAndHRBonus.asset"; public static string bdEnergizedCore = "RoR2/DLC2/FalseSon/bdEnergizedCore.asset"; public static string bdChakraBuff = "RoR2/DLC2/Seeker/ChakraBuff/bdChakraBuff.asset"; public static string bdRevitalizeBuff = "RoR2/DLC2/Seeker/RevitalizeBuff/bdRevitalizeBuff.asset"; public static string bdSeekerRevivedOnce = "RoR2/DLC2/Seeker/RevitalizeBuff/bdSeekerRevivedOnce.asset"; public static string bdPalmBlastHiddenArmor = "RoR2/DLC2/Seeker/bdPalmBlastHiddenArmor.asset"; public static string bdSeekerAnimaBuff = "RoR2/DLC2/Seeker/bdSeekerAnimaBuff.asset"; public static string bdSoulFatigue = "RoR2/DLC2/Seeker/bdSoulFatigue.asset"; public static string bdSoulSurge = "RoR2/DLC2/Seeker/bdSoulSurge.asset"; public static string bdSojournHealing = "RoR2/DLC2/Seeker/bdSojournHealing.asset"; public static string bdAurelioniteBlessing = "RoR2/DLC2/Elites/EliteAurelionite/bdAurelioniteBlessing.asset"; public static string bdEliteAurelionite = "RoR2/DLC2/Elites/EliteAurelionite/bdEliteAurelionite.asset"; public static string bdEliteBead = "RoR2/DLC2/Elites/EliteBead/bdEliteBead.asset"; public static string bdEliteBeadCorruption = "RoR2/DLC2/Elites/EliteBead/bdEliteBeadCorruption.asset"; public static string bdEliteBeadThorns = "RoR2/DLC2/Elites/EliteBead/bdEliteBeadThorns.asset"; public static string bdHealAndReviveRegenBuff = "RoR2/DLC2/HealAndRevive/bdHealAndReviveRegenBuff.asset"; public static string bdGeodeBuff = "RoR2/DLC2/bdGeodeBuff.asset"; public static string bdExtraLifeBuff = "RoR2/DLC2/bdExtraLifeBuff.asset"; public static string bdSoulCost = "RoR2/DLC2/bdSoulCost.asset"; public static string bdDelayedDamageBuff = "RoR2/DLC2/Items/DelayedDamage/bdDelayedDamageBuff.asset"; public static string bdDelayedDamageDebuff = "RoR2/DLC2/Items/DelayedDamage/bdDelayedDamageDebuff.asset"; public static string bdExtraStatsOnLevelUpBuff = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/bdExtraStatsOnLevelUpBuff.asset"; public static string bdIncreaseDamageBuff = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/bdIncreaseDamageBuff.asset"; public static string bdKnockBackActiveWindow = "RoR2/DLC2/Items/KnockBackHitEnemies/bdKnockBackActiveWindow.asset"; public static string bdKnockBackAvailable = "RoR2/DLC2/Items/KnockBackHitEnemies/bdKnockBackAvailable.asset"; public static string bdKnockBackUnavailable = "RoR2/DLC2/Items/KnockBackHitEnemies/bdKnockBackUnavailable.asset"; public static string bdKnockUpHitEnemies = "RoR2/DLC2/Items/KnockBackHitEnemies/bdKnockUpHitEnemies.asset"; public static string bdKnockUpHitEnemiesJuggleCount = "RoR2/DLC2/Items/KnockBackHitEnemies/bdKnockUpHitEnemiesJuggleCount.asset"; public static string bdFreeUnlocks = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/bdFreeUnlocks.asset"; public static string bdStunAndPierceBuff = "RoR2/DLC2/Items/StunAndPierce/bdStunAndPierceBuff.asset"; public static string bdTeleportOnLowHealth = "RoR2/DLC2/Items/TeleportOnLowHealth/bdTeleportOnLowHealth.asset"; public static string bdTeleportOnLowHealthActive = "RoR2/DLC2/Items/TeleportOnLowHealth/bdTeleportOnLowHealthActive.asset"; public static string bdTeleportOnLowHealthCooldown = "RoR2/DLC2/Items/TeleportOnLowHealth/bdTeleportOnLowHealthCooldown.asset"; public static string bdTeleportOnLowHealthVictim = "RoR2/DLC2/Items/TeleportOnLowHealth/bdTeleportOnLowHealthVictim.asset"; public static string bdDrifterHoardLuck = "RoR2/DLC3/Drifter/bdDrifterHoardLuck.asset"; public static string bdStimShot = "RoR2/DLC3/Drone Tech/bdStimShot.asset"; public static string bdHealNovaRegen = "RoR2/DLC3/Drone Tech/bdHealNovaRegen.asset"; public static string bdCleanupExecute = "RoR2/DLC3/Drones/bdCleanupExecute.asset"; public static string bdJailed = "RoR2/DLC3/Drones/bdJailed.asset"; public static string bdUnderclock = "RoR2/DLC3/SolusHeart/bdUnderclock.asset"; public static string bdSlow10Stacking = "RoR2/DLC3/VultureHunter/bdSlow10Stacking.asset"; public static string bdVultureRoot = "RoR2/DLC3/VultureHunter/bdVultureRoot.asset"; public static string bdAccelerant = "RoR2/DLC3/Buffs/bdAccelerant.asset"; public static string bdAccelerantIgnited = "RoR2/DLC3/Buffs/bdAccelerantIgnited.asset"; public static string bdBrittle = "RoR2/DLC3/Buffs/bdBrittle.asset"; public static string bdDrifterCleanupArmor = "RoR2/DLC3/Buffs/bdDrifterCleanupArmor.asset"; public static string bdDrifterFallProtection = "RoR2/DLC3/Buffs/bdDrifterFallProtection.asset"; public static string bdDroneArmor = "RoR2/DLC3/Buffs/bdDroneArmor.asset"; public static string bdElectrocuted = "RoR2/DLC3/Buffs/bdElectrocuted.asset"; public static string bdElectrocutioner = "RoR2/DLC3/Buffs/bdElectrocutioner.asset"; public static string bdGravitySlow = "RoR2/DLC3/Buffs/bdGravitySlow.asset"; public static string bdIgnoreInventoryDisable = "RoR2/DLC3/Buffs/bdIgnoreInventoryDisable.asset"; public static string bdInventoryDisable = "RoR2/DLC3/Buffs/bdInventoryDisable.asset"; public static string bdNanoBug = "RoR2/DLC3/Buffs/bdNanoBug.asset"; public static string bdNoGravity = "RoR2/DLC3/Buffs/bdNoGravity.asset"; public static string bdPowerCubeBuff = "RoR2/DLC3/Buffs/bdPowerCubeBuff.asset"; public static string bdPowerOrbBuff = "RoR2/DLC3/Buffs/bdPowerOrbBuff.asset"; public static string bdPowerPyramidBuff = "RoR2/DLC3/Buffs/bdPowerPyramidBuff.asset"; public static string bdShieldTankDamage = "RoR2/DLC3/Buffs/bdShieldTankDamage.asset"; public static string bdSolusWingInvulnerability = "RoR2/DLC3/Buffs/bdSolusWingInvulnerability.asset"; public static string bdSolusWingWeakpointDestroyed = "RoR2/DLC3/Buffs/bdSolusWingWeakpointDestroyed.asset"; public static string bdSureProc = "RoR2/DLC3/Buffs/bdSureProc.asset"; public static string bdTaunted = "RoR2/DLC3/Buffs/bdTaunted.asset"; public static string bdTinkerJitter = "RoR2/DLC3/Buffs/bdTinkerJitter.asset"; public static string bdTrashToTreasureGreen = "RoR2/DLC3/Buffs/bdTrashToTreasureGreen.asset"; public static string bdTrashToTreasureRed = "RoR2/DLC3/Buffs/bdTrashToTreasureRed.asset"; public static string bdTrashToTreasureWhite = "RoR2/DLC3/Buffs/bdTrashToTreasureWhite.asset"; public static string bdTrashToTreasureYellow = "RoR2/DLC3/Buffs/bdTrashToTreasureYellow.asset"; public static string bdUntargetable = "RoR2/DLC3/Buffs/bdUntargetable.asset"; public static string bdCollectiveShareBuff = "RoR2/DLC3/Collective/bdCollectiveShareBuff.asset"; public static string bdEliteCollective = "RoR2/DLC3/Collective/bdEliteCollective.asset"; public static string bdParrying = "RoR2/DLC3/Parry/bdParrying.asset"; public static string bdCritChanceAndDamage = "RoR2/DLC3/Items/CritAtLowerElevation/bdCritChanceAndDamage.asset"; public static string bdSharedSuffering = "RoR2/DLC3/Items/SharedSuffering/bdSharedSuffering.asset"; public static string bdSharedSufferingStock = "RoR2/DLC3/Items/SharedSuffering/bdSharedSufferingStock.asset"; public static string bdSharedSufferingStockEmpty = "RoR2/DLC3/Items/SharedSuffering/bdSharedSufferingStockEmpty.asset"; public static string bdConductive = "RoR2/DLC3/Items/ShockDamageAura/bdConductive.asset"; public static string bdShockDamageEnergized = "RoR2/DLC3/Items/ShockDamageAura/bdShockDamageEnergized.asset"; public static string bdSpeedOnPickup = "RoR2/DLC3/Items/SpeedOnPickup/bdSpeedOnPickup.asset"; public static string bdTransferDebuffOnHit = "RoR2/DLC3/Items/TransferDebuffOnHit/bdTransferDebuffOnHit.asset"; public static string bdTransferingItem = "RoR2/DLC3/Items/TransferDebuffOnHit/bdTransferingItem.asset"; public static string bdUltimateMealBoost = "RoR2/DLC3/Items/UltimateMeal/bdUltimateMealBoost.asset"; public static string bdUltimateMealDecaying = "RoR2/DLC3/Items/UltimateMeal/bdUltimateMealDecaying.asset"; public static string bdDeafened = "RoR2/InDev/bdDeafened.asset"; public static string bdEliteEcho = "RoR2/InDev/bdEliteEcho.asset"; public static string bdBodyArmor = "RoR2/Junk/Common/bdBodyArmor.asset"; public static string bdEngiTeamShield = "RoR2/Junk/Common/bdEngiTeamShield.asset"; public static string bdEnrageAncientWisp = "RoR2/Junk/Common/bdEnrageAncientWisp.asset"; public static string bdGoldEmpowered = "RoR2/Junk/Common/bdGoldEmpowered.asset"; public static string bdIgnoreFallDamage = "RoR2/Junk/Common/bdIgnoreFallDamage.asset"; public static string bdLightningShield = "RoR2/Junk/Common/bdLightningShield.asset"; public static string bdLoaderOvercharged = "RoR2/Junk/Common/bdLoaderOvercharged.asset"; public static string bdLoaderPylonPowered = "RoR2/Junk/Common/bdLoaderPylonPowered.asset"; public static string bdMeatRegenBoost = "RoR2/Junk/Common/bdMeatRegenBoost.asset"; public static string bdSlow30 = "RoR2/Junk/Common/bdSlow30.asset"; public static string bdAchievementRewardTest = "RoR2/AchievementRewardTest/bdAchievementRewardTest.asset"; } public static class ItemDisplayRuleSet { public static string idrsBandit2 = "RoR2/Base/Bandit2/idrsBandit2.asset"; public static string idrsBeetle = "RoR2/Base/Beetle/idrsBeetle.asset"; public static string idrsBeetleGuard = "RoR2/Base/BeetleGuard/idrsBeetleGuard.asset"; public static string idrsBeetleQueen = "RoR2/Base/BeetleQueen/idrsBeetleQueen.asset"; public static string idrsBell = "RoR2/Base/Bell/idrsBell.asset"; public static string idrsBison = "RoR2/Base/Bison/idrsBison.asset"; public static string idrsBrother = "RoR2/Base/Brother/idrsBrother.asset"; public static string idrsCaptain = "RoR2/Base/Captain/idrsCaptain.asset"; public static string idrsClayBoss = "RoR2/Base/ClayBoss/idrsClayBoss.asset"; public static string idrsClayBruiser = "RoR2/Base/ClayBruiser/idrsClayBruiser.asset"; public static string idrsCommando = "RoR2/Base/Commando/idrsCommando.asset"; public static string idrsCroco = "RoR2/Base/Croco/idrsCroco.asset"; public static string idrsBackupDrone = "RoR2/Base/Drones/idrsBackupDrone.asset"; public static string idrsDrone1 = "RoR2/Base/Drones/idrsDrone1.asset"; public static string idrsDrone2 = "RoR2/Base/Drones/idrsDrone2.asset"; public static string idrsEmergencyDrone = "RoR2/Base/Drones/idrsEmergencyDrone.asset"; public static string idrsEquipmentDrone = "RoR2/Base/Drones/idrsEquipmentDrone.asset"; public static string idrsFlameDrone = "RoR2/Base/Drones/idrsFlameDrone.asset"; public static string idrsMegaDrone = "RoR2/Base/Drones/idrsMegaDrone.asset"; public static string idrsMissileDrone = "RoR2/Base/Drones/idrsMissileDrone.asset"; public static string idrsTurret1 = "RoR2/Base/Drones/idrsTurret1.asset"; public static string idrsEngi = "RoR2/Base/Engi/idrsEngi.asset"; public static string idrsEngiTurret = "RoR2/Base/Engi/idrsEngiTurret.asset"; public static string idrsEngiWalkerTurret = "RoR2/Base/Engi/idrsEngiWalkerTurret.asset"; public static string idrsFusionCellDestructible = "RoR2/Base/FusionCellDestructible/idrsFusionCellDestructible.asset"; public static string idrsGolem = "RoR2/Base/Golem/idrsGolem.asset"; public static string idrsGrandparent = "RoR2/Base/Grandparent/idrsGrandparent.asset"; public static string idrsGravekeeper = "RoR2/Base/Gravekeeper/idrsGravekeeper.asset"; public static string idrsGreaterWisp = "RoR2/Base/GreaterWisp/idrsGreaterWisp.asset"; public static string idrsHeretic = "RoR2/Base/Heretic/idrsHeretic.asset"; public static string idrsHermitCrab = "RoR2/Base/HermitCrab/idrsHermitCrab.asset"; public static string idrsHuntress = "RoR2/Base/Huntress/idrsHuntress.asset"; public static string idrsImp = "RoR2/Base/Imp/idrsImp.asset"; public static string idrsImpBoss = "RoR2/Base/ImpBoss/idrsImpBoss.asset"; public static string idrsJellyfish = "RoR2/Base/Jellyfish/idrsJellyfish.asset"; public static string idrsLemurian = "RoR2/Base/Lemurian/idrsLemurian.asset"; public static string idrsLemurianBruiser = "RoR2/Base/LemurianBruiser/idrsLemurianBruiser.asset"; public static string idrsLoader = "RoR2/Base/Loader/idrsLoader.asset"; public static string idrsLunarExploder = "RoR2/Base/LunarExploder/idrsLunarExploder.asset"; public static string idrsLunarGolem = "RoR2/Base/LunarGolem/idrsLunarGolem.asset"; public static string idrsLunarWisp = "RoR2/Base/LunarWisp/idrsLunarWisp.asset"; public static string idrsMage = "RoR2/Base/Mage/idrsMage.asset"; public static string idrsMagmaWorm = "RoR2/Base/MagmaWorm/idrsMagmaWorm.asset"; public static string idrsMerc = "RoR2/Base/Merc/idrsMerc.asset"; public static string idrsMiniMushroom = "RoR2/Base/MiniMushroom/idrsMiniMushroom.asset"; public static string idrsNullifier = "RoR2/Base/Nullifier/idrsNullifier.asset"; public static string idrsParent = "RoR2/Base/Parent/idrsParent.asset"; public static string idrsRoboBallBoss = "RoR2/Base/RoboBallBoss/idrsRoboBallBoss.asset"; public static string idrsRoboBallMini = "RoR2/Base/RoboBallBoss/idrsRoboBallMini.asset"; public static string idrsScav = "RoR2/Base/Scav/idrsScav.asset"; public static string idrsNewt = "RoR2/Base/Shopkeeper/idrsNewt.asset"; public static string idrsTitan = "RoR2/Base/Titan/idrsTitan.asset"; public static string idrsToolbot = "RoR2/Base/Toolbot/idrsToolbot.asset"; public static string idrsTreebot = "RoR2/Base/Treebot/idrsTreebot.asset"; public static string idrsVagrant = "RoR2/Base/Vagrant/idrsVagrant.asset"; public static string idrsVulture = "RoR2/Base/Vulture/idrsVulture.asset"; public static string idrsWisp = "RoR2/Base/Wisp/idrsWisp.asset"; public static string idrsNone = "RoR2/Base/Core/idrsNone.asset"; public static string idrsUrchinTurret = "RoR2/Base/ElitePoison/idrsUrchinTurret.asset"; public static string idrsStrikeDrone = "RoR2/Base/DroneBackup/idrsStrikeDrone.asset"; public static string idrsSquidTurret = "RoR2/Base/Squid/idrsSquidTurret.asset"; public static string idrsAcidLarva = "RoR2/DLC1/AcidLarva/idrsAcidLarva.asset"; public static string idrsAssassin2 = "RoR2/DLC1/Assassin2/idrsAssassin2.asset"; public static string idrsClayGrenadier = "RoR2/DLC1/ClayGrenadier/idrsClayGrenadier.asset"; public static string idrsDroneCommander = "RoR2/DLC1/DroneCommander/idrsDroneCommander.asset"; public static string idrsFlyingVermin = "RoR2/DLC1/FlyingVermin/idrsFlyingVermin.asset"; public static string idrsGeep = "RoR2/DLC1/Gup/idrsGeep.asset"; public static string idrsGip = "RoR2/DLC1/Gup/idrsGip.asset"; public static string idrsGup = "RoR2/DLC1/Gup/idrsGup.asset"; public static string idrsMajorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/idrsMajorConstruct.asset"; public static string idrsMegaConstruct = "RoR2/DLC1/MajorAndMinorConstruct/idrsMegaConstruct.asset"; public static string idrsMinorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/idrsMinorConstruct.asset"; public static string idrsRailGunner = "RoR2/DLC1/Railgunner/idrsRailGunner.asset"; public static string idrsVermin = "RoR2/DLC1/Vermin/idrsVermin.asset"; public static string idrsVoidBarnacle = "RoR2/DLC1/VoidBarnacle/idrsVoidBarnacle.asset"; public static string idrsVoidJailer = "RoR2/DLC1/VoidJailer/idrsVoidJailer.asset"; public static string idrsVoidMegaCrab = "RoR2/DLC1/VoidMegaCrab/idrsVoidMegaCrab.asset"; public static string idrsVoidSurvivor = "RoR2/DLC1/VoidSurvivor/idrsVoidSurvivor.asset"; public static string idrsChef = "RoR2/DLC2/Chef/idrsChef.asset"; public static string idrsChild = "RoR2/DLC2/Child/idrsChild.asset"; public static string idrsFalseSon = "RoR2/DLC2/FalseSon/idrsFalseSon.asset"; public static string idrsHalcyonite = "RoR2/DLC2/Halcyonite/idrsHalcyonite.asset"; public static string idrsScorchling = "RoR2/DLC2/Scorchling/idrsScorchling.asset"; public static string idrsSeeker = "RoR2/DLC2/Seeker/idrsSeeker.asset"; public static string idrsDefectiveUnit = "RoR2/DLC3/DefectiveUnit/idrsDefectiveUnit.asset"; public static string idrsDrifter = "RoR2/DLC3/Drifter/idrsDrifter.asset"; public static string idrsDroneTech = "RoR2/DLC3/Drone Tech/idrsDroneTech.asset"; public static string idrsBombardmentDrone = "RoR2/DLC3/Drones/idrsBombardmentDrone.asset"; public static string idrsCleanupDrone = "RoR2/DLC3/Drones/idrsCleanupDrone.asset"; public static string idrsCopycatDrone = "RoR2/DLC3/Drones/idrsCopycatDrone.asset"; public static string idrsDroneBomber = "RoR2/DLC3/Drones/idrsDroneBomber.asset"; public static string idrsDTHaulerDrone = "RoR2/DLC3/Drones/idrsDTHaulerDrone.asset"; public static string idrsHaulerDrone = "RoR2/DLC3/Drones/idrsHaulerDrone.asset"; public static string idrsJailerDrone = "RoR2/DLC3/Drones/idrsJailerDrone.asset"; public static string idrsJunkDrone = "RoR2/DLC3/Drones/idrsJunkDrone.asset"; public static string idrsRechargeDrone = "RoR2/DLC3/Drones/idrsRechargeDrone.asset"; public static string idrsExtractorUnit = "RoR2/DLC3/ExtractorUnit/idrsExtractorUnit.asset"; public static string idrsFriendUnit = "RoR2/DLC3/FriendUnit/idrsFriendUnit.asset"; public static string idrsIronHauler = "RoR2/DLC3/IronHauler/idrsIronHauler.asset"; public static string idrsMinePod = "RoR2/DLC3/MinePod/idrsMinePod.asset"; public static string idrsFlamethrowerCannon = "RoR2/DLC3/SolusAmalgamator/idrsFlamethrowerCannon.asset"; public static string idrsSolusAmalgamatorBoss = "RoR2/DLC3/SolusAmalgamator/idrsSolusAmalgamatorBoss.asset"; public static string idrsMissilePod = "RoR2/DLC3/SolusAmalgamator/idrsMissilePod.asset"; public static string idrsThruster = "RoR2/DLC3/SolusAmalgamator/idrsThruster.asset"; public static string idrsThruster31 = "RoR2/DLC3/SolusMine/idrsThruster.asset"; public static string idrsSolusWing = "RoR2/DLC3/SolusWing/idrsSolusWing.asset"; public static string idrsTanker = "RoR2/DLC3/Tanker/idrsTanker.asset"; public static string idrsVultureHunter = "RoR2/DLC3/VultureHunter/idrsVultureHunter.asset"; public static string idrsWorkerUnit = "RoR2/DLC3/WorkerUnit/idrsWorkerUnit.asset"; public static string idrsAncientWisp = "RoR2/Junk/AncientWisp/idrsAncientWisp.asset"; public static string idrsArchWisp = "RoR2/Junk/ArchWisp/idrsArchWisp.asset"; public static string idrsRoboAssassin = "RoR2/Junk/Assassin/idrsRoboAssassin.asset"; public static string idrsBandit = "RoR2/Junk/Bandit/idrsBandit.asset"; public static string idrsClayman = "RoR2/Junk/ClayMan/idrsClayman.asset"; public static string idrsHand = "RoR2/Junk/HAND/idrsHand.asset"; public static string idrsPotMobile = "RoR2/Junk/PotMobile/idrsPotMobile.asset"; } public static class ReloadSkillDef { public static string Bandit2Blast = "RoR2/Base/Bandit2/Bandit2Blast.asset"; public static string FireShotgun2 = "RoR2/Base/Bandit2/FireShotgun2.asset"; } public static class CharacterSpawnCard { public static string cscBeetle = "RoR2/Base/Beetle/cscBeetle.asset"; public static string cscBeetleSulfur = "RoR2/Base/Beetle/cscBeetleSulfur.asset"; public static string cscBeetleGuard = "RoR2/Base/BeetleGuard/cscBeetleGuard.asset"; public static string cscBeetleGuardSulfur = "RoR2/Base/BeetleGuard/cscBeetleGuardSulfur.asset"; public static string cscBeetleQueen = "RoR2/Base/BeetleQueen/cscBeetleQueen.asset"; public static string cscBeetleQueenSulfur = "RoR2/Base/BeetleQueen/cscBeetleQueenSulfur.asset"; public static string cscBell = "RoR2/Base/Bell/cscBell.asset"; public static string cscBison = "RoR2/Base/Bison/cscBison.asset"; public static string cscBrother = "RoR2/Base/Brother/cscBrother.asset"; public static string cscBrotherHurt = "RoR2/Base/Brother/cscBrotherHurt.asset"; public static string cscClayBoss = "RoR2/Base/ClayBoss/cscClayBoss.asset"; public static string cscClayBruiser = "RoR2/Base/ClayBruiser/cscClayBruiser.asset"; public static string cscBackupDrone = "RoR2/Base/Drones/cscBackupDrone.asset"; public static string cscElectricWorm = "RoR2/Base/ElectricWorm/cscElectricWorm.asset"; public static string cscGolem = "RoR2/Base/Golem/cscGolem.asset"; public static string cscGolemNature = "RoR2/Base/Golem/cscGolemNature.asset"; public static string cscGolemSandy = "RoR2/Base/Golem/cscGolemSandy.asset"; public static string cscGolemSnowy = "RoR2/Base/Golem/cscGolemSnowy.asset"; public static string cscGrandparent = "RoR2/Base/Grandparent/cscGrandparent.asset"; public static string cscGravekeeper = "RoR2/Base/Gravekeeper/cscGravekeeper.asset"; public static string cscGreaterWisp = "RoR2/Base/GreaterWisp/cscGreaterWisp.asset"; public static string cscHermitCrab = "RoR2/Base/HermitCrab/cscHermitCrab.asset"; public static string cscImp = "RoR2/Base/Imp/cscImp.asset"; public static string cscImpBoss = "RoR2/Base/ImpBoss/cscImpBoss.asset"; public static string cscJellyfish = "RoR2/Base/Jellyfish/cscJellyfish.asset"; public static string cscLemurian = "RoR2/Base/Lemurian/cscLemurian.asset"; public static string cscLemurianBruiser = "RoR2/Base/LemurianBruiser/cscLemurianBruiser.asset"; public static string cscLunarExploder = "RoR2/Base/LunarExploder/cscLunarExploder.asset"; public static string cscLunarGolem = "RoR2/Base/LunarGolem/cscLunarGolem.asset"; public static string cscLunarWisp = "RoR2/Base/LunarWisp/cscLunarWisp.asset"; public static string cscMagmaWorm = "RoR2/Base/MagmaWorm/cscMagmaWorm.asset"; public static string cscMiniMushroom = "RoR2/Base/MiniMushroom/cscMiniMushroom.asset"; public static string cscNullifier = "RoR2/Base/Nullifier/cscNullifier.asset"; public static string cscNullifierAlly = "RoR2/Base/Nullifier/cscNullifierAlly.asset"; public static string cscParent = "RoR2/Base/Parent/cscParent.asset"; public static string cscRoboBallBoss = "RoR2/Base/RoboBallBoss/cscRoboBallBoss.asset"; public static string cscRoboBallMini = "RoR2/Base/RoboBallBoss/cscRoboBallMini.asset"; public static string cscRoboBallMiniElite = "RoR2/Base/RoboBallBoss/cscRoboBallMini_Elite.asset"; public static string cscSuperRoboBallBoss = "RoR2/Base/RoboBallBoss/cscSuperRoboBallBoss.asset"; public static string cscScav = "RoR2/Base/Scav/cscScav.asset"; public static string cscScavBoss = "RoR2/Base/Scav/cscScavBoss.asset"; public static string cscTitanBlackBeach = "RoR2/Base/Titan/cscTitanBlackBeach.asset"; public static string cscTitanDampCave = "RoR2/Base/Titan/cscTitanDampCave.asset"; public static string cscTitanGolemPlains = "RoR2/Base/Titan/cscTitanGolemPlains.asset"; public static string cscTitanGooLake = "RoR2/Base/Titan/cscTitanGooLake.asset"; public static string cscTitanGold = "RoR2/Base/Titan/cscTitanGold.asset"; public static string cscVagrant = "RoR2/Base/Vagrant/cscVagrant.asset"; public static string cscVulture = "RoR2/Base/Vulture/cscVulture.asset"; public static string cscVultureSH = "RoR2/Base/Vulture/cscVulture_SH.asset"; public static string cscLesserWisp = "RoR2/Base/Wisp/cscLesserWisp.asset"; public static string cscBeetleGuardAlly = "RoR2/Base/BeetleGland/cscBeetleGuardAlly.asset"; public static string cscRoboBallGreenBuddy = "RoR2/Base/RoboBallBuddy/cscRoboBallGreenBuddy.asset"; public static string cscRoboBallRedBuddy = "RoR2/Base/RoboBallBuddy/cscRoboBallRedBuddy.asset"; public static string cscSquidTurret = "RoR2/Base/Squid/cscSquidTurret.asset"; public static string cscTitanGoldAlly = "RoR2/Base/TitanGoldDuringTP/cscTitanGoldAlly.asset"; public static string cscAcidLarva = "RoR2/DLC1/AcidLarva/cscAcidLarva.asset"; public static string cscAssassin2 = "RoR2/DLC1/Assassin2/cscAssassin2.asset"; public static string cscClayGrenadier = "RoR2/DLC1/ClayGrenadier/cscClayGrenadier.asset"; public static string cscDroneCommander = "RoR2/DLC1/DroneCommander/cscDroneCommander.asset"; public static string cscFlyingVermin = "RoR2/DLC1/FlyingVermin/cscFlyingVermin.asset"; public static string cscFlyingVerminSnowy = "RoR2/DLC1/FlyingVermin/cscFlyingVerminSnowy.asset"; public static string cscGeepBody = "RoR2/DLC1/Gup/cscGeepBody.asset"; public static string cscGipBody = "RoR2/DLC1/Gup/cscGipBody.asset"; public static string cscGupBody = "RoR2/DLC1/Gup/cscGupBody.asset"; public static string cscMajorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/cscMajorConstruct.asset"; public static string cscMegaConstruct = "RoR2/DLC1/MajorAndMinorConstruct/cscMegaConstruct.asset"; public static string cscMinorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/cscMinorConstruct.asset"; public static string cscMinorConstructAttachable = "RoR2/DLC1/MajorAndMinorConstruct/cscMinorConstructAttachable.asset"; public static string cscMinorConstructOnKill = "RoR2/DLC1/MajorAndMinorConstruct/cscMinorConstructOnKill.asset"; public static string cscVermin = "RoR2/DLC1/Vermin/cscVermin.asset"; public static string cscVerminSnowy = "RoR2/DLC1/Vermin/cscVerminSnowy.asset"; public static string cscVoidBarnacle = "RoR2/DLC1/VoidBarnacle/cscVoidBarnacle.asset"; public static string cscVoidBarnacleAlly = "RoR2/DLC1/VoidBarnacle/cscVoidBarnacleAlly.asset"; public static string cscVoidBarnacleNoCast = "RoR2/DLC1/VoidBarnacle/cscVoidBarnacleNoCast.asset"; public static string cscVoidJailer = "RoR2/DLC1/VoidJailer/cscVoidJailer.asset"; public static string cscVoidJailerAlly = "RoR2/DLC1/VoidJailer/cscVoidJailerAlly.asset"; public static string cscVoidMegaCrab = "RoR2/DLC1/VoidMegaCrab/cscVoidMegaCrab.asset"; public static string cscVoidMegaCrabAlly = "RoR2/DLC1/VoidMegaCrab/cscVoidMegaCrabAlly.asset"; public static string cscVoidRaidCrab = "RoR2/DLC1/VoidRaidCrab/cscVoidRaidCrab.asset"; public static string cscVoidRaidCrabJoint = "RoR2/DLC1/VoidRaidCrab/cscVoidRaidCrabJoint.asset"; public static string cscMiniVoidRaidCrabBase = "RoR2/DLC1/VoidRaidCrab/cscMiniVoidRaidCrabBase.asset"; public static string cscMiniVoidRaidCrabPhase1 = "RoR2/DLC1/VoidRaidCrab/cscMiniVoidRaidCrabPhase1.asset"; public static string cscMiniVoidRaidCrabPhase2 = "RoR2/DLC1/VoidRaidCrab/cscMiniVoidRaidCrabPhase2.asset"; public static string cscMiniVoidRaidCrabPhase3 = "RoR2/DLC1/VoidRaidCrab/cscMiniVoidRaidCrabPhase3.asset"; public static string cscVoidInfestor = "RoR2/DLC1/EliteVoid/cscVoidInfestor.asset"; public static string cscBrotherIT = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/cscBrotherIT.asset"; public static string cscChild = "RoR2/DLC2/Child/cscChild.asset"; public static string cscCorruptionSpike = "RoR2/DLC2/CorruptionSpike/cscCorruptionSpike.asset"; public static string cscFalseSonBoss = "RoR2/DLC2/FalseSonBoss/cscFalseSonBoss.asset"; public static string cscFalseSonBossLunarShard = "RoR2/DLC2/FalseSonBoss/cscFalseSonBossLunarShard.asset"; public static string cscFalseSonBossBrokenLunarShard = "RoR2/DLC2/FalseSonBoss/cscFalseSonBossBrokenLunarShard.asset"; public static string cscHalcyonite = "RoR2/DLC2/Halcyonite/cscHalcyonite.asset"; public static string cscScorchling = "RoR2/DLC2/Scorchling/cscScorchling.asset"; public static string cscDefectiveUnit = "RoR2/DLC3/DefectiveUnit/cscDefectiveUnit.asset"; public static string cscDroneBomber = "RoR2/DLC3/Drones/cscDroneBomber.asset"; public static string cscGunnerDrone = "RoR2/DLC3/Drones/cscGunnerDrone.asset"; public static string cscDTHaulerDrone = "RoR2/DLC3/Drones/cscDTHaulerDrone.asset"; public static string cscHealingDrone = "RoR2/DLC3/Drones/cscHealingDrone.asset"; public static string cscExtractorUnit = "RoR2/DLC3/ExtractorUnit/cscExtractorUnit.asset"; public static string cscFriendUnit = "RoR2/DLC3/FriendUnit/cscFriendUnit.asset"; public static string cscIronHauler = "RoR2/DLC3/IronHauler/cscIronHauler.asset"; public static string cscMinePod = "RoR2/DLC3/MinePod/cscMinePod.asset"; public static string cscSolusAmalgamator = "RoR2/DLC3/SolusAmalgamator/cscSolusAmalgamator.asset"; public static string cscSolusAmalgamatorFlamethrowerCannon = "RoR2/DLC3/SolusAmalgamator/cscSolusAmalgamatorFlamethrowerCannon.asset"; public static string cscSolusAmalgamatorMissilePod = "RoR2/DLC3/SolusAmalgamator/cscSolusAmalgamatorMissilePod.asset"; public static string cscSolusAmalgamatorThruster = "RoR2/DLC3/SolusAmalgamator/cscSolusAmalgamatorThruster.asset"; public static string cscSolusHeart = "RoR2/DLC3/SolusHeart/cscSolusHeart.asset"; public static string cscSolusMine = "RoR2/DLC3/SolusMine/cscSolusMine.asset"; public static string cscSolusWing = "RoR2/DLC3/SolusWing/cscSolusWing.asset"; public static string cscTanker = "RoR2/DLC3/Tanker/cscTanker.asset"; public static string cscVultureHunter = "RoR2/DLC3/VultureHunter/cscVultureHunter.asset"; public static string cscWorkerUnit = "RoR2/DLC3/WorkerUnit/cscWorkerUnit.asset"; public static string cscFriendUnitQuestUnlock = "RoR2/DLC3/FriendUnitUnlockInteractable/cscFriendUnitQuestUnlock.asset"; public static string cscVultureHuntressInvader = "RoR2/DLC3/solutionalhaunt/cscVultureHuntressInvader.asset"; public static string cscVultureMulTInvader = "RoR2/DLC3/solutionalhaunt/cscVultureMulTInvader.asset"; public static string cscArchWisp = "RoR2/Junk/ArchWisp/cscArchWisp.asset"; public static string cscBeetleCrystal = "RoR2/Junk/BeetleCrystal/cscBeetleCrystal.asset"; public static string cscBeetleGuardCrystal = "RoR2/Junk/BeetleGuardCrystal/cscBeetleGuardCrystal.asset"; public static string cscBrotherGlass = "RoR2/Junk/BrotherGlass/cscBrotherGlass.asset"; public static string cscParentPod = "RoR2/Junk/Incubator/cscParentPod.asset"; } public static class AvatarMask { public static string mskBeetleQueenNoIK = "RoR2/Base/BeetleQueen/mskBeetleQueenNoIK.mask"; public static string mskBrotherLeftArm = "RoR2/Base/Brother/mskBrotherLeftArm.mask"; public static string mskCaptainGunArm = "RoR2/Base/Captain/mskCaptainGunArm.mask"; public static string mskCaptainHeadOnly = "RoR2/Base/Captain/mskCaptainHeadOnly.mask"; public static string mskCaptainNormalArm = "RoR2/Base/Captain/mskCaptainNormalArm.mask"; public static string mskCaptainSpine = "RoR2/Base/Captain/mskCaptainSpine.mask"; public static string mskCaptainSpineAndGunArm = "RoR2/Base/Captain/mskCaptainSpineAndGunArm.mask"; public static string mskCaptainUpper = "RoR2/Base/Captain/mskCaptainUpper.mask"; public static string mskCommandoArms = "RoR2/Base/Commando/mskCommandoArms.mask"; public static string mskCommandoSpine = "RoR2/Base/Commando/mskCommandoSpine.mask"; public static string mskCommandoUpper = "RoR2/Base/Commando/mskCommandoUpper.mask"; public static string animCrocoUpperAdditiveMask = "RoR2/Base/Croco/animCrocoUpperAdditiveMask.mask"; public static string animCrocoUpperOverrideMask = "RoR2/Base/Croco/animCrocoUpperOverrideMask.mask"; public static string mskEngiUpper = "RoR2/Base/Engi/mskEngiUpper.mask"; public static string mskGravekeeperJar = "RoR2/Base/Gravekeeper/mskGravekeeperJar.mask"; public static string mskHereticArms = "RoR2/Base/Heretic/mskHereticArms.mask"; public static string mskHereticUpper = "RoR2/Base/Heretic/mskHereticUpper.mask"; public static string mskHuntressSpine = "RoR2/Base/Huntress/mskHuntressSpine.mask"; public static string mskImpEyelids = "RoR2/Base/Imp/mskImpEyelids.mask"; public static string mskLemurianBruiserNoNeck = "RoR2/Base/Lemurian/mskLemurianBruiserNoNeck.mask"; public static string mskLoaderUpperAdditive = "RoR2/Base/Loader/mskLoaderUpperAdditive.mask"; public static string mskLoaderUpperOverride = "RoR2/Base/Loader/mskLoaderUpperOverride.mask"; public static string mdlMageNoCoat = "RoR2/Base/Mage/mdlMageNoCoat.mask"; public static string mskToolbotChestOnly = "RoR2/Base/Toolbot/mskToolbotChestOnly.mask"; public static string mskToolbotGun = "RoR2/Base/Toolbot/mskToolbotGun.mask"; public static string mskRailgunnerGear = "RoR2/DLC1/Railgunner/mskRailgunnerGear.mask"; public static string mskVoidJailerAdditive = "RoR2/DLC1/VoidJailer/mskVoidJailerAdditive.mask"; public static string VoidMegaCrabLeftArmMask = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabLeftArmMask.mask"; public static string VoidMegaCrabLegMask = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabLegMask.mask"; public static string VoidMegaCrabRightArmMask1 = "RoR2/DLC1/VoidMegaCrab/VoidMegaCrabRightArmMask 1.mask"; public static string mskVoidRaidCrabBackLegL = "RoR2/DLC1/VoidRaidCrab/mskVoidRaidCrabBackLegL.mask"; public static string mskVoidRaidCrabBackLegR = "RoR2/DLC1/VoidRaidCrab/mskVoidRaidCrabBackLegR.mask"; public static string mskVoidRaidCrabCenterStack = "RoR2/DLC1/VoidRaidCrab/mskVoidRaidCrabCenterStack.mask"; public static string mskVoidRaidCrabFrontLegL = "RoR2/DLC1/VoidRaidCrab/mskVoidRaidCrabFrontLegL.mask"; public static string mskVoidRaidCrabFrontLegR = "RoR2/DLC1/VoidRaidCrab/mskVoidRaidCrabFrontLegR.mask"; public static string mskVoidRaidCrabMidLegL = "RoR2/DLC1/VoidRaidCrab/mskVoidRaidCrabMidLegL.mask"; public static string mskVoidRaidCrabMidLegR = "RoR2/DLC1/VoidRaidCrab/mskVoidRaidCrabMidLegR.mask"; public static string mskVoidSurvivorBlasterAdditive = "RoR2/DLC1/VoidSurvivor/mskVoidSurvivorBlasterAdditive.mask"; public static string mskVoidSurvivorBlasterOverride = "RoR2/DLC1/VoidSurvivor/mskVoidSurvivorBlasterOverride.mask"; public static string mskVoidSurvivorHandBlastAdditive = "RoR2/DLC1/VoidSurvivor/mskVoidSurvivorHandBlastAdditive.mask"; public static string mskVoidSurvivorHandBlastOverride = "RoR2/DLC1/VoidSurvivor/mskVoidSurvivorHandBlastOverride.mask"; public static string mskVoidSurvivorSpine = "RoR2/DLC1/VoidSurvivor/mskVoidSurvivorSpine.mask"; public static string mskVoidSurvivorVents = "RoR2/DLC1/VoidSurvivor/mskVoidSurvivorVents.mask"; public static string ChefFlinchMask = "RoR2/DLC2/Chef/ChefFlinchMask.mask"; public static string ChefHipMask = "RoR2/DLC2/Chef/ChefHipMask.mask"; public static string ChefSearMask = "RoR2/DLC2/Chef/ChefSearMask.mask"; public static string ChefWheelMask = "RoR2/DLC2/Chef/ChefWheelMask.mask"; public static string FalseSonLaserMask = "RoR2/DLC2/FalseSon/FalseSonLaserMask.mask"; public static string FalseSonUpperMask = "RoR2/DLC2/FalseSon/FalseSonUpperMask.mask"; public static string SeekerFlinchMask = "RoR2/DLC2/Seeker/SeekerFlinchMask.mask"; public static string animSeekerUpperAdditiveMask = "RoR2/DLC2/Seeker/animSeekerUpperAdditiveMask.mask"; public static string animSeekerUpperOverrideMask = "RoR2/DLC2/Seeker/animSeekerUpperOverrideMask.mask"; public static string mskDrifterBag = "RoR2/DLC3/Drifter/mskDrifterBag.mask"; public static string mskDrifterBagFlapAdditive = "RoR2/DLC3/Drifter/mskDrifterBagFlapAdditive.mask"; public static string mskDrifterFullBodyOverride = "RoR2/DLC3/Drifter/mskDrifterFullBodyOverride.mask"; public static string mskDrifterGestureOverride = "RoR2/DLC3/Drifter/mskDrifterGestureOverride.mask"; public static string mskDrifterHead = "RoR2/DLC3/Drifter/mskDrifterHead.mask"; public static string mskDrifterJunkOverride = "RoR2/DLC3/Drifter/mskDrifterJunkOverride.mask"; public static string mskDrifterProjectileDisplayOverride = "RoR2/DLC3/Drifter/mskDrifterProjectileDisplayOverride.mask"; public static string mskDrifterUpperAdditive = "RoR2/DLC3/Drifter/mskDrifterUpperAdditive.mask"; public static string mskDrifterUpperBluntforceAdditive = "RoR2/DLC3/Drifter/mskDrifterUpperBluntforceAdditive.mask"; public static string mskDrifterUpperBluntforceOverride = "RoR2/DLC3/Drifter/mskDrifterUpperBluntforceOverride.mask"; public static string mskDrifterUpperNoBagOverride = "RoR2/DLC3/Drifter/mskDrifterUpperNoBagOverride.mask"; public static string mskDrifterUpperOverride = "RoR2/DLC3/Drifter/mskDrifterUpperOverride.mask"; public static string maskDrifterBagNew = "RoR2/DLC3/Drifter/maskDrifterBagNew.mask"; public static string backpack = "RoR2/DLC3/Drone Tech/backpack.mask"; public static string head = "RoR2/DLC3/Drone Tech/head.mask"; public static string leftarm = "RoR2/DLC3/Drone Tech/left_arm.mask"; public static string mskDroneTechGesture = "RoR2/DLC3/Drone Tech/mskDroneTechGesture.mask"; public static string rightarm = "RoR2/DLC3/Drone Tech/right_arm.mask"; public static string upperbody = "RoR2/DLC3/Drone Tech/upperbody.mask"; public static string headmask = "RoR2/DLC3/SolusHeart/head_mask.mask"; public static string mskSolusWingBallOnly = "RoR2/DLC3/SolusWing/mskSolusWingBallOnly.mask"; public static string maskWorkerUnitArm = "RoR2/DLC3/WorkerUnit/maskWorkerUnitArm.mask"; public static string mskBanditSpine = "RoR2/Junk/Bandit/mskBanditSpine.mask"; public static string mskBanditUpper = "RoR2/Junk/Bandit/mskBanditUpper.mask"; public static string mskSkillbarMaskStock = "RoR2/Junk/UI/mskSkillbarMaskStock.mask"; } public static class GroundedSkillDef { public static string Slide = "RoR2/Base/Brother/Slide.asset"; public static string MiniMushroomBodyHarvest = "RoR2/Base/MiniMushroom/MiniMushroomBodyHarvest.asset"; public static string ParentGroundSlam = "RoR2/Base/Parent/ParentGroundSlam.asset"; public static string FaceSlam = "RoR2/DLC1/ClayGrenadier/FaceSlam.asset"; } public static class CaptainOrbitalSkillDef { public static string PrepAirstrike = "RoR2/Base/Captain/PrepAirstrike.asset"; public static string PrepAirstrikeAlt = "RoR2/Base/Captain/PrepAirstrikeAlt.asset"; } public static class CaptainSupplyDropSkillDef { public static string PrepSupplyDrop = "RoR2/Base/Captain/PrepSupplyDrop.asset"; } public static class AnimationClip { public static string CommandoDisplayGunFXOff = "RoR2/Base/Commando/CommandoDisplayGunFXOff.anim"; public static string CommandoDisplayGunFXOn = "RoR2/Base/Commando/CommandoDisplayGunFXOn.anim"; public static string BackupDronePropellers = "RoR2/Base/Drones/BackupDronePropellers.anim"; public static string Drone1Propeller = "RoR2/Base/Drones/Drone1Propeller.anim"; public static string EquipmentDronePropellers = "RoR2/Base/Drones/EquipmentDronePropellers.anim"; public static string FlameDronePropeller = "RoR2/Base/Drones/FlameDronePropeller.anim"; public static string MissilePropellers = "RoR2/Base/Drones/MissilePropellers.anim"; public static string animDisplaySkinDefault = "RoR2/Base/Engi/animDisplaySkinDefault.anim"; public static string SmokeLinemain = "RoR2/Base/Common/VFX/SmokeLine_main.anim"; public static string RecyclerActivate = "RoR2/Base/LunarRecycler/RecyclerActivate.anim"; public static string MultiShopTerminalArmatureOpenDoor = "RoR2/Base/MultiShopTerminal/MultiShopTerminalArmature_OpenDoor.anim"; public static string SeedAnim = "RoR2/Base/Plant/SeedAnim.anim"; public static string animMiniScene = "RoR2/Base/loadingbasic/animMiniScene.anim"; public static string animMiniSceneBasic = "RoR2/Base/loadingbasic/animMiniSceneBasic.anim"; public static string animMonsterIntro = "RoR2/Base/loadingbasic/animMonsterIntro.anim"; public static string animActiveSiphon = "RoR2/Base/moon2/animActiveSiphon.anim"; public static string animInactiveSiphon = "RoR2/Base/moon2/animInactiveSiphon.anim"; public static string MoonBatteryBloodSiphonActive = "RoR2/Base/moon2/MoonBatteryBloodSiphonActive.anim"; public static string MoonBatteryBloodSiphonInactive = "RoR2/Base/moon2/MoonBatteryBloodSiphonInactive.anim"; public static string animMoonBatteryCrippleWardActive = "RoR2/Base/moon2/animMoonBatteryCrippleWardActive.anim"; public static string animMoonBatteryCrippleWardInactive = "RoR2/Base/moon2/animMoonBatteryCrippleWardInactive.anim"; public static string PortalMsExitSetup = "RoR2/Base/mysteryspace/PortalMsExitSetup.anim"; public static string animBackpackCharged = "RoR2/DLC1/Railgunner/animBackpackCharged.anim"; public static string animBackpackCharging = "RoR2/DLC1/Railgunner/animBackpackCharging.anim"; public static string animBackpackIdle = "RoR2/DLC1/Railgunner/animBackpackIdle.anim"; public static string animBackpackOffline = "RoR2/DLC1/Railgunner/animBackpackOffline.anim"; public static string animBackpackReboot = "RoR2/DLC1/Railgunner/animBackpackReboot.anim"; public static string railgunTracerFX = "RoR2/DLC1/Railgunner/railgunTracerFX.anim"; public static string railgunTracerSuperFX = "RoR2/DLC1/Railgunner/railgunTracerSuperFX.anim"; public static string railgunTracerLightFX = "RoR2/DLC1/Railgunner/railgunTracerLightFX.anim"; public static string animRailgunnerReloadUIFailure = "RoR2/DLC1/Railgunner/animRailgunnerReloadUIFailure.anim"; public static string animRailgunnerReloadUISuccess = "RoR2/DLC1/Railgunner/animRailgunnerReloadUISuccess.anim"; public static string animRailgunnerReloadUIWindowActive = "RoR2/DLC1/Railgunner/animRailgunnerReloadUIWindowActive.anim"; public static string animRailgunnerReloadUIWindowIdle = "RoR2/DLC1/Railgunner/animRailgunnerReloadUIWindowIdle.anim"; public static string ChargeBlackCannonFX = "RoR2/DLC1/VoidMegaCrab/Charge Black Cannon FX.anim"; public static string ChargeWhiteCannonFX = "RoR2/DLC1/VoidMegaCrab/Charge White Cannon FX.anim"; public static string ShootBlackCannonFX = "RoR2/DLC1/VoidMegaCrab/Shoot Black Cannon FX.anim"; public static string ShootWhiteCannonFX = "RoR2/DLC1/VoidMegaCrab/Shoot White Cannon FX.anim"; public static string StopCannonFXOnDeath = "RoR2/DLC1/VoidMegaCrab/Stop Cannon FX On Death.anim"; public static string VoidSurvivorDisplayTurnOnFX = "RoR2/DLC1/VoidSurvivor/VoidSurvivorDisplayTurnOnFX.anim"; public static string animVoidSurvivorUICorruption0 = "RoR2/DLC1/VoidSurvivor/animVoidSurvivorUICorruption0.anim"; public static string animVoidSurvivorUICorruption25 = "RoR2/DLC1/VoidSurvivor/animVoidSurvivorUICorruption25.anim"; public static string animVoidSurvivorUICorruption50 = "RoR2/DLC1/VoidSurvivor/animVoidSurvivorUICorruption50.anim"; public static string animVoidSurvivorUICorruption75 = "RoR2/DLC1/VoidSurvivor/animVoidSurvivorUICorruption75.anim"; public static string animVoidSurvivorUIPulse = "RoR2/DLC1/VoidSurvivor/animVoidSurvivorUIPulse.anim"; public static string animVoidSurvivorUIPulseLoop = "RoR2/DLC1/VoidSurvivor/animVoidSurvivorUIPulseLoop.anim"; public static string DropSoda1 = "RoR2/DLC1/VendingMachine/DropSoda1.anim"; public static string DropSoda2 = "RoR2/DLC1/VendingMachine/DropSoda2.anim"; public static string DropSoda3 = "RoR2/DLC1/VendingMachine/DropSoda3.anim"; public static string DropSoda4 = "RoR2/DLC1/VendingMachine/DropSoda4.anim"; public static string DropSoda5 = "RoR2/DLC1/VendingMachine/DropSoda5.anim"; public static string DropSoda6 = "RoR2/DLC1/VendingMachine/DropSoda6.anim"; public static string DropSodaInfinite = "RoR2/DLC1/VendingMachine/DropSodaInfinite.anim"; public static string VendingMachineHit = "RoR2/DLC1/VendingMachine/VendingMachineHit.anim"; public static string VendingMachineInitialSlam = "RoR2/DLC1/VendingMachine/VendingMachineInitialSlam.anim"; public static string animActive = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/animActive.anim"; public static string animAwaitingActivation = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/animAwaitingActivation.anim"; public static string animCorrallingPlayers = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/animCorrallingPlayers.anim"; public static string animSelfDestruct = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/animSelfDestruct.anim"; public static string animationInfiniteTowerUIFinish = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/animationInfiniteTowerUIFinish.anim"; public static string animationInfiniteTowerUIFullyCharged = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/animationInfiniteTowerUIFullyCharged.anim"; public static string animationInfiniteTowerUIPulseBar = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/animationInfiniteTowerUIPulseBar.anim"; public static string VoidSuppressorBurstFXAnim = "RoR2/DLC1/VoidSuppressor/Void Suppressor Burst FX Anim.anim"; public static string VoidSuppressorItemAppearAnim = "RoR2/DLC1/VoidSuppressor/Void Suppressor Item Appear Anim.anim"; public static string VoidSuppressorItemHide = "RoR2/DLC1/VoidSuppressor/Void Suppressor Item Hide.anim"; public static string VoidSuppressorItemSuppressedForever = "RoR2/DLC1/VoidSuppressor/Void Suppressor Item Suppressed Forever.anim"; public static string VoidSuppressorItemSuppressed = "RoR2/DLC1/VoidSuppressor/Void Suppressor Item Suppressed.anim"; public static string VoidSuppressorPassiveHidingFXAnim = "RoR2/DLC1/VoidSuppressor/Void Suppressor Passive Hiding FX Anim.anim"; public static string VoidSuppressorVibrateIntoGroundFX = "RoR2/DLC1/VoidSuppressor/Void Suppressor Vibrate Into Ground FX.anim"; public static string animationVoidWardCrabFXActive = "RoR2/DLC1/VoidWardCrab/animationVoidWardCrabFX@Active.anim"; public static string animationVoidWardCrabFXAllFXOff = "RoR2/DLC1/VoidWardCrab/animationVoidWardCrabFX@AllFXOff.anim"; public static string animationVoidWardCrabFXAwaitingActivation = "RoR2/DLC1/VoidWardCrab/animationVoidWardCrabFX@AwaitingActivation.anim"; public static string animationVoidWardCrabFXComplete = "RoR2/DLC1/VoidWardCrab/animationVoidWardCrabFX@Complete.anim"; public static string animationVoidWardCrabFXTraveling = "RoR2/DLC1/VoidWardCrab/animationVoidWardCrabFX@Traveling.anim"; public static string WillowWispVoidIdle = "RoR2/DLC1/ExplodeOnDeathVoid/WillowWispVoidIdle.anim"; public static string LunarSunProjectileNoiseAnimation = "RoR2/DLC1/LunarSun/LunarSunProjectileNoiseAnimation.anim"; public static string dominoflip = "RoR2/DLC1/RandomlyLunar/domino_flip.anim"; public static string dominoidle = "RoR2/DLC1/RandomlyLunar/domino_idle.anim"; public static string dominostill = "RoR2/DLC1/RandomlyLunar/domino_still.anim"; public static string LightStatueIdle = "RoR2/DLC1/ancientloft/LightStatue_Idle.anim"; public static string PillarBrokenIdle = "RoR2/DLC1/ancientloft/PillarBroken_Idle.anim"; public static string PillarIntactIdle = "RoR2/DLC1/ancientloft/PillarIntact_Idle.anim"; public static string VoidOutroCameraGolemplains = "RoR2/DLC1/voidoutro/VoidOutroCamera_Golemplains.anim"; public static string VoidOutroCameraPortal = "RoR2/DLC1/voidoutro/VoidOutroCamera_Portal.anim"; public static string voidoutroCameraSweeps2 = "RoR2/DLC1/voidoutro/voidoutroCameraSweeps2.anim"; public static string CapturedPlantEntryAnimation = "RoR2/DLC1/voidoutro/CapturedPlantEntryAnimation.anim"; public static string CapturedPlantSpinLoop = "RoR2/DLC1/voidoutro/CapturedPlantSpinLoop.anim"; public static string FadeBlackDefaultState = "RoR2/DLC1/voidoutro/Fade Black Default State.anim"; public static string FadeToBlack1 = "RoR2/DLC1/voidoutro/Fade To Black 1.anim"; public static string ImportanCrabBlueEyesActivate = "RoR2/DLC1/voidoutro/ImportanCrabBlueEyesActivate.anim"; public static string ImportantCrabPurpleEyesActivate = "RoR2/DLC1/voidoutro/ImportantCrabPurpleEyesActivate.anim"; public static string ImportantCrabWakeup = "RoR2/DLC1/voidoutro/ImportantCrabWakeup.anim"; public static string RaidCrabOutroFlashToBlue = "RoR2/DLC1/voidoutro/RaidCrabOutroFlashToBlue.anim"; public static string RaidCrabOutroWakeup1 = "RoR2/DLC1/voidoutro/RaidCrabOutroWakeup1.anim"; public static string ChefAimPitchFull = "RoR2/DLC2/Chef/Chef_AimPitch_Full.anim"; public static string ChefDisplaySparkVFXOn = "RoR2/DLC2/Chef/ChefDisplaySparkVFXOn.anim"; public static string FSArmatureSprintForwardFootsteps = "RoR2/DLC2/FalseSon/FSArmature_SprintForward_Footsteps.anim"; public static string FSArmatureSpecialFireLoopedited = "RoR2/DLC2/FalseSon/FSArmature_SpecialFireLoop_edited.anim"; public static string ASFalseSonBossSpikeSpawnPhase02 = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_SpikeSpawn_Phase02.anim"; public static string ASFalseSonBossSpikeSpawnPhase03 = "RoR2/DLC2/FalseSon/AS_FalseSonBoss_SpikeSpawn_Phase03.anim"; public static string FSDisplayUnstableMajor = "RoR2/DLC2/FalseSon/FSDisplayUnstableMajor.anim"; public static string FSDisplayUnstableMinor = "RoR2/DLC2/FalseSon/FSDisplayUnstableMinor.anim"; public static string FSBLunarRainSpawn = "RoR2/DLC2/FalseSonBoss/FSBLunarRainSpawn.anim"; public static string ASHalcyonitePrimaryThrustModified = "RoR2/DLC2/Halcyonite/AS_Halcyonite_PrimaryThrust_Modified.anim"; public static string ScorchlingPitchReversed = "RoR2/DLC2/Scorchling/Scorchling_Pitch_Reversed.anim"; public static string ScorchlingYawReversed = "RoR2/DLC2/Scorchling/Scorchling_Yaw_Reversed.anim"; public static string SeekerLobyVFXOn = "RoR2/DLC2/Seeker/SeekerLobyVFXOn.anim"; public static string DefectiveUnitChargeProjectile = "RoR2/DLC3/DefectiveUnit/DefectiveUnit_ChargeProjectile.anim"; public static string DefectiveUnitIdleLowered = "RoR2/DLC3/DefectiveUnit/DefectiveUnit_Idle_Lowered.anim"; public static string eyevanish = "RoR2/DLC3/DefectiveUnit/eye_vanish.anim"; public static string BagRumble = "RoR2/DLC3/Drifter/Bag_Rumble.anim"; public static string AimExpel = "RoR2/DLC3/Drifter/AimExpel.anim"; public static string BagBurst = "RoR2/DLC3/Drifter/BagBurst.anim"; public static string bagflapclosed = "RoR2/DLC3/Drifter/bagflap_closed.anim"; public static string cleanupcancel = "RoR2/DLC3/Drifter/clean_up_cancel.anim"; public static string cleanupreadypld = "RoR2/DLC3/Drifter/cleanup_ready_pld.anim"; public static string cleanupthrow = "RoR2/DLC3/Drifter/cleanup_throw.anim"; public static string CleanupHold = "RoR2/DLC3/Drifter/CleanupHold.anim"; public static string CleanupIdle = "RoR2/DLC3/Drifter/CleanupIdle.anim"; public static string CleanupProjectileReady = "RoR2/DLC3/Drifter/CleanupProjectileReady.anim"; public static string expelaim = "RoR2/DLC3/Drifter/expel_aim.anim"; public static string TinkerDrag = "RoR2/DLC3/Drifter/TinkerDrag.anim"; public static string BagBurst25 = "RoR2/DLC3/Drifter/Bag_Burst.anim"; public static string BagScale = "RoR2/DLC3/Drifter/Bag_Scale.anim"; public static string BagShrinkDeath = "RoR2/DLC3/Drifter/Bag_Shrink_Death.anim"; public static string dronetechaimpitch = "RoR2/DLC3/Drone Tech/dronetech_aim_pitch.anim"; public static string dronetechaimyaw = "RoR2/DLC3/Drone Tech/dronetech_aim_yaw.anim"; public static string NoCombatDrones = "RoR2/DLC3/Drone Tech/NoCombatDrones.anim"; public static string NoHealingDrones = "RoR2/DLC3/Drone Tech/NoHealingDrones.anim"; public static string NoUtilityDrones = "RoR2/DLC3/Drone Tech/NoUtilityDrones.anim"; public static string nanoPistolTracerChargedFX = "RoR2/DLC3/Drone Tech/nanoPistolTracerChargedFX.anim"; public static string animDTechShieldFDroneLoss = "RoR2/DLC3/Drone Tech/anim_DTechShieldF_DroneLoss.anim"; public static string animDTechShieldFEND = "RoR2/DLC3/Drone Tech/anim_DTechShieldF_END.anim"; public static string animDTechShieldFIMP = "RoR2/DLC3/Drone Tech/anim_DTechShieldF_IMP.anim"; public static string animDTechShieldFPERS = "RoR2/DLC3/Drone Tech/anim_DTechShieldF_PERS.anim"; public static string animDTechShieldFSTART = "RoR2/DLC3/Drone Tech/anim_DTechShieldF_START.anim"; public static string activatedamagescreen = "RoR2/DLC3/Drone Tech/activate_damage_screen.anim"; public static string activatehealscreen = "RoR2/DLC3/Drone Tech/activate_heal_screen.anim"; public static string reticleactivate = "RoR2/DLC3/Drone Tech/reticle_activate.anim"; public static string reticleactivateheal = "RoR2/DLC3/Drone Tech/reticle_activate_heal.anim"; public static string despawnbombardmentbase = "RoR2/DLC3/Drones/despawn_bombardment_base.anim"; public static string spawnbombardmentbase = "RoR2/DLC3/Drones/spawn_bombardment_base.anim"; public static string animDCCScanTransformBottom = "RoR2/DLC3/Drones/anim_DCC_ScanTransformBottom.anim"; public static string animDCCScanTransformMain = "RoR2/DLC3/Drones/anim_DCC_ScanTransformMain.anim"; public static string animDCCScanTransformTop = "RoR2/DLC3/Drones/anim_DCC_ScanTransformTop.anim"; public static string DTHaulerPropeller = "RoR2/DLC3/Drones/DTHaulerPropeller.anim"; public static string HaulerPropellers = "RoR2/DLC3/Drones/HaulerPropellers.anim"; public static string AnimJailerDroneWallsSlam = "RoR2/DLC3/Drones/AnimJailerDroneWallsSlam.anim"; public static string JunkDronePropellerSpin = "RoR2/DLC3/Drones/JunkDrone_PropellerSpin.anim"; public static string ExtractorBounce = "RoR2/DLC3/ExtractorUnit/ExtractorBounce.anim"; public static string ExtractorDip = "RoR2/DLC3/ExtractorUnit/ExtractorDip.anim"; public static string ExtractorHeight = "RoR2/DLC3/ExtractorUnit/ExtractorHeight.anim"; public static string ExtractorScan = "RoR2/DLC3/ExtractorUnit/ExtractorScan.anim"; public static string ExtractorRunForwardLoop = "RoR2/DLC3/ExtractorUnit/Extractor_RunForwardLoop.anim"; public static string animSABodyMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_Body_MatFX.anim"; public static string animSAEyeMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_Eye_MatFX.anim"; public static string animSAEyeBaseMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_EyeBase_MatFX.anim"; public static string animSAFlameMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_Flame_MatFX.anim"; public static string animSAHatchLMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_HatchL_MatFX.anim"; public static string animSAHatchRMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_HatchR_MatFX.anim"; public static string animSAHatchTMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_HatchT_MatFX.anim"; public static string animSALightFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_LightFX.anim"; public static string animSAMissilePodLMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_MissilePodL_MatFX.anim"; public static string animSAMissilePodRMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_MissilePodR_MatFX.anim"; public static string animSASliderLMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_SliderL_MatFX.anim"; public static string animSASliderRMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_SliderR_MatFX.anim"; public static string animSAThrusterBMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_ThrusterB_MatFX.anim"; public static string animSAThrusterLMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_ThrusterL_MatFX.anim"; public static string animSAThrusterRMatFX = "RoR2/DLC3/SolusAmalgamator/anim_SA_ThrusterR_MatFX.anim"; public static string idlehead = "RoR2/DLC3/SolusHeart/idle_head.anim"; public static string SolusF2Base = "RoR2/DLC3/SolusHeart/SolusF2_Base.anim"; public static string SolusF2BipedalAimHorizontal = "RoR2/DLC3/SolusHeart/SolusF2_Bipedal_AimHorizontal.anim"; public static string SolusF2BipedalCast = "RoR2/DLC3/SolusHeart/SolusF2_Bipedal_Cast.anim"; public static string SolusF2BipedalIdle = "RoR2/DLC3/SolusHeart/SolusF2_Bipedal_Idle.anim"; public static string SolusF2BrainDemo = "RoR2/DLC3/SolusHeart/SolusF2_BrainDemo.anim"; public static string SolusF2BrainIdle = "RoR2/DLC3/SolusHeart/SolusF2_BrainIdle.anim"; public static string SolusF2Demo = "RoR2/DLC3/SolusHeart/SolusF2_Demo.anim"; public static string SolusF2DemoConst = "RoR2/DLC3/SolusHeart/SolusF2_Demo_Const.anim"; public static string SolusHeartSilhouetteCircleSpin = "RoR2/DLC3/SolusHeart/SolusHeartSilhouetteCircle_Spin.anim"; public static string SolusWingEyeBackToBlue = "RoR2/DLC3/SolusWing/SolusWing_Eye_BackToBlue.anim"; public static string SolusWingEyeFadeToRed = "RoR2/DLC3/SolusWing/SolusWing_Eye_FadeToRed.anim"; public static string SolusWingEyeFlashMagenta = "RoR2/DLC3/SolusWing/SolusWing_Eye_FlashMagenta.anim"; public static string SolusWingEyeFlashWhite = "RoR2/DLC3/SolusWing/SolusWing_Eye_FlashWhite.anim"; public static string SolusWingEyeFlashYellow = "RoR2/DLC3/SolusWing/SolusWing_Eye_FlashYellow.anim"; public static string SolusWingEyeRed = "RoR2/DLC3/SolusWing/SolusWing_Eye_Red.anim"; public static string SolusWingEyeIdle = "RoR2/DLC3/SolusWing/SolusWing_EyeIdle.anim"; public static string SolusWingGlitchAdditiveEye = "RoR2/DLC3/SolusWing/SolusWing_Glitch_Additive_Eye.anim"; public static string SolusWingGlitchAdditiveLoop = "RoR2/DLC3/SolusWing/SolusWing_Glitch_Additive_Loop.anim"; public static string SolusWingGlitchExit = "RoR2/DLC3/SolusWing/SolusWing_Glitch_Exit.anim"; public static string SolusWingGlitchFull = "RoR2/DLC3/SolusWing/SolusWing_Glitch_Full.anim"; public static string SolusWingPhaseShield = "RoR2/DLC3/SolusWing/SolusWing_PhaseShield.anim"; public static string SolusWingPostFightEnter = "RoR2/DLC3/SolusWing/SolusWing_PostFight_Enter.anim"; public static string SolusWingPostFightFalling = "RoR2/DLC3/SolusWing/SolusWing_PostFight_Falling.anim"; public static string SolusWingPostFightIdle = "RoR2/DLC3/SolusWing/SolusWing_PostFight_Idle.anim"; public static string SolusWingPostFightLand = "RoR2/DLC3/SolusWing/SolusWing_PostFight_Land.anim"; public static string SolusWingHalosPhase3LaserLoopEpic = "RoR2/DLC3/SolusWing/SolusWingHalos_Phase3_Laser_Loop_Epic.anim"; public static string SolusWingPhase3AimYaw = "RoR2/DLC3/SolusWing/SolusWing_Phase3_AimYaw.anim"; public static string AnimBody = "RoR2/DLC3/SolusWing/Anim_Body.anim"; public static string AnimBodyParts = "RoR2/DLC3/SolusWing/Anim_BodyParts.anim"; public static string AnimCables = "RoR2/DLC3/SolusWing/Anim_Cables.anim"; public static string AnimExhaustPorts = "RoR2/DLC3/SolusWing/Anim_ExhaustPorts.anim"; public static string AnimEye = "RoR2/DLC3/SolusWing/Anim_Eye.anim"; public static string AnimHaloWings = "RoR2/DLC3/SolusWing/Anim_HaloWings.anim"; public static string AnimPanels = "RoR2/DLC3/SolusWing/Anim_Panels.anim"; public static string AnimVentLights = "RoR2/DLC3/SolusWing/Anim_VentLights.anim"; public static string mdlPodRotateAnim = "RoR2/DLC3/SolusWingForm1/mdlPod_RotateAnim.anim"; public static string animVultureHunterDive = "RoR2/DLC3/VultureHunter/animVultureHunter_Dive.anim"; public static string animVultureHunterDiveDown = "RoR2/DLC3/VultureHunter/animVultureHunter_Dive_Down.anim"; public static string animVultureHunterDiveUp = "RoR2/DLC3/VultureHunter/animVultureHunter_Dive_Up.anim"; public static string animVultureHunterSwoop = "RoR2/DLC3/VultureHunter/animVultureHunter_Swoop.anim"; public static string airtoperchspawn = "RoR2/DLC3/VultureHunter/air_to_perch_spawn.anim"; public static string VultureArmatureCalldown = "RoR2/DLC3/VultureHunter/VultureArmature_Calldown.anim"; public static string VultureArmatureDropSpear = "RoR2/DLC3/VultureHunter/VultureArmature_DropSpear.anim"; public static string VultureArmatureFlyIdlePreFlap = "RoR2/DLC3/VultureHunter/VultureArmature_FlyIdle_PreFlap.anim"; public static string VultureArmatureFlyIdleFixed = "RoR2/DLC3/VultureHunter/VultureArmature_FlyIdleFixed.anim"; public static string VultureArmatureFlyIdleStabilized = "RoR2/DLC3/VultureHunter/VultureArmature_FlyIdleStabilized.anim"; public static string VultureArmatureLand = "RoR2/DLC3/VultureHunter/VultureArmature_Land.anim"; public static string VultureArmaturePerched = "RoR2/DLC3/VultureHunter/VultureArmature_Perched.anim"; public static string animWUPitch = "RoR2/DLC3/WorkerUnit/anim_WU_Pitch.anim"; public static string animWUUMatFX = "RoR2/DLC3/WorkerUnit/anim_WU_U_MatFX.anim"; public static string animWUU1MatFX = "RoR2/DLC3/WorkerUnit/anim_WU_U1_MatFX.anim"; public static string animWUU2MatFX = "RoR2/DLC3/WorkerUnit/anim_WU_U2_MatFX.anim"; public static string animWUU3MatFX = "RoR2/DLC3/WorkerUnit/anim_WU_U3_MatFX.anim"; public static string animWUU4MatFX = "RoR2/DLC3/WorkerUnit/anim_WU_U4_MatFX.anim"; public static string animWUU5MatFX = "RoR2/DLC3/WorkerUnit/anim_WU_U5_MatFX.anim"; public static string animWUU6MatFX = "RoR2/DLC3/WorkerUnit/anim_WU_U6_MatFX.anim"; public static string accesscodesnodeactivate = "RoR2/DLC3/AccessCodesNode/access_codes_node_activate.anim"; public static string accesscodesnodeactive = "RoR2/DLC3/AccessCodesNode/access_codes_node_active.anim"; public static string accesscodesnodeerror = "RoR2/DLC3/AccessCodesNode/access_codes_node_error.anim"; public static string accesscodesnodeoff = "RoR2/DLC3/AccessCodesNode/access_codes_node_off.anim"; public static string accesscodesnodeon = "RoR2/DLC3/AccessCodesNode/access_codes_node_on.anim"; public static string accesscodesnodepulse = "RoR2/DLC3/AccessCodesNode/access_codes_node_pulse.anim"; public static string ShrineCombatCollectiveActive = "RoR2/DLC3/ShrineCombatCollective_Active.anim"; public static string ShrineCombatCollectiveDeactive = "RoR2/DLC3/ShrineCombatCollective_Deactive.anim"; public static string Open = "RoR2/DLC3/DrifterBagChest/Open.anim"; public static string Opened = "RoR2/DLC3/DrifterBagChest/Opened.anim"; public static string assemblyidleclose = "RoR2/DLC3/DroneAssemblyStation/assembly_idle_close.anim"; public static string Hide = "RoR2/DLC3/Hide.anim"; public static string FriendUnitBrokenIdle = "RoR2/DLC3/FriendUnitUnlockInteractable/FriendUnitBroken_Idle.anim"; public static string FriendUnitBrokenRepaired = "RoR2/DLC3/FriendUnitUnlockInteractable/FriendUnitBroken_Repaired.anim"; public static string FriendUnitBrokenWakeUp = "RoR2/DLC3/FriendUnitUnlockInteractable/FriendUnitBroken_WakeUp.anim"; public static string MinorShieldwallActive = "RoR2/DLC3/MinorShieldwall_Active.anim"; public static string MinorShieldwallDeactivate = "RoR2/DLC3/MinorShieldwall_Deactivate.anim"; public static string ShieldwallActive = "RoR2/DLC3/Shieldwall_Active.anim"; public static string ShieldwallDeactivate = "RoR2/DLC3/Shieldwall_Deactivate.anim"; public static string ShieldwallPulse = "RoR2/DLC3/Shieldwall_Pulse.anim"; public static string PowerOrbBaseVFXColumnOuter = "RoR2/DLC3/PowerOrbPedestal/PowerOrbBaseVFX_ColumnOuter.anim"; public static string RaiseTube = "RoR2/DLC3/PowerOrbShieldTank/RaiseTube.anim"; public static string animSharedSufferingLoop = "RoR2/DLC3/Items/SharedSuffering/anim_SharedSufferingLoop.anim"; public static string ShieldBoosterDisplayIdle = "RoR2/DLC3/Items/ShieldBooster/ShieldBoosterDisplay-Idle.anim"; public static string ShieldBoosterDisplayIdleOff = "RoR2/DLC3/Items/ShieldBooster/ShieldBoosterDisplay-IdleOff.anim"; public static string ShieldBoosterDisplayNormal = "RoR2/DLC3/Items/ShieldBooster/ShieldBoosterDisplay-Normal.anim"; public static string ShieldBoosterDisplayOffToOn = "RoR2/DLC3/Items/ShieldBooster/ShieldBoosterDisplay-OffToOn.anim"; public static string ShieldBoosterDisplayOnToOff = "RoR2/DLC3/Items/ShieldBooster/ShieldBoosterDisplay-OnToOff.anim"; public static string ShieldBoosterDisplayVoid = "RoR2/DLC3/Items/ShieldBooster/ShieldBoosterDisplay-Void.anim"; public static string itemoffball = "RoR2/DLC3/Items/SpeedOnPickup/item_off_ball.anim"; public static string itemoffbottle = "RoR2/DLC3/Items/SpeedOnPickup/item_off_bottle.anim"; public static string itemoffbox = "RoR2/DLC3/Items/SpeedOnPickup/item_off_box.anim"; public static string itemoffglasses = "RoR2/DLC3/Items/SpeedOnPickup/item_off_glasses.anim"; public static string itemoffparts = "RoR2/DLC3/Items/SpeedOnPickup/item_off_parts.anim"; public static string itemonball = "RoR2/DLC3/Items/SpeedOnPickup/item_on_ball.anim"; public static string itemonbottle = "RoR2/DLC3/Items/SpeedOnPickup/item_on_bottle.anim"; public static string itemonbox = "RoR2/DLC3/Items/SpeedOnPickup/item_on_box.anim"; public static string itemonglasses = "RoR2/DLC3/Items/SpeedOnPickup/item_on_glasses.anim"; public static string itemonparts = "RoR2/DLC3/Items/SpeedOnPickup/item_on_parts.anim"; public static string WyrmProjectileIdle = "RoR2/DLC3/Items/WyrmOnHit/WyrmProjectile_Idle.anim"; public static string SolusHeartIntroShotADolly = "RoR2/DLC3/solusweb/SolusHeartIntro_ShotADolly.anim"; public static string SolusHeartIntroShotBDolly = "RoR2/DLC3/solusweb/SolusHeartIntro_ShotBDolly.anim"; public static string SolusHeartIntroShotCDolly = "RoR2/DLC3/solusweb/SolusHeartIntro_ShotCDolly.anim"; public static string SolusWebDeathSkyboxIdle = "RoR2/DLC3/solusweb/SolusWebDeathSkybox_Idle.anim"; public static string SolusWebDeathSkyboxIdle2 = "RoR2/DLC3/solusweb/SolusWebDeathSkybox_Idle2.anim"; public static string SolusWebDeathSkyboxPulse = "RoR2/DLC3/solusweb/SolusWebDeathSkybox_Pulse.anim"; public static string SolusWebLavaBlackout = "RoR2/DLC3/solusweb/SolusWebLava_Blackout.anim"; public static string SolusWebLavaDeathIdle = "RoR2/DLC3/solusweb/SolusWebLava_DeathIdle.anim"; public static string SolusWebLavaIdle = "RoR2/DLC3/solusweb/SolusWebLava_Idle.anim"; public static string SolusWebLavaOff = "RoR2/DLC3/solusweb/SolusWebLava_Off.anim"; public static string SolusWebLavaTurnOn = "RoR2/DLC3/solusweb/SolusWebLava_TurnOn.anim"; public static string SolusWebSkyboxBlackout = "RoR2/DLC3/solusweb/SolusWebSkybox_Blackout.anim"; public static string SolusWebSkyboxIdle = "RoR2/DLC3/solusweb/SolusWebSkybox_Idle.anim"; public static string SolusWebSkyboxPulse = "RoR2/DLC3/solusweb/SolusWebSkybox_Pulse.anim"; public static string CloseIdle = "RoR2/DLC3/solutionalhaunt/CloseIdle.anim"; public static string GateOpen = "RoR2/DLC3/solutionalhaunt/GateOpen.anim"; public static string OpenIdle = "RoR2/DLC3/solutionalhaunt/OpenIdle.anim"; public static string Room1Close = "RoR2/DLC3/solutionalhaunt/Room1Close.anim"; public static string Room1Idle = "RoR2/DLC3/solutionalhaunt/Room1Idle.anim"; public static string Room1Open = "RoR2/DLC3/solutionalhaunt/Room1Open.anim"; public static string Room2Close = "RoR2/DLC3/solutionalhaunt/Room2Close.anim"; public static string Room2Open = "RoR2/DLC3/solutionalhaunt/Room2Open.anim"; public static string RoomIntroClose = "RoR2/DLC3/solutionalhaunt/RoomIntroClose.anim"; public static string RoomIntroOpen = "RoR2/DLC3/solutionalhaunt/RoomIntroOpen.anim"; public static string RoomTreasureOpen = "RoR2/DLC3/solutionalhaunt/RoomTreasureOpen.anim"; public static string TunnelOpen = "RoR2/DLC3/solutionalhaunt/TunnelOpen.anim"; public static string TunnelOpen2 = "RoR2/DLC3/solutionalhaunt/TunnelOpen2.anim"; public static string SolusWing2Shot1LookAtAnimation = "RoR2/DLC3/solutionalhaunt/SolusWing2_Shot1_LookAt_Animation.anim"; public static string SolusWing2ShotA1DollyAnimation = "RoR2/DLC3/solutionalhaunt/SolusWing2_ShotA1_DollyAnimation.anim"; public static string SolusWing2BodyCutsceneIdle = "RoR2/DLC3/solutionalhaunt/SolusWing2BodyCutsceneIdle.anim"; public static string SolusWing2BodyCutsceneShotB2Idle = "RoR2/DLC3/solutionalhaunt/SolusWing2BodyCutscene-ShotB2-Idle.anim"; public static string SolusWing2BodyCutsceneShotB2Move = "RoR2/DLC3/solutionalhaunt/SolusWing2BodyCutscene-ShotB2-Move.anim"; public static string SolusWing2BodyCutsceneWakeUp = "RoR2/DLC3/solutionalhaunt/SolusWing2BodyCutsceneWakeUp.anim"; public static string SolusWing2BodyCutsceneWakeUpHold = "RoR2/DLC3/solutionalhaunt/SolusWing2BodyCutsceneWakeUpHold.anim"; public static string SolusWing2BodyCutsceneWakeUpTheBeast = "RoR2/DLC3/solutionalhaunt/SolusWing2BodyCutsceneWakeUpTheBeast.anim"; public static string Phase1ConfigurationClip = "RoR2/DLC3/solutionalhaunt/Phase1ConfigurationClip.anim"; public static string Phase1ConfigurationGlitchClip = "RoR2/DLC3/solutionalhaunt/Phase1ConfigurationGlitchClip.anim"; public static string VerticalClipBottomUp = "RoR2/DLC3/solutionalhaunt/VerticalClip_BottomUp.anim"; public static string VerticalClipTest = "RoR2/DLC3/solutionalhaunt/VerticalClip_Test.anim"; public static string VerticalClipTopDown = "RoR2/DLC3/solutionalhaunt/VerticalClip_TopDown.anim"; public static string WallConfigurationSpinClipFull = "RoR2/DLC3/solutionalhaunt/WallConfigurationSpinClip_Full.anim"; public static string WallConfigurationSpinClipSpinOnly = "RoR2/DLC3/solutionalhaunt/WallConfigurationSpinClip_SpinOnly.anim"; public static string animLevelUpLight = "RoR2/Junk/Common/animLevelUpLight.anim"; } public static class PhysicMaterial { public static string physmatCommandoGrenade = "RoR2/Base/Commando/physmatCommandoGrenade.physicMaterial"; public static string physmatEngiGrenade = "RoR2/Base/Engi/physmatEngiGrenade.physicMaterial"; public static string physmatBouncy = "RoR2/Base/Common/physmatBouncy.physicMaterial"; public static string physmatBouncyButFriction = "RoR2/Base/Common/physmatBouncyButFriction.physicMaterial"; public static string physmatDefault = "RoR2/Base/Common/physmatDefault.physicMaterial"; public static string physmatDestructibles = "RoR2/Base/Common/physmatDestructibles.physicMaterial"; public static string physmatItems = "RoR2/Base/Common/physmatItems.physicMaterial"; public static string physmatOfficeChair = "RoR2/Base/Common/physmatOfficeChair.physicMaterial"; public static string physmatRagdoll = "RoR2/Base/Common/physmatRagdoll.physicMaterial"; public static string physmatSuperBouncy = "RoR2/Base/Common/physmatSuperBouncy.physicMaterial"; public static string physmatSuperFriction = "RoR2/Base/Common/physmatSuperFriction.physicMaterial"; public static string physmatMinorConstructProjectile = "RoR2/DLC1/MajorAndMinorConstruct/physmatMinorConstructProjectile.physicMaterial"; public static string physmatVoidJailerDart = "RoR2/DLC1/VoidJailer/physmatVoidJailerDart.physicMaterial"; public static string physmatVoidSurvivorCrabCannon = "RoR2/DLC1/VoidSurvivor/physmatVoidSurvivorCrabCannon.physicMaterial"; public static string physmatJunkCube = "RoR2/DLC3/Drifter/physmatJunkCube.physicMaterial"; public static string physmatJunkCubeSlide = "RoR2/DLC3/Drifter/physmatJunkCubeSlide.physicMaterial"; public static string physMatPhysicsProjectile = "RoR2/DLC3/physMatPhysicsProjectile.physicMaterial"; public static string physmatBanditGrenade = "RoR2/Junk/Bandit/physmatBanditGrenade.physicMaterial"; public static string physmatCommandoStickyGrenadeGrenade = "RoR2/Junk/Commando/physmatCommandoStickyGrenadeGrenade.physicMaterial"; } public static class SteppedSkillDef { public static string CommandoBodyFirePistol = "RoR2/Base/Commando/CommandoBodyFirePistol.asset"; public static string CrocoSlash36 = "RoR2/Base/Croco/CrocoSlash.asset"; public static string GrandParentGroundSwipe = "RoR2/Base/Grandparent/GrandParentGroundSwipe.asset"; public static string ChargeFist = "RoR2/Base/Loader/ChargeFist.asset"; public static string ChargeZapFist = "RoR2/Base/Loader/ChargeZapFist.asset"; public static string GroundSlam = "RoR2/Base/Loader/GroundSlam.asset"; public static string SwingFist = "RoR2/Base/Loader/SwingFist.asset"; public static string MageBodyFireFirebolt = "RoR2/Base/Mage/MageBodyFireFirebolt.asset"; public static string MageBodyFireLightningBolt = "RoR2/Base/Mage/MageBodyFireLightningBolt.asset"; public static string MercGroundLight2 = "RoR2/Base/Merc/MercGroundLight2.asset"; public static string TongueLash = "RoR2/DLC1/Vermin/TongueLash.asset"; public static string SwingMelee = "RoR2/DLC1/VoidSurvivor/SwingMelee.asset"; public static string FalseSonBodyClub = "RoR2/DLC2/FalseSon/FalseSonBodyClub.asset"; public static string FalseSonBodyLaser = "RoR2/DLC2/FalseSon/FalseSonBodyLaser.asset"; public static string FalseSonBodyLaserBurst = "RoR2/DLC2/FalseSon/FalseSonBodyLaserBurst.asset"; public static string FalseSonBossHeroRelic = "RoR2/DLC2/FalseSonBoss/FalseSonBossHeroRelic.asset"; public static string SeekerBodySoulSearch = "RoR2/DLC2/Seeker/SeekerBodySoulSearch.asset"; public static string SeekerBodySpiritPunch = "RoR2/DLC2/Seeker/SeekerBodySpiritPunch.asset"; public static string SeekerBodyUmbraOrb = "RoR2/DLC2/Seeker/SeekerBodyUmbraOrb.asset"; public static string BluntForce = "RoR2/DLC3/Drifter/BluntForce.asset"; public static string BigPunch = "RoR2/Junk/Loader/BigPunch.asset"; public static string MageBodyFireIceBolt = "RoR2/Junk/Mage/MageBodyFireIceBolt.asset"; } public static class CharacterCameraParams { public static string ccpCroco = "RoR2/Base/Croco/ccpCroco.asset"; public static string ccpEngi = "RoR2/Base/Engi/ccpEngi.asset"; public static string ccpLoader = "RoR2/Base/Loader/ccpLoader.asset"; public static string ccpToolbot = "RoR2/Base/Toolbot/ccpToolbot.asset"; public static string ccpToolbotOverTheShoulder = "RoR2/Base/Toolbot/ccpToolbotOverTheShoulder.asset"; public static string ccpTreebot = "RoR2/Base/Treebot/ccpTreebot.asset"; public static string ccpVagrant = "RoR2/Base/Vagrant/ccpVagrant.asset"; public static string ccpFirstPerson = "RoR2/Base/Common/ccpFirstPerson.asset"; public static string ccpStandard = "RoR2/Base/Common/ccpStandard.asset"; public static string ccpStandardGiant = "RoR2/Base/Common/ccpStandardGiant.asset"; public static string ccpStandardHuge = "RoR2/Base/Common/ccpStandardHuge.asset"; public static string ccpStandardMelee = "RoR2/Base/Common/ccpStandardMelee.asset"; public static string ccpStandardRaidboss = "RoR2/Base/Common/ccpStandardRaidboss.asset"; public static string ccpStandardTall = "RoR2/Base/Common/ccpStandardTall.asset"; public static string ccpFireballVehicle = "RoR2/Base/FireBallDash/ccpFireballVehicle.asset"; public static string ccpMajorConstruct = "RoR2/DLC1/MajorAndMinorConstruct/ccpMajorConstruct.asset"; public static string ccpRailgunnerScopeHeavy = "RoR2/DLC1/Railgunner/ccpRailgunnerScopeHeavy.asset"; public static string ccpRailgunnerScopeLight = "RoR2/DLC1/Railgunner/ccpRailgunnerScopeLight.asset"; public static string ccpCorruptionTransitionCamera = "RoR2/DLC1/VoidSurvivor/ccpCorruptionTransitionCamera.asset"; public static string ccpChef = "RoR2/DLC2/Chef/ccpChef.asset"; public static string ccpFalseSon = "RoR2/DLC2/FalseSon/ccpFalseSon.asset"; public static string ccpSeekerMeditate = "RoR2/DLC2/Seeker/ccpSeekerMeditate.asset"; public static string ccpSojournVehicle = "RoR2/DLC2/Seeker/SojournVehicle/ccpSojournVehicle.asset"; public static string ccpDrifter = "RoR2/DLC3/Drifter/ccpDrifter.asset"; public static string ccpDrifterTornado = "RoR2/DLC3/Drifter/ccpDrifterTornado.asset"; public static string ccpDroneTech = "RoR2/DLC3/Drone Tech/ccpDroneTech.asset"; public static string ccpCarryFlight = "RoR2/DLC3/Drone Tech/ccpCarryFlight.asset"; public static string ccpDroneLarge = "RoR2/DLC3/ccpDroneLarge.asset"; public static string ccpDroneStandard = "RoR2/DLC3/ccpDroneStandard.asset"; public static string ccpPaladin = "RoR2/Junk/Paladin/ccpPaladin.asset"; } public static class DroneDef { public static string BackupDrone = "RoR2/Base/Drones/BackupDrone.asset"; public static string Drone1 = "RoR2/Base/Drones/Drone1.asset"; public static string Drone2 = "RoR2/Base/Drones/Drone2.asset"; public static string EmergencyDrone = "RoR2/Base/Drones/EmergencyDrone.asset"; public static string EquipmentDrone = "RoR2/Base/Drones/EquipmentDrone.asset"; public static string FlameDrone = "RoR2/Base/Drones/FlameDrone.asset"; public static string MegaDrone = "RoR2/Base/Drones/MegaDrone.asset"; public static string MissileDrone = "RoR2/Base/Drones/MissileDrone.asset"; public static string Turret1 = "RoR2/Base/Drones/Turret1.asset"; public static string DroneCommander = "RoR2/DLC1/DroneCommander/DroneCommander.asset"; public static string BombardmentDrone = "RoR2/DLC3/Drones/BombardmentDrone.asset"; public static string CleanupDrone = "RoR2/DLC3/Drones/CleanupDrone.asset"; public static string CopycatDrone = "RoR2/DLC3/Drones/CopycatDrone.asset"; public static string BomberDrone = "RoR2/DLC3/Drones/BomberDrone.asset"; public static string DTGunnerDrone = "RoR2/DLC3/Drones/DTGunnerDrone.asset"; public static string DTHaulerDrone = "RoR2/DLC3/Drones/DTHaulerDrone.asset"; public static string DTHealDrone = "RoR2/DLC3/Drones/DTHealDrone.asset"; public static string HaulerDrone = "RoR2/DLC3/Drones/HaulerDrone.asset"; public static string JailerDrone = "RoR2/DLC3/Drones/JailerDrone.asset"; public static string JunkDrone = "RoR2/DLC3/Drones/JunkDrone.asset"; public static string RechargeDrone = "RoR2/DLC3/Drones/RechargeDrone.asset"; } public static class InteractableSpawnCard { public static string iscBrokenDrone1 = "RoR2/Base/Drones/iscBrokenDrone1.asset"; public static string iscBrokenDrone2 = "RoR2/Base/Drones/iscBrokenDrone2.asset"; public static string iscBrokenEmergencyDrone = "RoR2/Base/Drones/iscBrokenEmergencyDrone.asset"; public static string iscBrokenEquipmentDrone = "RoR2/Base/Drones/iscBrokenEquipmentDrone.asset"; public static string iscBrokenFlameDrone = "RoR2/Base/Drones/iscBrokenFlameDrone.asset"; public static string iscBrokenMegaDrone = "RoR2/Base/Drones/iscBrokenMegaDrone.asset"; public static string iscBrokenMissileDrone = "RoR2/Base/Drones/iscBrokenMissileDrone.asset"; public static string iscBrokenTurret1 = "RoR2/Base/Drones/iscBrokenTurret1.asset"; public static string iscScavBackpack = "RoR2/Base/Scav/iscScavBackpack.asset"; public static string iscScavLunarBackpack = "RoR2/Base/Scav/iscScavLunarBackpack.asset"; public static string iscBarrel1 = "RoR2/Base/Barrel1/iscBarrel1.asset"; public static string iscCasinoChest = "RoR2/Base/CasinoChest/iscCasinoChest.asset"; public static string iscCategoryChestDamage = "RoR2/Base/CategoryChest/iscCategoryChestDamage.asset"; public static string iscCategoryChestHealing = "RoR2/Base/CategoryChest/iscCategoryChestHealing.asset"; public static string iscCategoryChestUtility = "RoR2/Base/CategoryChest/iscCategoryChestUtility.asset"; public static string iscChest1 = "RoR2/Base/Chest1/iscChest1.asset"; public static string iscChest1Stealthed = "RoR2/Base/Chest1StealthedVariant/iscChest1Stealthed.asset"; public static string iscChest2 = "RoR2/Base/Chest2/iscChest2.asset"; public static string iscDuplicator = "RoR2/Base/Duplicator/iscDuplicator.asset"; public static string iscDuplicatorLarge = "RoR2/Base/DuplicatorLarge/iscDuplicatorLarge.asset"; public static string iscDuplicatorMilitary = "RoR2/Base/DuplicatorMilitary/iscDuplicatorMilitary.asset"; public static string iscDuplicatorWild = "RoR2/Base/DuplicatorWild/iscDuplicatorWild.asset"; public static string iscEquipmentBarrel = "RoR2/Base/EquipmentBarrel/iscEquipmentBarrel.asset"; public static string iscGoldChest = "RoR2/Base/GoldChest/iscGoldChest.asset"; public static string iscLunarChest = "RoR2/Base/LunarChest/iscLunarChest.asset"; public static string iscGoldshoresPortal = "RoR2/Base/PortalGoldshores/iscGoldshoresPortal.asset"; public static string iscMSPortal = "RoR2/Base/PortalMS/iscMSPortal.asset"; public static string iscShopPortal = "RoR2/Base/PortalShop/iscShopPortal.asset"; public static string iscRadarTower = "RoR2/Base/RadarTower/iscRadarTower.asset"; public static string iscScrapper = "RoR2/Base/Scrapper/iscScrapper.asset"; public static string iscShrineBlood = "RoR2/Base/ShrineBlood/iscShrineBlood.asset"; public static string iscShrineBloodSandy = "RoR2/Base/ShrineBlood/iscShrineBloodSandy.asset"; public static string iscShrineBloodSnowy = "RoR2/Base/ShrineBlood/iscShrineBloodSnowy.asset"; public static string iscShrineBoss = "RoR2/Base/ShrineBoss/iscShrineBoss.asset"; public static string iscShrineBossSandy = "RoR2/Base/ShrineBoss/iscShrineBossSandy.asset"; public static string iscShrineBossSnowy = "RoR2/Base/ShrineBoss/iscShrineBossSnowy.asset"; public static string iscShrineChance = "RoR2/Base/ShrineChance/iscShrineChance.asset"; public static string iscShrineChanceSandy = "RoR2/Base/ShrineChance/iscShrineChanceSandy.asset"; public static string iscShrineChanceSnowy = "RoR2/Base/ShrineChance/iscShrineChanceSnowy.asset"; public static string iscShrineCleanse = "RoR2/Base/ShrineCleanse/iscShrineCleanse.asset"; public static string iscShrineCleanseSandy = "RoR2/Base/ShrineCleanse/iscShrineCleanseSandy.asset"; public static string iscShrineCleanseSnowy = "RoR2/Base/ShrineCleanse/iscShrineCleanseSnowy.asset"; public static string iscShrineCombat = "RoR2/Base/ShrineCombat/iscShrineCombat.asset"; public static string iscShrineCombatSandy = "RoR2/Base/ShrineCombat/iscShrineCombatSandy.asset"; public static string iscShrineCombatSnowy = "RoR2/Base/ShrineCombat/iscShrineCombatSnowy.asset"; public static string iscShrineGoldshoresAccess = "RoR2/Base/ShrineGoldshoresAccess/iscShrineGoldshoresAccess.asset"; public static string iscShrineHealing = "RoR2/Base/ShrineHealing/iscShrineHealing.asset"; public static string iscShrineRestack = "RoR2/Base/ShrineRestack/iscShrineRestack.asset"; public static string iscShrineRestackSandy = "RoR2/Base/ShrineRestack/iscShrineRestackSandy.asset"; public static string iscShrineRestackSnowy = "RoR2/Base/ShrineRestack/iscShrineRestackSnowy.asset"; public static string iscLunarTeleporter = "RoR2/Base/Teleporters/iscLunarTeleporter.asset"; public static string iscTeleporter = "RoR2/Base/Teleporters/iscTeleporter.asset"; public static string iscTripleShop = "RoR2/Base/TripleShop/iscTripleShop.asset"; public static string iscTripleShopEquipment = "RoR2/Base/TripleShopEquipment/iscTripleShopEquipment.asset"; public static string iscTripleShopLarge = "RoR2/Base/TripleShopLarge/iscTripleShopLarge.asset"; public static string iscGoldshoresBeacon = "RoR2/Base/goldshores/iscGoldshoresBeacon.asset"; public static string iscLemurianEgg = "RoR2/CU8/LemurianEgg/iscLemurianEgg.asset"; public static string iscVoidRaidSafeWard = "RoR2/DLC1/VoidRaidCrab/iscVoidRaidSafeWard.asset"; public static string iscInfiniteTowerPortal = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/iscInfiniteTowerPortal.asset"; public static string iscInfiniteTowerSafeWard = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/iscInfiniteTowerSafeWard.asset"; public static string iscInfiniteTowerSafeWardAwaitingInteraction = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/iscInfiniteTowerSafeWardAwaitingInteraction.asset"; public static string iscCategoryChest2Damage = "RoR2/DLC1/CategoryChest2/iscCategoryChest2Damage.asset"; public static string iscCategoryChest2Healing = "RoR2/DLC1/CategoryChest2/iscCategoryChest2Healing.asset"; public static string iscCategoryChest2Utility = "RoR2/DLC1/CategoryChest2/iscCategoryChest2Utility.asset"; public static string iscDeepVoidPortal = "RoR2/DLC1/DeepVoidPortal/iscDeepVoidPortal.asset"; public static string iscDeepVoidPortalBattery = "RoR2/DLC1/DeepVoidPortalBattery/iscDeepVoidPortalBattery.asset"; public static string iscVoidPortal = "RoR2/DLC1/PortalVoid/iscVoidPortal.asset"; public static string iscVoidCamp = "RoR2/DLC1/VoidCamp/iscVoidCamp.asset"; public static string iscVoidChest = "RoR2/DLC1/VoidChest/iscVoidChest.asset"; public static string iscVoidChestSacrificeOn = "RoR2/DLC1/VoidChest/iscVoidChestSacrificeOn.asset"; public static string iscVoidCoinBarrel = "RoR2/DLC1/VoidCoinBarrel/iscVoidCoinBarrel.asset"; public static string iscVoidOutroPortal = "RoR2/DLC1/VoidOutroPortal/iscVoidOutroPortal.asset"; public static string iscVoidSuppressor = "RoR2/DLC1/VoidSuppressor/iscVoidSuppressor.asset"; public static string iscVoidTriple = "RoR2/DLC1/VoidTriple/iscVoidTriple.asset"; public static string iscFreeChest = "RoR2/DLC1/FreeChest/iscFreeChest.asset"; public static string iscLockboxVoid = "RoR2/DLC1/TreasureCacheVoid/iscLockboxVoid.asset"; public static string iscGauntletEntrance = "RoR2/DLC1/gauntlets/iscGauntletEntrance.asset"; public static string iscEventTrigger = "RoR2/DLC2/EventTrigger/iscEventTrigger.asset"; public static string iscGeode = "RoR2/DLC2/iscGeode.asset"; public static string iscDestinationPortal = "RoR2/DLC2/iscDestinationPortal.asset"; public static string iscColossusPortal = "RoR2/DLC2/iscColossusPortal.asset"; public static string iscShrineHalcyonite = "RoR2/DLC2/iscShrineHalcyonite.asset"; public static string iscShrineHalcyoniteTier1 = "RoR2/DLC2/iscShrineHalcyoniteTier1.asset"; public static string iscShrineColossusAccess = "RoR2/DLC2/iscShrineColossusAccess.asset"; public static string iscBrokenBombardmentDrone = "RoR2/DLC3/Drones/iscBrokenBombardmentDrone.asset"; public static string iscBrokenCleanupDrone = "RoR2/DLC3/Drones/iscBrokenCleanupDrone.asset"; public static string iscBrokenCopycatDrone = "RoR2/DLC3/Drones/iscBrokenCopycatDrone.asset"; public static string iscBrokenHaulerDrone = "RoR2/DLC3/Drones/iscBrokenHaulerDrone.asset"; public static string iscBrokenJailerDrone = "RoR2/DLC3/Drones/iscBrokenJailerDrone.asset"; public static string iscBrokenJunkDrone = "RoR2/DLC3/Drones/iscBrokenJunkDrone.asset"; public static string iscBrokenRechargeDrone = "RoR2/DLC3/Drones/iscBrokenRechargeDrone.asset"; public static string iscShrineCombatCollective = "RoR2/DLC3/iscShrineCombatCollective.asset"; public static string iscDroneAssemblyStation = "RoR2/DLC3/DroneAssemblyStation/iscDroneAssemblyStation.asset"; public static string iscDroneCombinerStation = "RoR2/DLC3/DroneCombinerStation/iscDroneCombinerStation.asset"; public static string iscDroneScrapper = "RoR2/DLC3/DroneScrapper/iscDroneScrapper.asset"; public static string iscTripleDroneShop = "RoR2/DLC3/TripleDroneShop/iscTripleDroneShop.asset"; public static string iscFriendUnitUnlock = "RoR2/DLC3/FriendUnitUnlockInteractable/iscFriendUnitUnlock.asset"; public static string iscEyePortal = "RoR2/DLC3/EyePortal/iscEyePortal.asset"; public static string iscHardwareProgPortal = "RoR2/DLC3/iscHardwareProgPortal.asset"; public static string iscHardwareProgPortalHaunt = "RoR2/DLC3/iscHardwareProgPortal_Haunt.asset"; public static string iscSolusPortalBackout = "RoR2/DLC3/iscSolusPortalBackout.asset"; public static string iscSolusShopPortal = "RoR2/DLC3/iscSolusShopPortal.asset"; public static string iscTemporaryItemsShop = "RoR2/DLC3/TemporaryItemsDistributor/iscTemporaryItemsShop.asset"; public static string iscSquidTurret = "RoR2/Junk/SquidTurret/iscSquidTurret.asset"; public static string iscLockbox = "RoR2/Junk/TreasureCache/iscLockbox.asset"; public static string iscCommandChest = "RoR2/CommandChest/iscCommandChest.asset"; } public static class HuntressTrackingSkillDef { public static string FireFlurrySeekingArrow = "RoR2/Base/Huntress/FireFlurrySeekingArrow.asset"; public static string HuntressBodyFireSeekingArrow = "RoR2/Base/Huntress/HuntressBodyFireSeekingArrow.asset"; public static string HuntressBodyGlaive = "RoR2/Base/Huntress/HuntressBodyGlaive.asset"; } public static class MercDashSkillDef { public static string MercBodyAssaulter = "RoR2/Base/Merc/MercBodyAssaulter.asset"; } public static class MultiCharacterSpawnCard { public static string cscScavLunar = "RoR2/Base/ScavLunar/cscScavLunar.asset"; } public static class ToolbotWeaponSkillDef { public static string ToolbotBodyFireBuzzsaw = "RoR2/Base/Toolbot/ToolbotBodyFireBuzzsaw.asset"; public static string ToolbotBodyFireGrenadeLauncher = "RoR2/Base/Toolbot/ToolbotBodyFireGrenadeLauncher.asset"; public static string ToolbotBodyFireNailgun = "RoR2/Base/Toolbot/ToolbotBodyFireNailgun.asset"; public static string ToolbotBodyFireSpear = "RoR2/Base/Toolbot/ToolbotBodyFireSpear.asset"; } public static class AnimationCurveAsset { public static string TreebotShoveMassCurve = "RoR2/Base/Treebot/TreebotShoveMassCurve.asset"; public static string acMoonBatteryPulse = "RoR2/Base/moon2/acMoonBatteryPulse.asset"; } public static class ActivityDataType { public static string ActivityData = "RoR2/Base/Common/ActivityData.asset"; } public static class FamilyDirectorCardCategorySelection { public static string dccsBeetleFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsBeetleFamily.asset"; public static string dccsBeetleFamilySulfur = "RoR2/Base/Common/DirectorCardCategorySelections/dccsBeetleFamilySulfur.asset"; public static string dccsGolemFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsGolemFamily.asset"; public static string dccsGolemFamilyNature = "RoR2/Base/Common/DirectorCardCategorySelections/dccsGolemFamilyNature.asset"; public static string dccsGolemFamilySandy = "RoR2/Base/Common/DirectorCardCategorySelections/dccsGolemFamilySandy.asset"; public static string dccsGolemFamilySnowy = "RoR2/Base/Common/DirectorCardCategorySelections/dccsGolemFamilySnowy.asset"; public static string dccsGupFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsGupFamily.asset"; public static string dccsImpFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsImpFamily.asset"; public static string dccsJellyfishFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsJellyfishFamily.asset"; public static string dccsLemurianFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsLemurianFamily.asset"; public static string dccsLunarFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsLunarFamily.asset"; public static string dccsMushroomFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsMushroomFamily.asset"; public static string dccsParentFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsParentFamily.asset"; public static string dccsWispFamily = "RoR2/Base/Common/DirectorCardCategorySelections/dccsWispFamily.asset"; public static string dccsAcidLarvaFamily = "RoR2/DLC1/Common/dccsAcidLarvaFamily.asset"; public static string dccsConstructFamily = "RoR2/DLC1/Common/dccsConstructFamily.asset"; public static string dccsVoidFamily = "RoR2/DLC1/Common/dccsVoidFamily.asset"; public static string dccsBallFamilyItemThemed = "RoR2/DLC3/dccsBallFamily_ItemThemed.asset"; public static string dccsSHVultures = "RoR2/DLC3/dccsSHVultures.asset"; public static string dccsSuperRoboBallpitFamily = "RoR2/DLC3/dccsSuperRoboBallpitFamily.asset"; public static string dccsVultureFamily = "RoR2/DLC3/dccsVultureFamily.asset"; } public static class Font { public static string Bazaronite = "RoR2/Base/Common/Fonts/Bazaronite/Bazaronite.ttf"; public static string BOMBARD = "RoR2/Base/Common/Fonts/Bombardier/BOMBARD_.ttf"; public static string NotoSansCJKscRegular = "RoR2/Base/Common/Fonts/Noto/NotoSansCJKsc-Regular.otf"; public static string NotoSansRegular = "RoR2/Base/Common/Fonts/Noto/NotoSans-Regular.ttf"; public static string RiskofRainFont = "RoR2/Base/Common/Fonts/RiskofRain/RiskofRainFont.ttf"; public static string fontSquaresbold = "RoR2/Base/Common/Fonts/SquaresBold/fontSquaresbold.otf"; public static string TRACER = "RoR2/Base/Common/Fonts/Traceroute/TRACER__.ttf"; } public static class TextAsset { public static string readme = "RoR2/Base/Common/Fonts/Bazaronite/readme.txt"; public static string readme24 = "RoR2/Base/Common/Fonts/Bombardier/readme.txt"; public static string LICENSEOFL = "RoR2/Base/Common/Fonts/Noto/LICENSE_OFL.txt"; public static string readme33 = "RoR2/Base/Common/Fonts/Traceroute/readme.txt"; public static string Traceme = "RoR2/Base/Common/Fonts/Traceroute/Trace me.txt"; public static string NotWorking = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/NotWorking.txt"; } public static class TMP_FontAsset { public static string tmpBazaroniteSDF = "RoR2/Base/Common/Fonts/Bazaronite/tmpBazaroniteSDF.asset"; public static string tmpBombDropshadow = "RoR2/Base/Common/Fonts/Bombardier/tmpBombDropshadow.asset"; public static string NotoSansCJKscRegularSDFDynamic = "RoR2/Base/Common/Fonts/Noto/NotoSansCJKsc-Regular SDF (Dynamic).asset"; public static string NotoSansRegularSDFROOTExtendedASCIITurkish = "RoR2/Base/Common/Fonts/Noto/NotoSans-Regular SDF(ROOT Extended ASCII + Turkish).asset"; public static string tmpRiskofRainFontBoldOutlineSDF = "RoR2/Base/Common/Fonts/RiskofRain/tmpRiskofRainFont Bold OutlineSDF.asset"; public static string tmpSquaresBold = "RoR2/Base/Common/Fonts/SquaresBold/tmpSquaresBold.asset"; public static string tmpSquaresBoldHUD = "RoR2/Base/Common/Fonts/SquaresBold/tmpSquaresBoldHUD.asset"; public static string tmpTRACERSDF = "RoR2/Base/Common/Fonts/Traceroute/tmpTRACER__ SDF.asset"; public static string tmpTRACERSDFBOLD = "RoR2/Base/Common/Fonts/Traceroute/tmpTRACER__ SDFBOLD.asset"; public static string tmpTRACERSDFBOLDCONTEXT = "RoR2/Base/Common/Fonts/Traceroute/tmpTRACER__ SDFBOLD_CONTEXT.asset"; public static string tmpTRACERSDFBOLDDROPSHADOW = "RoR2/Base/Common/Fonts/Traceroute/tmpTRACER__ SDFBOLD_DROPSHADOW.asset"; public static string tmpTRACERSDFDAMAGENUMBER = "RoR2/Base/Common/Fonts/Traceroute/tmpTRACER_SDFDAMAGENUMBER.asset"; public static string tmpCounter = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/tmpCounter.asset"; public static string tmpSharedSuffering = "RoR2/DLC3/Items/SharedSuffering/tmpSharedSuffering.asset"; } public static class HealthBarStyle { public static string CombatHealthBar = "RoR2/Base/Common/CombatHealthBar.asset"; public static string HUDHealthBar = "RoR2/Base/Common/HUDHealthBar.asset"; } public static class ItemTierDef { public static string BossTierDef = "RoR2/Base/Common/BossTierDef.asset"; public static string LunarTierDef = "RoR2/Base/Common/LunarTierDef.asset"; public static string Tier1Def = "RoR2/Base/Common/Tier1Def.asset"; public static string Tier2Def = "RoR2/Base/Common/Tier2Def.asset"; public static string Tier3Def = "RoR2/Base/Common/Tier3Def.asset"; public static string VoidBossDef = "RoR2/DLC1/Common/VoidBossDef.asset"; public static string VoidTier1Def = "RoR2/DLC1/Common/VoidTier1Def.asset"; public static string VoidTier2Def = "RoR2/DLC1/Common/VoidTier2Def.asset"; public static string VoidTier3Def = "RoR2/DLC1/Common/VoidTier3Def.asset"; public static string FoodTier = "RoR2/DLC3/FoodTier.asset"; } public static class MusicTrackDef { public static string muEscape = "RoR2/Base/Common/MusicTrackDefs/muEscape.asset"; public static string muFULLSong02 = "RoR2/Base/Common/MusicTrackDefs/muFULLSong02.asset"; public static string muFULLSong06 = "RoR2/Base/Common/MusicTrackDefs/muFULLSong06.asset"; public static string muFULLSong07 = "RoR2/Base/Common/MusicTrackDefs/muFULLSong07.asset"; public static string muFULLSong18 = "RoR2/Base/Common/MusicTrackDefs/muFULLSong18.asset"; public static string muFULLSong19 = "RoR2/Base/Common/MusicTrackDefs/muFULLSong19.asset"; public static string muGameplayBase09 = "RoR2/Base/Common/MusicTrackDefs/muGameplayBase_09.asset"; public static string muIntroCutscene = "RoR2/Base/Common/MusicTrackDefs/muIntroCutscene.asset"; public static string muLogbook = "RoR2/Base/Common/MusicTrackDefs/muLogbook.asset"; public static string muMainEndingFull = "RoR2/Base/Common/MusicTrackDefs/muMainEndingFull.asset"; public static string muMainEndingOutroA = "RoR2/Base/Common/MusicTrackDefs/muMainEndingOutroA.asset"; public static string muMainEndingOutroB = "RoR2/Base/Common/MusicTrackDefs/muMainEndingOutroB.asset"; public static string muMenu = "RoR2/Base/Common/MusicTrackDefs/muMenu.asset"; public static string muNone = "RoR2/Base/Common/MusicTrackDefs/muNone.asset"; public static string muSong04 = "RoR2/Base/Common/MusicTrackDefs/muSong04.asset"; public static string muSong05 = "RoR2/Base/Common/MusicTrackDefs/muSong05.asset"; public static string muSong08 = "RoR2/Base/Common/MusicTrackDefs/muSong08.asset"; public static string muSong13 = "RoR2/Base/Common/MusicTrackDefs/muSong13.asset"; public static string muSong14 = "RoR2/Base/Common/MusicTrackDefs/muSong14.asset"; public static string muSong16 = "RoR2/Base/Common/MusicTrackDefs/muSong16.asset"; public static string muSong21 = "RoR2/Base/Common/MusicTrackDefs/muSong21.asset"; public static string muSong22 = "RoR2/Base/Common/MusicTrackDefs/muSong22.asset"; public static string muSong23 = "RoR2/Base/Common/MusicTrackDefs/muSong23.asset"; public static string muSong24 = "RoR2/Base/Common/MusicTrackDefs/muSong24.asset"; public static string muSong25 = "RoR2/Base/Common/MusicTrackDefs/muSong25.asset"; public static string muBossfightDLC110 = "RoR2/DLC1/Common/muBossfightDLC1_10.asset"; public static string muBossfightDLC112 = "RoR2/DLC1/Common/muBossfightDLC1_12.asset"; public static string muGameplayDLC101 = "RoR2/DLC1/Common/muGameplayDLC1_01.asset"; public static string muGameplayDLC103 = "RoR2/DLC1/Common/muGameplayDLC1_03.asset"; public static string muGameplayDLC106 = "RoR2/DLC1/Common/muGameplayDLC1_06.asset"; public static string muGameplayDLC108 = "RoR2/DLC1/Common/muGameplayDLC1_08.asset"; public static string muMenuDLC1 = "RoR2/DLC1/Common/muMenuDLC1.asset"; public static string muRaidfightDLC107 = "RoR2/DLC1/Common/muRaidfightDLC1_07.asset"; public static string muSongHabitat = "RoR2/DLC2/Common/muSong_Habitat.asset"; public static string muSongHelminthBoss = "RoR2/DLC2/Common/muSong_HelminthBoss.asset"; public static string muSongHelminthRoost = "RoR2/DLC2/Common/muSong_HelminthRoost.asset"; public static string muSongLakesHabitatBoss = "RoR2/DLC2/Common/muSong_Lakes&HabitatBoss.asset"; public static string muSongLakesGameplay = "RoR2/DLC2/Common/muSong_LakesGameplay.asset"; public static string muSongLemurianTemple = "RoR2/DLC2/Common/muSong_LemurianTemple.asset"; public static string muSongLemurianTempleBoss = "RoR2/DLC2/Common/muSong_LemurianTempleBoss.asset"; public static string muSongMeridian = "RoR2/DLC2/Common/muSong_Meridian.asset"; public static string muSongMeridianFSB = "RoR2/DLC2/Common/muSong_MeridianFSB.asset"; public static string muSongVillage = "RoR2/DLC2/Common/muSong_Village.asset"; public static string muSongVillageBoss = "RoR2/DLC2/Common/muSong_VillageBoss.asset"; public static string muGameplayDLC301SHMap = "RoR2/DLC3/muGameplayDLC3_01_SH_Map.asset"; public static string muGameplayDLC302PMap = "RoR2/DLC3/muGameplayDLC3_02_P_Map.asset"; public static string muGameplayDLC303IAMap = "RoR2/DLC3/muGameplayDLC3_03_IA_Map.asset"; public static string muGameplayDLC304RCMap = "RoR2/DLC3/muGameplayDLC3_04_RC_Map.asset"; public static string muGameplayDLC305CEMap = "RoR2/DLC3/muGameplayDLC3_05_CE_Map.asset"; public static string muGameplayDLC306CCMap = "RoR2/DLC3/muGameplayDLC3_06_CC_Map.asset"; public static string muGameplayDLC307RCBoss = "RoR2/DLC3/muGameplayDLC3_07_RC_Boss.asset"; public static string muGameplayDLC308RMXSolHeartBoss = "RoR2/DLC3/muGameplayDLC3_08_RMX_SolHeart_Boss.asset"; public static string muGameplayDLC308SHBoss = "RoR2/DLC3/muGameplayDLC3_08_SH_Boss.asset"; } public static class RoachParams { public static string rpDefaultRoach = "RoR2/Base/Common/Props/rpDefaultRoach.asset"; } public static class Cubemap { public static string skybox2Full = "RoR2/Base/Common/Skyboxes/skybox2Full.png"; public static string skyboxFoggyFull = "RoR2/Base/Common/Skyboxes/skyboxFoggyFull.png"; public static string skyboxFoggyFullNoPlanet = "RoR2/Base/Common/Skyboxes/skyboxFoggyFullNoPlanet.png"; public static string texSkybox1Full = "RoR2/Base/Common/Skyboxes/texSkybox1Full.png"; public static string ReflectionProbe0 = "RoR2/Base/arena/ReflectionProbe-0.exr"; public static string ReflectionProbe1 = "RoR2/Base/arena/ReflectionProbe-1.exr"; public static string ReflectionProbe112 = "RoR2/Base/artifactworld/ReflectionProbe-1.exr"; public static string ReflectionProbe026 = "RoR2/Base/bazaar/ReflectionProbe-0.exr"; public static string ReflectionProbe114 = "RoR2/Base/bazaar/ReflectionProbe-1.exr"; public static string ReflectionProbe2 = "RoR2/Base/bazaar/ReflectionProbe-2.exr"; public static string ReflectionProbe015 = "RoR2/Base/blackbeach/ReflectionProbe-0.exr"; public static string ReflectionProbe19 = "RoR2/Base/blackbeach/ReflectionProbe-1.exr"; public static string ReflectionProbe230 = "RoR2/Base/blackbeach/ReflectionProbe-2.exr"; public static string ReflectionProbe025 = "RoR2/Base/blackbeach2/ReflectionProbe-0.exr"; public static string ReflectionProbe136 = "RoR2/Base/blackbeach2/ReflectionProbe-1.exr"; public static string ReflectionProbe03 = "RoR2/Base/dampcavesimple/ReflectionProbe-0.exr"; public static string ReflectionProbe117 = "RoR2/Base/dampcavesimple/ReflectionProbe-1.exr"; public static string ReflectionProbe223 = "RoR2/Base/dampcavesimple/ReflectionProbe-2.exr"; public static string foggyswampReflectionProbe = "RoR2/Base/foggyswamp/foggyswampReflectionProbe.exr"; public static string ReflectionProbe026_Alt = "RoR2/Base/foggyswamp/ReflectionProbe-0.exr"; public static string ReflectionProbe12 = "RoR2/Base/foggyswamp/ReflectionProbe-1.exr"; public static string ReflectionProbe24 = "RoR2/Base/foggyswamp/ReflectionProbe-2.exr"; public static string ReflectionProbe00 = "RoR2/Base/frozenwall/ReflectionProbe-0.exr"; public static string ReflectionProbe15 = "RoR2/Base/frozenwall/ReflectionProbe-1.exr"; public static string ReflectionProbe218 = "RoR2/Base/frozenwall/ReflectionProbe-2.exr"; public static string ReflectionProbe3 = "RoR2/Base/frozenwall/ReflectionProbe-3.exr"; public static string ReflectionProbe4 = "RoR2/Base/frozenwall/ReflectionProbe-4.exr"; public static string ReflectionProbe03_Alt = "RoR2/Base/goldshores/ReflectionProbe-0.exr"; public static string ReflectionProbe129 = "RoR2/Base/goldshores/ReflectionProbe-1.exr"; public static string ReflectionProbe023 = "RoR2/Base/golemplains/ReflectionProbe-0.exr"; public static string ReflectionProbe16 = "RoR2/Base/golemplains/ReflectionProbe-1.exr"; public static string ReflectionProbe224 = "RoR2/Base/golemplains/ReflectionProbe-2.exr"; public static string ReflectionProbe329 = "RoR2/Base/golemplains/ReflectionProbe-3.exr"; public static string ReflectionProbe432 = "RoR2/Base/golemplains/ReflectionProbe-4.exr"; public static string ReflectionProbe029 = "RoR2/Base/golemplains2/ReflectionProbe-0.exr"; public static string ReflectionProbe117_Alt = "RoR2/Base/golemplains2/ReflectionProbe-1.exr"; public static string ReflectionProbe212 = "RoR2/Base/golemplains2/ReflectionProbe-2.exr"; public static string ReflectionProbe017 = "RoR2/Base/goolake/ReflectionProbe-0.exr"; public static string ReflectionProbe024 = "RoR2/Base/logbook/ReflectionProbe-0.exr"; public static string ReflectionProbe122 = "RoR2/Base/logbook/ReflectionProbe-1.exr"; public static string ReflectionProbe028 = "RoR2/Base/moon/ReflectionProbe-0.exr"; public static string ReflectionProbe123 = "RoR2/Base/moon/ReflectionProbe-1.exr"; public static string ReflectionProbe21 = "RoR2/Base/moon/ReflectionProbe-2.exr"; public static string ReflectionProbe318 = "RoR2/Base/moon/ReflectionProbe-3.exr"; public static string ReflectionProbe016 = "RoR2/Base/mysteryspace/ReflectionProbe-0.exr"; public static string ReflectionProbe017_Alt = "RoR2/Base/outro/ReflectionProbe-0.exr"; public static string ReflectionProbe134 = "RoR2/Base/outro/ReflectionProbe-1.exr"; public static string ReflectionProbe20 = "RoR2/Base/outro/ReflectionProbe-2.exr"; public static string ReflectionProbe35 = "RoR2/Base/outro/ReflectionProbe-3.exr"; public static string ReflectionProbe031 = "RoR2/Base/rootjungle/ReflectionProbe-0.exr"; public static string ReflectionProbe124 = "RoR2/Base/rootjungle/ReflectionProbe-1.exr"; public static string skyboxJungleFull = "RoR2/Base/rootjungle/skyboxJungleFull.PNG"; public static string ReflectionProbe036 = "RoR2/Base/shipgraveyard/ReflectionProbe-0.exr"; public static string ReflectionProbe133 = "RoR2/Base/shipgraveyard/ReflectionProbe-1.exr"; public static string ReflectionProbe031_Alt = "RoR2/Base/skymeadow/ReflectionProbe-0.exr"; public static string ReflectionProbe133_Alt = "RoR2/Base/skymeadow/ReflectionProbe-1.exr"; public static string ReflectionProbe229 = "RoR2/Base/skymeadow/ReflectionProbe-2.exr"; public static string texSMSkybox = "RoR2/Base/skymeadow/texSMSkybox.png"; public static string ReflectionProbe07 = "RoR2/Base/title/ReflectionProbe-0.exr"; public static string ReflectionProbe114_Alt = "RoR2/Base/title/ReflectionProbe-1.exr"; public static string ReflectionProbe29 = "RoR2/Base/title/ReflectionProbe-2.exr"; public static string ReflectionProbe021 = "RoR2/Base/wispgraveyard/ReflectionProbe-0.exr"; public static string ReflectionProbe114_Alt2 = "RoR2/Base/wispgraveyard/ReflectionProbe-1.exr"; public static string ReflectionProbe232 = "RoR2/Base/wispgraveyard/ReflectionProbe-2.exr"; public static string ReflectionProbe319 = "RoR2/Base/wispgraveyard/ReflectionProbe-3.exr"; public static string texSkyboxVoid = "RoR2/DLC1/Common/texSkyboxVoid.png"; public static string skyboxAncientTempleFull = "RoR2/DLC1/ancientloft/skyboxAncientTempleFull.png"; public static string ReflectionProbe030 = "RoR2/DLC1/ancientloft/ReflectionProbe-0.exr"; public static string ReflectionProbe10 = "RoR2/DLC1/itancientloft/ReflectionProbe-1.exr"; public static string ReflectionProbe25 = "RoR2/DLC1/itancientloft/ReflectionProbe-2.exr"; public static string ReflectionProbe327 = "RoR2/DLC1/itdampcave/ReflectionProbe-3.exr"; public static string ReflectionProbe5 = "RoR2/DLC1/itfrozenwall/ReflectionProbe-5.exr"; public static string ReflectionProbe528 = "RoR2/DLC1/itgolemplains/ReflectionProbe-5.exr"; public static string ReflectionProbe6 = "RoR2/DLC1/itgolemplains/ReflectionProbe-6.exr"; public static string ReflectionProbe018 = "RoR2/DLC1/itgoolake/ReflectionProbe-0.exr"; public static string ReflectionProbe431 = "RoR2/DLC1/itmoon/ReflectionProbe-4.exr"; public static string ReflectionProbe519 = "RoR2/DLC1/itmoon/ReflectionProbe-5.exr"; public static string ReflectionProbe330 = "RoR2/DLC1/itskymeadow/ReflectionProbe-3.exr"; public static string texSkyboxSF = "RoR2/DLC1/snowyforest/texSkyboxSF.png"; public static string ReflectionProbe036_Alt = "RoR2/DLC1/sulfurpools/ReflectionProbe-0.exr"; public static string ReflectionProbe113 = "RoR2/DLC1/sulfurpools/ReflectionProbe-1.exr"; public static string texSkyboxSP = "RoR2/DLC1/sulfurpools/texSkyboxSP.png"; public static string ReflectionProbe424 = "RoR2/DLC1/voidoutro/ReflectionProbe-4.exr"; public static string ReflectionProbe516 = "RoR2/DLC1/voidoutro/ReflectionProbe-5.exr"; public static string ReflectionProbe619 = "RoR2/DLC1/voidoutro/ReflectionProbe-6.exr"; public static string ReflectionProbe7 = "RoR2/DLC1/voidoutro/ReflectionProbe-7.exr"; public static string ReflectionProbe028_Alt = "RoR2/DLC1/voidraid/ReflectionProbe-0.exr"; public static string ReflectionProbe114_Alt3 = "RoR2/DLC1/voidraid/ReflectionProbe-1.exr"; public static string ReflectionProbe1011 = "RoR2/DLC1/voidraid/ReflectionProbe-10.exr"; public static string ReflectionProbe11 = "RoR2/DLC1/voidraid/ReflectionProbe-11.exr"; public static string ReflectionProbe1230 = "RoR2/DLC1/voidraid/ReflectionProbe-12.exr"; public static string ReflectionProbe13 = "RoR2/DLC1/voidraid/ReflectionProbe-13.exr"; public static string ReflectionProbe14 = "RoR2/DLC1/voidraid/ReflectionProbe-14.exr"; public static string ReflectionProbe1530 = "RoR2/DLC1/voidraid/ReflectionProbe-15.exr"; public static string ReflectionProbe164 = "RoR2/DLC1/voidraid/ReflectionProbe-16.exr"; public static string ReflectionProbe17 = "RoR2/DLC1/voidraid/ReflectionProbe-17.exr"; public static string ReflectionProbe222 = "RoR2/DLC1/voidraid/ReflectionProbe-2.exr"; public static string ReflectionProbe314 = "RoR2/DLC1/voidraid/ReflectionProbe-3.exr"; public static string ReflectionProbe45 = "RoR2/DLC1/voidraid/ReflectionProbe-4.exr"; public static string ReflectionProbe530 = "RoR2/DLC1/voidraid/ReflectionProbe-5.exr"; public static string ReflectionProbe616 = "RoR2/DLC1/voidraid/ReflectionProbe-6.exr"; public static string ReflectionProbe718 = "RoR2/DLC1/voidraid/ReflectionProbe-7.exr"; public static string ReflectionProbe8 = "RoR2/DLC1/voidraid/ReflectionProbe-8.exr"; public static string ReflectionProbe9 = "RoR2/DLC1/voidraid/ReflectionProbe-9.exr"; public static string ReflectionProbe025_Alt = "RoR2/DLC1/voidstage/ReflectionProbe-0.exr"; public static string ReflectionProbe11_Alt = "RoR2/DLC1/voidstage/ReflectionProbe-1.exr"; public static string ReflectionProbe229_Alt = "RoR2/DLC1/voidstage/ReflectionProbe-2.exr"; public static string ReflectionProbe36 = "RoR2/DLC1/voidstage/ReflectionProbe-3.exr"; public static string ReflectionProbe434 = "RoR2/DLC1/voidstage/ReflectionProbe-4.exr"; public static string ReflectionProbe523 = "RoR2/DLC1/voidstage/ReflectionProbe-5.exr"; public static string ReflectionProbe17_Alt = "RoR2/DLC2/artifactworld03/Assets/ReflectionProbe-1.exr"; public static string texBHSkybox = "RoR2/DLC2/habitat/Assets/texBHSkybox.png"; public static string texBHFallSkybox = "RoR2/DLC2/habitatfall/Assets/texBHFallSkybox.png"; public static string ReflectionProbe010 = "RoR2/DLC2/habitatfall/ReflectionProbe-0.exr"; public static string ReflectionProbe124_Alt = "RoR2/DLC2/habitatfall/ReflectionProbe-1.exr"; public static string texHRSkyboxFoggyFullNoPlanet = "RoR2/DLC2/helminthroost/Assets/texHRSkyboxFoggyFullNoPlanet.png"; public static string ReflectionProbe026_Alt2 = "RoR2/DLC2/helminthroost/ReflectionProbe-0.exr"; public static string ReflectionProbe130 = "RoR2/DLC2/helminthroost/ReflectionProbe-1.exr"; public static string ReflectionProbe221 = "RoR2/DLC2/helminthroost/ReflectionProbe-2.exr"; public static string ReflectionProbe39 = "RoR2/DLC2/helminthroost/ReflectionProbe-3.exr"; public static string texTLSkybox = "RoR2/DLC2/lakes/Assets/texTLSkybox.png"; public static string ReflectionProbe027 = "RoR2/DLC2/lakes/ReflectionProbe-0.exr"; public static string texTLNightSkybox = "RoR2/DLC2/lakesnight/Assets/texTLNightSkybox.png"; public static string ReflectionProbe01 = "RoR2/DLC2/lakesnight/ReflectionProbe-0.exr"; public static string ReflectionProbe018_Alt = "RoR2/DLC2/lemuriantemple/ReflectionProbe-0.exr"; public static string ReflectionProbe10_Alt = "RoR2/DLC2/lemuriantemple/ReflectionProbe-1.exr"; public static string ReflectionProbe21_Alt = "RoR2/DLC2/lemuriantemple/ReflectionProbe-2.exr"; public static string texLTSkybox = "RoR2/DLC2/lemuriantemple/texLTSkybox.png"; public static string skyboxPM = "RoR2/DLC2/meridian/skyboxPM.png"; public static string texLVNightSkybox = "RoR2/DLC2/villagenight/Assets/texLVNightSkybox.png"; public static string texLVNightSkyboxopt = "RoR2/DLC2/villagenight/Assets/texLVNightSkybox_opt.png"; public static string ReflectionProbe034 = "RoR2/DLC2/villagenight/villagenight/ReflectionProbe-0.exr"; public static string ReflectionProbe119 = "RoR2/DLC2/villagenight/villagenight/ReflectionProbe-1.exr"; public static string texCESkybox = "RoR2/DLC3/computationalexchange/texCESkybox.png"; public static string texCCskybox = "RoR2/DLC3/conduitcanyon/texCCskybox.tga"; public static string ReflectionProbe034_Alt = "RoR2/DLC3/conduitcanyon/ReflectionProbe-0.exr"; public static string ReflectionProbe118 = "RoR2/DLC3/conduitcanyon/ReflectionProbe-1.exr"; public static string texIAskybox = "RoR2/DLC3/ironalluvium/texIAskybox.tga"; public static string ReflectionProbe023_Alt = "RoR2/DLC3/ironalluvium/ReflectionProbe-0.exr"; public static string ReflectionProbe122_Alt = "RoR2/DLC3/ironalluvium/ReflectionProbe-1.exr"; public static string texIA2Skybox = "RoR2/DLC3/ironalluvium2/texIA2Skybox.tga"; public static string ReflectionProbe013 = "RoR2/DLC3/ironalluvium2/ReflectionProbe-0.exr"; public static string ReflectionProbe10_Alt2 = "RoR2/DLC3/ironalluvium2/ReflectionProbe-1.exr"; public static string skyboxIA2 = "RoR2/DLC3/ironalluvium2/skyboxIA2.png"; public static string texNestSkybox3 = "RoR2/DLC3/nest/texNestSkybox3.png"; public static string ReflectionProbe036_Alt2 = "RoR2/DLC3/nest/ReflectionProbe-0.exr"; public static string ReflectionProbe711 = "RoR2/DLC3/nest/ReflectionProbe-7.exr"; public static string RepurposedCraterSkybox01 = "RoR2/DLC3/repurposedcrater/Repurposed_Crater_Skybox_01.png"; public static string RepurposedCraterSkybox02 = "RoR2/DLC3/repurposedcrater/Repurposed_Crater_Skybox_02.png"; public static string ReflectionProbe025_Alt2 = "RoR2/DLC3/solusweb/ReflectionProbe-0.exr"; public static string ReflectionProbe17_Alt2 = "RoR2/DLC3/solusweb/ReflectionProbe-1.exr"; public static string ReflectionProbe715 = "RoR2/DLC3/solusweb/ReflectionProbe-7.exr"; public static string texCESkybox13 = "RoR2/DLC3/solusweb/texCESkybox.png"; public static string ReflectionProbe025_Alt3 = "RoR2/DLC3/solutionalhaunt/ReflectionProbe-0.exr"; public static string ReflectionProbe16_Alt = "RoR2/DLC3/solutionalhaunt/ReflectionProbe-1.exr"; public static string ReflectionProbe210 = "RoR2/DLC3/solutionalhaunt/ReflectionProbe-2.exr"; public static string ReflectionProbe312 = "RoR2/DLC3/solutionalhaunt/ReflectionProbe-3.exr"; public static string skybox3Full = "RoR2/Junk/Common/Skyboxes/skybox3Full.png"; public static string texSkyboxStage1 = "RoR2/Junk/Common/Skyboxes/texSkyboxStage1.png"; public static string texSkyboxStage2 = "RoR2/Junk/Common/Skyboxes/texSkyboxStage2.png"; public static string texSkyboxStage3 = "RoR2/Junk/Common/Skyboxes/texSkyboxStage3.png"; public static string texPaintCookie2 = "RoR2/Junk/Common/texPaintCookie2.png"; public static string ReflectionProbe00_Alt = "RoR2/Junk/scnNetTest2/ReflectionProbe-0.exr"; public static string ReflectionProbe04 = "RoR2/Junk/slice1/ReflectionProbe-0.exr"; public static string ReflectionProbe11_Alt2 = "RoR2/Junk/slice1/ReflectionProbe-1.exr"; } public static class TimerStringFormatter { public static string tsfDefault = "RoR2/Base/Common/tsfDefault.asset"; public static string tsfEscape = "RoR2/Base/Common/tsfEscape.asset"; public static string tsfRunStopwatch = "RoR2/Base/Common/tsfRunStopwatch.asset"; public static string tsfInfiniteTowerWave = "RoR2/DLC1/GameModes/InfiniteTowerRun/tsfInfiniteTowerWave.asset"; } public static class PostProcessProfile { public static string ppLocalVoidFogMild = "RoR2/Base/Common/ppLocalVoidFogMild.asset"; public static string ppLocalVoidFogStrong = "RoR2/Base/Common/ppLocalVoidFogStrong.asset"; public static string ppLocalVoidDeathBombWarning = "RoR2/Base/Common/ppLocalVoidDeathBombWarning.asset"; public static string ppLocalVoidDeathBomDetonate = "RoR2/Base/Common/ppLocalVoidDeathBomDetonate.asset"; public static string ppLimboDarkness = "RoR2/Base/limbo/ppLimboDarkness.asset"; public static string ppSceneITLobby = "RoR2/Base/lobby/ppSceneITLobby.asset"; public static string ppEscapeSequenceFailure = "RoR2/Base/moon2/ppEscapeSequenceFailure.asset"; public static string ppApplication = "RoR2/Base/title/PostProcessing/ppApplication.asset"; public static string ppApplicationopt = "RoR2/Base/title/PostProcessing/ppApplication_opt.asset"; public static string ppDisabler = "RoR2/Base/title/PostProcessing/ppDisabler.asset"; public static string ppDisableropt = "RoR2/Base/title/PostProcessing/ppDisabler_opt.asset"; public static string ppLobby = "RoR2/Base/title/PostProcessing/ppLobby.asset"; public static string ppLocalAltarSkeletonDeath = "RoR2/Base/title/PostProcessing/ppLocalAltarSkeletonDeath.asset"; public static string ppLocalArtifactShellHurt = "RoR2/Base/title/PostProcessing/ppLocalArtifactShellHurt.asset"; public static string ppLocalBottomOfBazaar = "RoR2/Base/title/PostProcessing/ppLocalBottomOfBazaar.asset"; public static string ppLocalBrightLight = "RoR2/Base/title/PostProcessing/ppLocalBrightLight.asset"; public static string ppLocalBrotherDeath = "RoR2/Base/title/PostProcessing/ppLocalBrotherDeath.asset"; public static string ppLocalClayBossDeath = "RoR2/Base/title/PostProcessing/ppLocalClayBossDeath.asset"; public static string ppLocalDoppelganger = "RoR2/Base/title/PostProcessing/ppLocalDoppelganger.asset"; public static string ppLocalElectricWorm = "RoR2/Base/title/PostProcessing/ppLocalElectricWorm.asset"; public static string ppLocalGold = "RoR2/Base/title/PostProcessing/ppLocalGold.asset"; public static string ppLocalGolem = "RoR2/Base/title/PostProcessing/ppLocalGolem.asset"; public static string ppLocalGoo = "RoR2/Base/title/PostProcessing/ppLocalGoo.asset"; public static string ppLocalGrandparent = "RoR2/Base/title/PostProcessing/ppLocalGrandparent.asset"; public static string ppLocalHealing = "RoR2/Base/title/PostProcessing/ppLocalHealing.asset"; public static string ppLocalHealingDisabled = "RoR2/Base/title/PostProcessing/ppLocalHealingDisabled.asset"; public static string ppLocalHereticSpawn = "RoR2/Base/title/PostProcessing/ppLocalHereticSpawn.asset"; public static string ppLocalImpBoss = "RoR2/Base/title/PostProcessing/ppLocalImpBoss.asset"; public static string ppLocalLightning = "RoR2/Base/title/PostProcessing/ppLocalLightning.asset"; public static string ppLocalMagmaWorm = "RoR2/Base/title/PostProcessing/ppLocalMagmaWorm.asset"; public static string ppLocalMeteorImpact = "RoR2/Base/title/PostProcessing/ppLocalMeteorImpact.asset"; public static string ppLocalMeteorStorm = "RoR2/Base/title/PostProcessing/ppLocalMeteorStorm.asset"; public static string ppLocalNoCooldown = "RoR2/Base/title/PostProcessing/ppLocalNoCooldown.asset"; public static string ppLocalNullifier = "RoR2/Base/title/PostProcessing/ppLocalNullifier.asset"; public static string ppLocalPlayerDeath = "RoR2/Base/title/PostProcessing/ppLocalPlayerDeath.asset"; public static string ppLocalRadio = "RoR2/Base/title/PostProcessing/ppLocalRadio.asset"; public static string ppLocalRez = "RoR2/Base/title/PostProcessing/ppLocalRez.asset"; public static string ppLocalRoboBossDeath = "RoR2/Base/title/PostProcessing/ppLocalRoboBossDeath.asset"; public static string ppLocalTonic = "RoR2/Base/title/PostProcessing/ppLocalTonic.asset"; public static string ppLocalTPActivation = "RoR2/Base/title/PostProcessing/ppLocalTPActivation.asset"; public static string ppLocalUnderwater = "RoR2/Base/title/PostProcessing/ppLocalUnderwater.asset"; public static string ppLocalUnderwaterRaidAL = "RoR2/Base/title/PostProcessing/ppLocalUnderwaterRaidAL.asset"; public static string ppLocalUnderwaterRaidBB = "RoR2/Base/title/PostProcessing/ppLocalUnderwaterRaidBB.asset"; public static string ppLocalUnderwaterRaidGP = "RoR2/Base/title/PostProcessing/ppLocalUnderwaterRaidGP.asset"; public static string ppLocalUnderwaterSwamp = "RoR2/Base/title/PostProcessing/ppLocalUnderwaterSwamp.asset"; public static string ppLocalUnderwaterSwampopt = "RoR2/Base/title/PostProcessing/ppLocalUnderwaterSwamp_opt.asset"; public static string ppLocalVagrantExplosion = "RoR2/Base/title/PostProcessing/ppLocalVagrantExplosion.asset"; public static string ppLogbookBase = "RoR2/Base/title/PostProcessing/ppLogbookBase.asset"; public static string ppMultiMenu = "RoR2/Base/title/PostProcessing/ppMultiMenu.asset"; public static string ppPause = "RoR2/Base/title/PostProcessing/ppPause.asset"; public static string ppRunBase = "RoR2/Base/title/PostProcessing/ppRunBase.asset"; public static string ppRunBaseopt = "RoR2/Base/title/PostProcessing/ppRunBase_opt.asset"; public static string ppSceneArenaCleared = "RoR2/Base/title/PostProcessing/ppSceneArenaCleared.asset"; public static string ppSceneArenaSafe = "RoR2/Base/title/PostProcessing/ppSceneArenaSafe.asset"; public static string ppSceneArenaSick = "RoR2/Base/title/PostProcessing/ppSceneArenaSick.asset"; public static string ppSceneArtifactWorld = "RoR2/Base/title/PostProcessing/ppSceneArtifactWorld.asset"; public static string ppSceneBazaar = "RoR2/Base/title/PostProcessing/ppSceneBazaar.asset"; public static string ppSceneBlackbeach = "RoR2/Base/title/PostProcessing/ppSceneBlackbeach.asset"; public static string ppSceneBlackbeachEclipse = "RoR2/Base/title/PostProcessing/ppSceneBlackbeach_Eclipse.asset"; public static string ppSceneCrystalWorld = "RoR2/Base/title/PostProcessing/ppSceneCrystalWorld.asset"; public static string ppSceneDampcave = "RoR2/Base/title/PostProcessing/ppSceneDampcave.asset"; public static string ppSceneDampcaveHot = "RoR2/Base/title/PostProcessing/ppSceneDampcaveHot.asset"; public static string ppSceneDampcaveInTunnels = "RoR2/Base/title/PostProcessing/ppSceneDampcaveInTunnels.asset"; public static string ppSceneEclipseClose = "RoR2/Base/title/PostProcessing/ppSceneEclipseClose.asset"; public static string ppSceneEclipseStandard = "RoR2/Base/title/PostProcessing/ppSceneEclipseStandard.asset"; public static string ppSceneEclipseWorld = "RoR2/Base/title/PostProcessing/ppSceneEclipseWorld.asset"; public static string ppSceneFoggyswamp = "RoR2/Base/title/PostProcessing/ppSceneFoggyswamp.asset"; public static string ppSceneFoggyswampAltar = "RoR2/Base/title/PostProcessing/ppSceneFoggyswampAltar.asset"; public static string ppSceneFrozenwallNight = "RoR2/Base/title/PostProcessing/ppSceneFrozenwallNight.asset"; public static string ppSceneGoldshores = "RoR2/Base/title/PostProcessing/ppSceneGoldshores.asset"; public static string ppSceneGolemplains = "RoR2/Base/title/PostProcessing/ppSceneGolemplains.asset"; public static string ppSceneGolemplainsFoggy = "RoR2/Base/title/PostProcessing/ppSceneGolemplainsFoggy.asset"; public static string ppSceneGolemplainsTrailer = "RoR2/Base/title/PostProcessing/ppSceneGolemplainsTrailer.asset"; public static string ppSceneGoolake = "RoR2/Base/title/PostProcessing/ppSceneGoolake.asset"; public static string ppSceneGoolakeInTunnels = "RoR2/Base/title/PostProcessing/ppSceneGoolakeInTunnels.asset"; public static string ppSceneIntro1 = "RoR2/Base/title/PostProcessing/ppSceneIntro_1.asset"; public static string ppSceneIntro2 = "RoR2/Base/title/PostProcessing/ppSceneIntro_2.asset"; public static string ppSceneIntro4 = "RoR2/Base/title/PostProcessing/ppSceneIntro_4.asset"; public static string ppSceneLimbo = "RoR2/Base/title/PostProcessing/ppSceneLimbo.asset"; public static string ppSceneLogbookLocal = "RoR2/Base/title/PostProcessing/ppSceneLogbookLocal.asset"; public static string ppSceneMoon = "RoR2/Base/title/PostProcessing/ppSceneMoon.asset"; public static string ppSceneMoonEscape = "RoR2/Base/title/PostProcessing/ppSceneMoonEscape.asset"; public static string ppSceneMoonFoggy = "RoR2/Base/title/PostProcessing/ppSceneMoonFoggy.asset"; public static string ppSceneMoonInCave = "RoR2/Base/title/PostProcessing/ppSceneMoonInCave.asset"; public static string ppSceneMysterySpace = "RoR2/Base/title/PostProcessing/ppSceneMysterySpace.asset"; public static string ppSceneOutroMoonSurface = "RoR2/Base/title/PostProcessing/ppSceneOutroMoonSurface.asset"; public static string ppSceneOutroText = "RoR2/Base/title/PostProcessing/ppSceneOutroText.asset"; public static string ppSceneShipgraveyard = "RoR2/Base/title/PostProcessing/ppSceneShipgraveyard.asset"; public static string ppSceneSkyMeadow = "RoR2/Base/title/PostProcessing/ppSceneSkyMeadow.asset"; public static string ppSceneWispGraveyard = "RoR2/Base/title/PostProcessing/ppSceneWispGraveyard.asset"; public static string ppSceneWispGraveyardSoot = "RoR2/Base/title/PostProcessing/ppSceneWispGraveyardSoot.asset"; public static string ppSceneRootJungleClear = "RoR2/Base/title/PostProcessing/ppSceneRootJungleClear.asset"; public static string ppSceneRootJungleRain = "RoR2/Base/title/PostProcessing/ppSceneRootJungleRain.asset"; public static string ppSpaceBase = "RoR2/Base/title/PostProcessing/ppSpaceBase.asset"; public static string ppTester = "RoR2/Base/title/PostProcessing/ppTester.asset"; public static string ppTitleBase = "RoR2/Base/title/PostProcessing/ppTitleBase.asset"; public static string ppTitleCU1 = "RoR2/Base/title/PostProcessing/ppTitleCU1.asset"; public static string ppTitleCU2 = "RoR2/Base/title/PostProcessing/ppTitleCU2.asset"; public static string ppTitleCU3 = "RoR2/Base/title/PostProcessing/ppTitleCU3.asset"; public static string ppTitleCU4 = "RoR2/Base/title/PostProcessing/ppTitleCU4.asset"; public static string ppLocalConstruct = "RoR2/DLC1/MajorAndMinorConstruct/ppLocalConstruct.asset"; public static string ppLocalRailgunnerSuper = "RoR2/DLC1/Railgunner/ppLocalRailgunnerSuper.asset"; public static string ppLocalVoidRaidCrabDeath = "RoR2/DLC1/VoidRaidCrab/ppLocalVoidRaidCrabDeath.asset"; public static string ppLocalVoidRaidBossJointBreak = "RoR2/DLC1/VoidRaidCrab/ppLocalVoidRaidBossJointBreak.asset"; public static string ppLocalVoidRaidBossSpawn = "RoR2/DLC1/VoidRaidCrab/ppLocalVoidRaidBossSpawn.asset"; public static string ppLocalWardWipe = "RoR2/DLC1/VoidRaidCrab/ppLocalWardWipe.asset"; public static string ppLocalWardWipeFire = "RoR2/DLC1/VoidRaidCrab/ppLocalWardWipeFire.asset"; public static string ppLocalVoidSurvivorConvert = "RoR2/DLC1/VoidSurvivor/ppLocalVoidSurvivorConvert.asset"; public static string ppSceneVoidStage = "RoR2/DLC1/Common/Void/ppSceneVoidStage.asset"; public static string ppSceneVoidStageopt = "RoR2/DLC1/Common/Void/ppSceneVoidStage_opt.asset"; public static string ppLocalBossHunterFire = "RoR2/DLC1/BossHunter/ppLocalBossHunterFire.asset"; public static string ppLocalInfiniteTowerOuterSpace = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ppLocalInfiniteTowerOuterSpace.asset"; public static string ppLocalInfiniteTowerOuterSpaceOffOverride = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ppLocalInfiniteTowerOuterSpaceOffOverride.asset"; public static string ppSceneITSafe = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ppSceneITSafe.asset"; public static string ppLocalDeepVoidPortalBatteryCharging = "RoR2/DLC1/DeepVoidPortalBattery/ppLocalDeepVoidPortalBatteryCharging.asset"; public static string ppSceneAncientLoft = "RoR2/DLC1/ancientloft/ppSceneAncientLoft.asset"; public static string ppSceneAncientLoftopt = "RoR2/DLC1/ancientloft/ppSceneAncientLoft_opt.asset"; public static string ppSceneVoidGauntlet = "RoR2/DLC1/gauntlets/ppSceneVoidGauntlet.asset"; public static string ppSceneSnowyForest = "RoR2/DLC1/snowyforest/ppSceneSnowyForest.asset"; public static string ppSceneSnowyForestCave = "RoR2/DLC1/snowyforest/ppSceneSnowyForestCave.asset"; public static string ppSceneSulfurPools = "RoR2/DLC1/sulfurpools/ppSceneSulfurPools.asset"; public static string ppSceneSulfurPoolsopt = "RoR2/DLC1/sulfurpools/ppSceneSulfurPools_opt.asset"; public static string ppSceneSulfurPoolsCave = "RoR2/DLC1/sulfurpools/ppSceneSulfurPoolsCave.asset"; public static string ppSceneSulfurPoolsCaveopt = "RoR2/DLC1/sulfurpools/ppSceneSulfurPoolsCave_opt.asset"; public static string ppVoidOutro = "RoR2/DLC1/voidoutro/ppVoidOutro.asset"; public static string ppVoidOutroBottomOfOcean = "RoR2/DLC1/voidoutro/ppVoidOutroBottomOfOcean.asset"; public static string ppVoidOutroBrighter = "RoR2/DLC1/voidoutro/ppVoidOutroBrighter.asset"; public static string VoidOutroBloom = "RoR2/DLC1/voidoutro/VoidOutroBloom.asset"; public static string VoidOutroChromatic = "RoR2/DLC1/voidoutro/VoidOutroChromatic.asset"; public static string VoidOutroDarker = "RoR2/DLC1/voidoutro/VoidOutroDarker.asset"; public static string VoidOutroDoF1 = "RoR2/DLC1/voidoutro/VoidOutroDoF1.asset"; public static string VoidOutroDoF2 = "RoR2/DLC1/voidoutro/VoidOutroDoF2.asset"; public static string VoidOutroDoFCrabDizzy = "RoR2/DLC1/voidoutro/VoidOutroDoFCrabDizzy.asset"; public static string VoidOutroDoFOpeningDizzy = "RoR2/DLC1/voidoutro/VoidOutroDoFOpeningDizzy.asset"; public static string VoidOutroSeverLink = "RoR2/DLC1/voidoutro/VoidOutroSeverLink.asset"; public static string VoidOutroVignette = "RoR2/DLC1/voidoutro/VoidOutroVignette.asset"; public static string ppSceneVoidRaidStage = "RoR2/DLC1/voidraid/ppSceneVoidRaidStage.asset"; public static string ppSceneVoidRaidStageLightning = "RoR2/DLC1/voidraid/ppSceneVoidRaidStageLightning.asset"; public static string ppSceneVoidRaidStageStarry = "RoR2/DLC1/voidraid/ppSceneVoidRaidStageStarry.asset"; public static string ppShrineHalcyonite = "RoR2/DLC2/ppShrineHalcyonite.asset"; public static string ppSceneBH = "RoR2/DLC2/habitat/ppSceneBH.asset"; public static string ppSceneBHFall = "RoR2/DLC2/habitatfall/ppSceneBHFall.asset"; public static string ppSceneHelminth = "RoR2/DLC2/helminthroost/ppSceneHelminth.asset"; public static string ppSceneTL = "RoR2/DLC2/lakes/ppSceneTL.asset"; public static string ppSceneTLCave = "RoR2/DLC2/lakesnight/ppSceneTLCave.asset"; public static string ppSceneTLnight = "RoR2/DLC2/lakesnight/ppSceneTLnight.asset"; public static string ppScenelemuriantemple = "RoR2/DLC2/lemuriantemple/ppScenelemuriantemple.asset"; public static string ppScenePM = "RoR2/DLC2/meridian/ppScenePM.asset"; public static string ppScenePMActivated = "RoR2/DLC2/meridian/ppScenePMActivated.asset"; public static string ppScenePMCleared = "RoR2/DLC2/meridian/ppScenePMCleared.asset"; public static string ppScenePMPreAmble = "RoR2/DLC2/meridian/ppScenePMPreAmble.asset"; public static string ppSceneLV = "RoR2/DLC2/village/ppSceneLV.asset"; public static string ppSceneLVnight = "RoR2/DLC2/villagenight/ppSceneLVnight.asset"; public static string ppLocalDefectiveUnitDetonate = "RoR2/DLC3/DefectiveUnit/ppLocalDefectiveUnitDetonate.asset"; public static string ppLocalIronHaulerLaunch = "RoR2/DLC3/IronHauler/ppLocalIronHaulerLaunch.asset"; public static string ppLocalIronHaulerLaunchCC = "RoR2/DLC3/IronHauler/ppLocalIronHaulerLaunch_CC.asset"; public static string ppLocalSolusAmalgamatorLaunch = "RoR2/DLC3/SolusAmalgamator/ppLocalSolusAmalgamatorLaunch.asset"; public static string PPProfile = "RoR2/DLC3/SolusHeart/PP Profile.asset"; public static string ppSolusHeartBlink = "RoR2/DLC3/SolusHeart/ppSolusHeartBlink.asset"; public static string ppSolusHeartDeath = "RoR2/DLC3/SolusHeart/ppSolusHeartDeath.asset"; public static string ppvSHLaser = "RoR2/DLC3/SolusHeart/ppvSHLaser.asset"; public static string ppvUnderclock = "RoR2/DLC3/SolusHeart/ppvUnderclock.asset"; public static string ppOverheatBeam = "RoR2/DLC3/SolusWing/ppOverheatBeam.asset"; public static string ppLocalSWDeath = "RoR2/DLC3/SolusWing/ppLocalSW_Death.asset"; public static string ppLocalSWportDestroyed = "RoR2/DLC3/SolusWing/ppLocalSW_portDestroyed.asset"; public static string ppLocalSWPreDeath = "RoR2/DLC3/SolusWing/ppLocalSW_PreDeath.asset"; public static string PPSHExtinguisher = "RoR2/DLC3/SolusWingForm1/PP_SH_Extinguisher.asset"; public static string ppOverheat = "RoR2/DLC3/SolusWingForm1/ppOverheat.asset"; public static string ppShieldPostProcessing = "RoR2/DLC3/SolusWingForm1/ppShieldPostProcessing.asset"; public static string ppLocalVendorSteal = "RoR2/DLC3/ppLocalVendorSteal.asset"; public static string ppLocalShieldTankDamage = "RoR2/DLC3/Buffs/ppLocalShieldTankDamage.asset"; public static string ppParry = "RoR2/DLC3/Parry/ppParry.asset"; public static string ppSolusWebPortalSpawn = "RoR2/DLC3/ppSolusWebPortalSpawn.asset"; public static string ppSceneCE = "RoR2/DLC3/computationalexchange/ppSceneCE.asset"; public static string ppSceneCEOff = "RoR2/DLC3/computationalexchange/ppSceneCEOff.asset"; public static string ppSceneCEOff2 = "RoR2/DLC3/computationalexchange/ppSceneCEOff2.asset"; public static string ppLocalConduitTPActivation = "RoR2/DLC3/conduitcanyon/ppLocalConduitTPActivation.asset"; public static string ppSceneCC = "RoR2/DLC3/conduitcanyon/ppSceneCC.asset"; public static string ppIAcave = "RoR2/DLC3/ironalluvium/ppIAcave.asset"; public static string ppIAcave02 = "RoR2/DLC3/ironalluvium/ppIAcave02.asset"; public static string ppIAdrillShade = "RoR2/DLC3/ironalluvium/ppIAdrillShade.asset"; public static string ppIAentrance = "RoR2/DLC3/ironalluvium/ppIAentrance.asset"; public static string ppSceneIA = "RoR2/DLC3/ironalluvium/ppSceneIA.asset"; public static string ppSceneIA1 = "RoR2/DLC3/ironalluvium2/ppSceneIA 1.asset"; public static string ppSceneNest = "RoR2/DLC3/nest/ppSceneNest.asset"; public static string ppLocalCraterBuildingExterior = "RoR2/DLC3/repurposedcrater/ppLocalCraterBuildingExterior.asset"; public static string ppLocalCraterBuildingInterior = "RoR2/DLC3/repurposedcrater/ppLocalCraterBuildingInterior.asset"; public static string ppLocalCraterFarmFloor = "RoR2/DLC3/repurposedcrater/ppLocalCraterFarmFloor.asset"; public static string ppSceneRC = "RoR2/DLC3/repurposedcrater/ppSceneRC.asset"; public static string ppSceneSolusWeb = "RoR2/DLC3/solusweb/ppSceneSolusWeb.asset"; public static string ppSceneSolusWebDeath = "RoR2/DLC3/solusweb/ppSceneSolusWebDeath.asset"; public static string PPTier1Profile = "RoR2/DLC3/solusweb/PP Tier1 Profile.asset"; public static string ppSceneSH = "RoR2/DLC3/solutionalhaunt/ppSceneSH.asset"; public static string ppSolutionalHauntDesperation = "RoR2/DLC3/solutionalhaunt/ppSolutionalHauntDesperation.asset"; public static string ppSolusWingPrefight = "RoR2/DLC3/solutionalhaunt/ppSolusWingPrefight.asset"; public static string ppLocalBlur = "RoR2/GlobalContent/ppLocalBlur.asset"; public static string ppLocalBluropt = "RoR2/GlobalContent/ppLocalBlur_opt.asset"; public static string ppLocalBrotherImpact = "RoR2/GlobalContent/ppLocalBrotherImpact.asset"; public static string ppSceneSatellite = "RoR2/Junk/satellitescene/ppSceneSatellite.asset"; } public static class AudioClip { public static string silence = "RoR2/Base/Core/Audio/silence.ogg"; public static string RiskOfRainMockupEndAudio = "RoR2/DLC1/voidoutro/RiskOfRainMockupEndAudio.wav"; } public static class AudioMixer { public static string VoiceChatMixer = "RoR2/Base/Core/Audio/VoiceChatMixer.mixer"; public static string PLACEHOLDERMIXER = "RoR2/DLC1/voidoutro/PLACEHOLDER MIXER.mixer"; } public static class Shader { public static string HGScreenDamage = "RoR2/Base/Core/CameraEffects/HGScreenDamage.shader"; public static string OutlineHighlightNew = "RoR2/Base/Core/Outline/OutlineHighlightNew.shader"; public static string OutlineHighlightSurf = "RoR2/Base/Core/Outline/OutlineHighlightSurf.shader"; public static string FillLinear = "RoR2/Base/skymeadow/Fill-Linear.shader"; public static string HopooSSR = "RoR2/Base/Shaders/HopooSSR.shader"; public static string RampFog = "RoR2/Base/Shaders/RampFog.shader"; public static string SceneTint = "RoR2/Base/Shaders/SceneTint.shader"; public static string SobelOutline = "RoR2/Base/Shaders/SobelOutline.shader"; public static string SobelRain = "RoR2/Base/Shaders/SobelRain.shader"; public static string HGOnTop = "RoR2/Base/Shaders/HGOnTop.shader"; public static string HGSnowTopped = "RoR2/Base/Shaders/HGSnowTopped.shader"; public static string HGStandard = "RoR2/Base/Shaders/HGStandard.shader"; public static string HGStandardTextureScrolling = "RoR2/Base/Shaders/HGStandardTextureScrolling.shader"; public static string HGStandardWithDistortion = "RoR2/Base/Shaders/HGStandardWithDistortion.shader"; public static string HGTriplanarTerrainBlend = "RoR2/Base/Shaders/HGTriplanarTerrainBlend.shader"; public static string HGWavyCloth = "RoR2/Base/Shaders/HGWavyCloth.shader"; public static string InternalDeferredReflections = "RoR2/Base/Shaders/Internal-DeferredReflections.shader"; public static string InternalDeferredReflectionsCustom = "RoR2/Base/Shaders/Internal-DeferredReflectionsCustom.shader"; public static string InternalDeferredShadingCustom = "RoR2/Base/Shaders/Internal-DeferredShadingCustom.shader"; public static string HGDistantWater = "RoR2/Base/Shaders/HGDistantWater.shader"; public static string HGDistantWaterEmissive1sided = "RoR2/Base/Shaders/HGDistantWaterEmissive1sided.shader"; public static string HGFlag = "RoR2/Base/Shaders/HGFlag.shader"; public static string HGGrass = "RoR2/Base/Shaders/HGGrass.shader"; public static string HGWaterfall = "RoR2/Base/Shaders/HGWaterfall.shader"; public static string HGCloudRemap = "RoR2/Base/Shaders/HGCloudRemap.shader"; public static string HGDamageNumber = "RoR2/Base/Shaders/HGDamageNumber.shader"; public static string HGDistortion = "RoR2/Base/Shaders/HGDistortion.shader"; public static string HGForwardPlanet = "RoR2/Base/Shaders/HGForwardPlanet.shader"; public static string HGIntersectionCloudRemap = "RoR2/Base/Shaders/HGIntersectionCloudRemap.shader"; public static string HGOpaqueCloudRemap = "RoR2/Base/Shaders/HGOpaqueCloudRemap.shader"; public static string HGSolidParallax = "RoR2/Base/Shaders/HGSolidParallax.shader"; public static string HGVertexOnly = "RoR2/Base/Shaders/HGVertexOnly.shader"; public static string InternalScreenSpaceShadowsCheaper = "RoR2/Base/Shaders/Internal-ScreenSpaceShadows_Cheaper.shader"; public static string MobileBlur = "RoR2/Base/Shaders/MobileBlur.shader"; public static string DoublePassUnlitTemplate = "RoR2/Base/Shaders/DoublePassUnlitTemplate.shader"; public static string Barkswitch = "RoR2/Base/Shaders/Bark_switch.shader"; public static string FakePointLight = "RoR2/Base/Shaders/FakePointLight.shader"; public static string Leavesswitch = "RoR2/Base/Shaders/Leaves_switch.shader"; public static string Snowswitch = "RoR2/Base/Shaders/Snow_switch.shader"; public static string Standardswitch = "RoR2/Base/Shaders/Standard_switch.shader"; public static string StandardSimpleCutoutLitswitch = "RoR2/Base/Shaders/StandardSimple_Cutout_Lit_switch.shader"; public static string StandardSimpleCutoutUnlitswitch = "RoR2/Base/Shaders/StandardSimple_Cutout_Unlit_switch.shader"; public static string StandardSimpleLitswitch = "RoR2/Base/Shaders/StandardSimple_Lit_switch.shader"; public static string StandardSimpleTransparentLitswitch = "RoR2/Base/Shaders/StandardSimple_Transparent_Lit_switch.shader"; public static string StandardSimpleTransparentUnlitswitch = "RoR2/Base/Shaders/StandardSimple_Transparent_Unlit_switch.shader"; public static string StandardSimpleUnlitCutoutswitch = "RoR2/Base/Shaders/StandardSimple_Unlit_Cutout_switch.shader"; public static string StandardSimpleUnlitswitch = "RoR2/Base/Shaders/StandardSimple_Unlit_switch.shader"; public static string TerrainTriplanarNormalswitch = "RoR2/Base/Shaders/TerrainTriplanar_Normal_switch.shader"; public static string TerrainTriplanarswitch = "RoR2/Base/Shaders/TerrainTriplanar_switch.shader"; public static string TerrainTriplanarSimpleswitch = "RoR2/Base/Shaders/TerrainTriplanarSimple_switch.shader"; public static string Waterswitch = "RoR2/Base/Shaders/Water_switch.shader"; public static string WaterDepthFadeswitch = "RoR2/Base/Shaders/WaterDepthFade_switch.shader"; public static string WavyClothswitch = "RoR2/Base/Shaders/WavyCloth_switch.shader"; public static string CameraDepthFadeswitch = "RoR2/Base/Shaders/CameraDepthFade_switch.shader"; public static string CloudIntersectionRemapswitch = "RoR2/Base/Shaders/CloudIntersectionRemap_switch.shader"; public static string CloudIntersectionRemapTwoSidesswitch = "RoR2/Base/Shaders/CloudIntersectionRemap_TwoSides_switch.shader"; public static string CloudRemapswitch = "RoR2/Base/Shaders/CloudRemap_switch.shader"; public static string Distortionswitch = "RoR2/Base/Shaders/Distortion_switch.shader"; public static string OpaqueCloudRemapSpecularswitch = "RoR2/Base/Shaders/OpaqueCloudRemap_Specular_switch.shader"; public static string OpaqueCloudRemapswitch = "RoR2/Base/Shaders/OpaqueCloudRemap_switch.shader"; public static string ParticleSimpleAdditiveswitch = "RoR2/Base/Shaders/ParticleSimpleAdditive_switch.shader"; public static string ParticleSimpleAlphaswitch = "RoR2/Base/Shaders/ParticleSimpleAlpha_switch.shader"; public static string DamageIndicator = "RoR2/Base/Shaders/DamageIndicator.shader"; public static string HGOutlineHighlight = "RoR2/Base/Shaders/HGOutlineHighlight.shader"; public static string HGScopeShader = "RoR2/Base/Shaders/HGScopeShader.shader"; public static string HGSobelBuffer = "RoR2/Base/Shaders/HGSobelBuffer.shader"; public static string HGVisionLimit = "RoR2/Base/Shaders/HGVisionLimit.shader"; public static string SpeedTreeBillboard = "RoR2/Base/Shaders/SpeedTreeBillboard.shader"; public static string SpeedTreeCustom = "RoR2/Base/Shaders/SpeedTreeCustom.shader"; public static string TreeSoftOcclusionBark = "RoR2/Base/Shaders/TreeSoftOcclusionBark.shader"; public static string TreeSoftOcclusionLeaves = "RoR2/Base/Shaders/TreeSoftOcclusionLeaves.shader"; public static string HealthBar = "RoR2/Base/Shaders/HealthBar.shader"; public static string HGUIAnimateAlpha = "RoR2/Base/Shaders/HGUIAnimateAlpha.shader"; public static string HGUIBarRemap = "RoR2/Base/Shaders/HGUIBarRemap.shader"; public static string HGUIBlur = "RoR2/Base/Shaders/HGUIBlur.shader"; public static string HGUICustomBlend = "RoR2/Base/Shaders/HGUICustomBlend.shader"; public static string HGUIIgnoreZ = "RoR2/Base/Shaders/HGUIIgnoreZ.shader"; public static string HGUIOverbrighten = "RoR2/Base/Shaders/HGUIOverbrighten.shader"; public static string CloudRemapSimplified = "RoR2/DLC3/CloudRemapSimplified.shader"; public static string OpaqueTextureScrolling = "RoR2/DLC3/OpaqueTextureScrolling.shader"; public static string TransparentTextureScrolling = "RoR2/DLC3/TransparentTextureScrolling.shader"; public static string StandardSimpleUnlitCullswitch = "RoR2/DLC3/computationalexchange/StandardSimple_Unlit_Cull_switch.shader"; } public static class GameObjectFactoryType { public static string GameObjectFactory = "RoR2/Base/Core/GameObjectFactory.asset"; } public static class GlobalEventMethodLibraryType { public static string GlobalEventMethodLibrary = "RoR2/Base/Core/GlobalEventMethodLibrary.asset"; } public static class UserProfileRedirectData { public static string UserProfileRedirects = "RoR2/Base/Core/UserProfileRedirects.asset"; } public static class EliteDef { public static string edFire = "RoR2/Base/EliteFire/edFire.asset"; public static string edFireHonor = "RoR2/Base/EliteFire/edFireHonor.asset"; public static string edHaunted = "RoR2/Base/EliteHaunted/edHaunted.asset"; public static string edIce = "RoR2/Base/EliteIce/edIce.asset"; public static string edIceHonor = "RoR2/Base/EliteIce/edIceHonor.asset"; public static string edLightning = "RoR2/Base/EliteLightning/edLightning.asset"; public static string edLightningHonor = "RoR2/Base/EliteLightning/edLightningHonor.asset"; public static string edLunar = "RoR2/Base/EliteLunar/edLunar.asset"; public static string edPoison = "RoR2/Base/ElitePoison/edPoison.asset"; public static string edEarth = "RoR2/DLC1/EliteEarth/edEarth.asset"; public static string edEarthHonor = "RoR2/DLC1/EliteEarth/edEarthHonor.asset"; public static string edSecretSpeed = "RoR2/DLC1/edSecretSpeed.asset"; public static string edVoid = "RoR2/DLC1/EliteVoid/edVoid.asset"; public static string edAurelionite = "RoR2/DLC2/Elites/EliteAurelionite/edAurelionite.asset"; public static string edAurelioniteHonor = "RoR2/DLC2/Elites/EliteAurelionite/edAurelioniteHonor.asset"; public static string edBead = "RoR2/DLC2/Elites/EliteBead/edBead.asset"; public static string edCollective = "RoR2/DLC3/Collective/edCollective.asset"; public static string edCollectiveWeak = "RoR2/DLC3/Collective/edCollectiveWeak.asset"; public static string edEcho = "RoR2/InDev/edEcho.asset"; public static string edGold = "RoR2/Junk/EliteGold/edGold.asset"; } public static class EquipmentDef { public static string EliteFireEquipment = "RoR2/Base/EliteFire/EliteFireEquipment.asset"; public static string EliteHauntedEquipment = "RoR2/Base/EliteHaunted/EliteHauntedEquipment.asset"; public static string EliteIceEquipment = "RoR2/Base/EliteIce/EliteIceEquipment.asset"; public static string EliteLightningEquipment = "RoR2/Base/EliteLightning/EliteLightningEquipment.asset"; public static string EliteLunarEquipment = "RoR2/Base/EliteLunar/EliteLunarEquipment.asset"; public static string ElitePoisonEquipment = "RoR2/Base/ElitePoison/ElitePoisonEquipment.asset"; public static string BFG = "RoR2/Base/BFG/BFG.asset"; public static string Blackhole = "RoR2/Base/Blackhole/Blackhole.asset"; public static string BurnNearby = "RoR2/Base/BurnNearby/BurnNearby.asset"; public static string Cleanse = "RoR2/Base/Cleanse/Cleanse.asset"; public static string CommandMissile = "RoR2/Base/CommandMissile/CommandMissile.asset"; public static string CrippleWard = "RoR2/Base/CrippleWard/CrippleWard.asset"; public static string CritOnUse = "RoR2/Base/CritOnUse/CritOnUse.asset"; public static string DeathProjectile = "RoR2/Base/DeathProjectile/DeathProjectile.asset"; public static string DroneBackup = "RoR2/Base/DroneBackup/DroneBackup.asset"; public static string FireBallDash = "RoR2/Base/FireBallDash/FireBallDash.asset"; public static string Fruit = "RoR2/Base/Fruit/Fruit.asset"; public static string GainArmor = "RoR2/Base/GainArmor/GainArmor.asset"; public static string Gateway = "RoR2/Base/Gateway/Gateway.asset"; public static string GoldGat = "RoR2/Base/GoldGat/GoldGat.asset"; public static string Jetpack = "RoR2/Base/Jetpack/Jetpack.asset"; public static string LifestealOnHit = "RoR2/Base/LifestealOnHit/LifestealOnHit.asset"; public static string Lightning = "RoR2/Base/Lightning/Lightning.asset"; public static string LunarPotion = "RoR2/Base/LunarPotion/LunarPotion.asset"; public static string Meteor = "RoR2/Base/Meteor/Meteor.asset"; public static string PassiveHealing = "RoR2/Base/PassiveHealing/PassiveHealing.asset"; public static string QuestVolatileBattery = "RoR2/Base/QuestVolatileBattery/QuestVolatileBattery.asset"; public static string Recycle = "RoR2/Base/Recycle/Recycle.asset"; public static string Scanner = "RoR2/Base/Scanner/Scanner.asset"; public static string TeamWarCry = "RoR2/Base/TeamWarCry/TeamWarCry.asset"; public static string Tonic = "RoR2/Base/Tonic/Tonic.asset"; public static string EliteEarthEquipment = "RoR2/DLC1/EliteEarth/EliteEarthEquipment.asset"; public static string EliteSecretSpeedEquipment = "RoR2/DLC1/EliteSecretSpeedEquipment.asset"; public static string EliteVoidEquipment = "RoR2/DLC1/EliteVoid/EliteVoidEquipment.asset"; public static string BossHunter = "RoR2/DLC1/BossHunter/BossHunter.asset"; public static string BossHunterConsumed = "RoR2/DLC1/BossHunter/BossHunterConsumed.asset"; public static string GummyClone = "RoR2/DLC1/GummyClone/GummyClone.asset"; public static string IrradiatingLaser = "RoR2/DLC1/IrradiatingLaser/IrradiatingLaser.asset"; public static string LunarPortalOnUse = "RoR2/DLC1/LunarPortalOnUse/LunarPortalOnUse.asset"; public static string Molotov = "RoR2/DLC1/Molotov/Molotov.asset"; public static string MultiShopCard = "RoR2/DLC1/MultiShopCard/MultiShopCard.asset"; public static string OrbOnUse = "RoR2/DLC1/OrbOnUse/OrbOnUse.asset"; public static string VendingMachine = "RoR2/DLC1/VendingMachine/VendingMachine.asset"; public static string EliteAurelioniteEquipment = "RoR2/DLC2/Elites/EliteAurelionite/EliteAurelioniteEquipment.asset"; public static string EliteBeadEquipment = "RoR2/DLC2/Elites/EliteBead/EliteBeadEquipment.asset"; public static string HealAndRevive = "RoR2/DLC2/HealAndRevive/HealAndRevive.asset"; public static string HealAndReviveConsumed = "RoR2/DLC2/HealAndRevive/HealAndReviveConsumed.asset"; public static string EliteCollectiveEquipment = "RoR2/DLC3/Collective/EliteCollectiveEquipment.asset"; public static string DroneShockDamage = "RoR2/DLC3/DroneShockDamage/DroneShockDamage.asset"; public static string GroundEnemies = "RoR2/DLC3/GroundEnemies/GroundEnemies.asset"; public static string Parry = "RoR2/DLC3/Parry/Parry.asset"; public static string EliteEchoEquipment = "RoR2/InDev/EliteEchoEquipment.asset"; public static string EliteGoldEquipment = "RoR2/Junk/EliteGold/EliteGoldEquipment.asset"; public static string EliteYellowEquipment = "RoR2/Junk/EliteYellow/EliteYellowEquipment.asset"; public static string Enigma24 = "RoR2/Junk/Enigma/Enigma.asset"; public static string GhostGun = "RoR2/Junk/GhostGun/GhostGun.asset"; public static string OrbitalLaser = "RoR2/Junk/OrbitalLaser/OrbitalLaser.asset"; public static string SoulCorruptor = "RoR2/Junk/SoulCorruptor/SoulCorruptor.asset"; public static string SoulJar = "RoR2/Junk/SoulJar/SoulJar.asset"; public static string Saw = "RoR2/Base/Saw/Saw.asset"; } public static class GameEndingDef { public static string EscapeSequenceFailed = "RoR2/Base/ClassicRun/EscapeSequenceFailed.asset"; public static string LimboEnding = "RoR2/Base/ClassicRun/LimboEnding.asset"; public static string MainEnding = "RoR2/Base/ClassicRun/MainEnding.asset"; public static string ObliterationEnding = "RoR2/Base/ClassicRun/ObliterationEnding.asset"; public static string StandardLoss = "RoR2/Base/ClassicRun/StandardLoss.asset"; public static string PrismaticTrialEnding = "RoR2/Base/WeeklyRun/PrismaticTrialEnding.asset"; public static string VoidEnding = "RoR2/DLC1/GameModes/VoidEnding.asset"; public static string RebirthEndingDef = "RoR2/DLC2/ClassicRun/Endings/RebirthEndingDef.asset"; public static string DecompileEnding = "RoR2/DLC3/ClassicRun/Endings/DecompileEnding.asset"; } public static class BodySpawnCard { public static string bscTimeCrystal = "RoR2/Base/WeeklyRun/bscTimeCrystal.asset"; } public static class TimelineAsset { public static string TeleporterTutorial = "RoR2/Base/Teleporters/TeleporterTutorial.playable"; public static string IntroCamTimeline = "RoR2/Base/artifactworld/IntroCamTimeline.playable"; public static string FadeTimeline = "RoR2/Base/intro/FadeTimeline.playable"; public static string IntroCutsceneControllerTimeline = "RoR2/Base/intro/IntroCutsceneControllerTimeline.playable"; public static string SceneAdvanceManagerTimeline = "RoR2/Base/intro/SceneAdvanceManagerTimeline.playable"; public static string BrotherBossIntroTimeline = "RoR2/Base/moon/BrotherBossIntroTimeline.playable"; public static string OutroCutsceneControllerTimeline = "RoR2/Base/outro/OutroCutsceneControllerTimeline.playable"; public static string OutroCutsceneControllerTimeline2 = "RoR2/Base/outro/OutroCutsceneControllerTimeline2.playable"; public static string SpashScreenCanvasTimeline = "RoR2/Base/splash/SpashScreenCanvasTimeline.playable"; public static string SplashScreenControllerTimeline = "RoR2/Base/splash/SplashScreenControllerTimeline.playable"; public static string tlButtonFade = "RoR2/Base/UI/tlButtonFade.playable"; public static string VoidRaidCrabIntroTimeiline = "RoR2/DLC1/VoidRaidCrab/VoidRaidCrabIntroTimeiline.playable"; public static string PromoRailGunnerTimeline = "RoR2/DLC1/PromoRailGunnerTimeline.playable"; public static string PromoVoidSurvivorDirector = "RoR2/DLC1/PromoVoidSurvivorDirector.playable"; public static string VoidOutroCutsceneControllerTimeline = "RoR2/DLC1/voidoutro/VoidOutroCutsceneControllerTimeline.playable"; public static string IntroCamTimeline16 = "RoR2/DLC2/artifactworld03/IntroCamTimeline.playable"; public static string DrifterCapturedTimeline = "RoR2/DLC3/Drifter/DrifterCapturedTimeline.playable"; public static string TimelineJailerDroneWalls = "RoR2/DLC3/Drones/TimelineJailerDroneWalls.playable"; public static string TimelineSASpawnIn = "RoR2/DLC3/SolusAmalgamator/Timeline_SA_SpawnIn.playable"; public static string SWDissolveTimeline = "RoR2/DLC3/SolusWing/SW_DissolveTimeline.playable"; public static string SWHalosDissolveTimeline = "RoR2/DLC3/SolusWing/SW_HalosDissolveTimeline.playable"; public static string TimelineWorkerUnitSpawnIn = "RoR2/DLC3/WorkerUnit/Timeline_WorkerUnit_SpawnIn.playable"; public static string SolusHeartIntro = "RoR2/DLC3/solusweb/SolusHeartIntro.playable"; public static string SolusWebJuice = "RoR2/DLC3/solusweb/SolusWebJuice.playable"; public static string SolusWingBossIntroTimeline = "RoR2/DLC3/solutionalhaunt/SolusWingBossIntroTimeline.playable"; public static string SolusWing2Intro1 = "RoR2/DLC3/solutionalhaunt/SolusWing2Intro 1.playable"; public static string SolusWing2Intro = "RoR2/DLC3/solutionalhaunt/SolusWing2Intro.playable"; } public static class ItemDef { public static string AdaptiveArmor = "RoR2/Base/AdaptiveArmor/AdaptiveArmor.asset"; public static string AlienHead = "RoR2/Base/AlienHead/AlienHead.asset"; public static string ArmorPlate = "RoR2/Base/ArmorPlate/ArmorPlate.asset"; public static string ArmorReductionOnHit = "RoR2/Base/ArmorReductionOnHit/ArmorReductionOnHit.asset"; public static string ArtifactKey = "RoR2/Base/ArtifactKey/ArtifactKey.asset"; public static string AttackSpeedOnCrit = "RoR2/Base/AttackSpeedOnCrit/AttackSpeedOnCrit.asset"; public static string AutoCastEquipment = "RoR2/Base/AutoCastEquipment/AutoCastEquipment.asset"; public static string Bandolier = "RoR2/Base/Bandolier/Bandolier.asset"; public static string BarrierOnKill = "RoR2/Base/BarrierOnKill/BarrierOnKill.asset"; public static string BarrierOnOverHeal = "RoR2/Base/BarrierOnOverHeal/BarrierOnOverHeal.asset"; public static string Bear = "RoR2/Base/Bear/Bear.asset"; public static string BeetleGland = "RoR2/Base/BeetleGland/BeetleGland.asset"; public static string Behemoth = "RoR2/Base/Behemoth/Behemoth.asset"; public static string BleedOnHit = "RoR2/Base/BleedOnHit/BleedOnHit.asset"; public static string BleedOnHitAndExplode = "RoR2/Base/BleedOnHitAndExplode/BleedOnHitAndExplode.asset"; public static string BonusGoldPackOnKill = "RoR2/Base/BonusGoldPackOnKill/BonusGoldPackOnKill.asset"; public static string BoostAttackSpeed = "RoR2/Base/BoostAttackSpeed/BoostAttackSpeed.asset"; public static string BoostDamage = "RoR2/Base/BoostDamage/BoostDamage.asset"; public static string BoostEquipmentRecharge = "RoR2/Base/BoostEquipmentRecharge/BoostEquipmentRecharge.asset"; public static string BoostHp = "RoR2/Base/BoostHp/BoostHp.asset"; public static string BossDamageBonus = "RoR2/Base/BossDamageBonus/BossDamageBonus.asset"; public static string BounceNearby = "RoR2/Base/BounceNearby/BounceNearby.asset"; public static string CaptainDefenseMatrix = "RoR2/Base/CaptainDefenseMatrix/CaptainDefenseMatrix.asset"; public static string ChainLightning = "RoR2/Base/ChainLightning/ChainLightning.asset"; public static string Clover = "RoR2/Base/Clover/Clover.asset"; public static string CrippleWardOnLevel = "RoR2/Base/CrippleWardOnLevel/CrippleWardOnLevel.asset"; public static string CritGlasses = "RoR2/Base/CritGlasses/CritGlasses.asset"; public static string Crowbar = "RoR2/Base/Crowbar/Crowbar.asset"; public static string CutHp = "RoR2/Base/CutHp/CutHp.asset"; public static string Dagger = "RoR2/Base/Dagger/Dagger.asset"; public static string DeathMark = "RoR2/Base/DeathMark/DeathMark.asset"; public static string DrizzlePlayerHelper = "RoR2/Base/DrizzlePlayerHelper/DrizzlePlayerHelper.asset"; public static string FireRing = "RoR2/Base/ElementalRings/FireRing.asset"; public static string IceRing = "RoR2/Base/ElementalRings/IceRing.asset"; public static string EnergizedOnEquipmentUse = "RoR2/Base/EnergizedOnEquipmentUse/EnergizedOnEquipmentUse.asset"; public static string EquipmentMagazine = "RoR2/Base/EquipmentMagazine/EquipmentMagazine.asset"; public static string ExecuteLowHealthElite = "RoR2/Base/ExecuteLowHealthElite/ExecuteLowHealthElite.asset"; public static string ExplodeOnDeath = "RoR2/Base/ExplodeOnDeath/ExplodeOnDeath.asset"; public static string ExtraLife = "RoR2/Base/ExtraLife/ExtraLife.asset"; public static string ExtraLifeConsumed = "RoR2/Base/ExtraLife/ExtraLifeConsumed.asset"; public static string FallBoots = "RoR2/Base/FallBoots/FallBoots.asset"; public static string Feather = "RoR2/Base/Feather/Feather.asset"; public static string FireballsOnHit = "RoR2/Base/FireballsOnHit/FireballsOnHit.asset"; public static string Firework = "RoR2/Base/Firework/Firework.asset"; public static string FlatHealth = "RoR2/Base/FlatHealth/FlatHealth.asset"; public static string FocusConvergence = "RoR2/Base/FocusConvergence/FocusConvergence.asset"; public static string Ghost = "RoR2/Base/Ghost/Ghost.asset"; public static string GhostOnKill = "RoR2/Base/GhostOnKill/GhostOnKill.asset"; public static string GoldOnHit = "RoR2/Base/GoldOnHit/GoldOnHit.asset"; public static string HeadHunter = "RoR2/Base/HeadHunter/HeadHunter.asset"; public static string HealOnCrit = "RoR2/Base/HealOnCrit/HealOnCrit.asset"; public static string HealthDecay = "RoR2/Base/HealthDecay/HealthDecay.asset"; public static string HealWhileSafe = "RoR2/Base/HealWhileSafe/HealWhileSafe.asset"; public static string Hoof = "RoR2/Base/Hoof/Hoof.asset"; public static string Icicle = "RoR2/Base/Icicle/Icicle.asset"; public static string IgniteOnKill = "RoR2/Base/IgniteOnKill/IgniteOnKill.asset"; public static string IncreaseHealing = "RoR2/Base/IncreaseHealing/IncreaseHealing.asset"; public static string Infusion = "RoR2/Base/Infusion/Infusion.asset"; public static string InvadingDoppelganger = "RoR2/Base/InvadingDoppelganger/InvadingDoppelganger.asset"; public static string JumpBoost = "RoR2/Base/JumpBoost/JumpBoost.asset"; public static string KillEliteFrenzy = "RoR2/Base/KillEliteFrenzy/KillEliteFrenzy.asset"; public static string Knurl = "RoR2/Base/Knurl/Knurl.asset"; public static string LaserTurbine = "RoR2/Base/LaserTurbine/LaserTurbine.asset"; public static string LevelBonus = "RoR2/Base/LevelBonus/LevelBonus.asset"; public static string LightningStrikeOnHit = "RoR2/Base/LightningStrikeOnHit/LightningStrikeOnHit.asset"; public static string LunarBadLuck = "RoR2/Base/LunarBadLuck/LunarBadLuck.asset"; public static string LunarDagger = "RoR2/Base/LunarDagger/LunarDagger.asset"; public static string LunarPrimaryReplacement = "RoR2/Base/LunarSkillReplacements/LunarPrimaryReplacement.asset"; public static string LunarSecondaryReplacement = "RoR2/Base/LunarSkillReplacements/LunarSecondaryReplacement.asset"; public static string LunarSpecialReplacement = "RoR2/Base/LunarSkillReplacements/LunarSpecialReplacement.asset"; public static string LunarUtilityReplacement = "RoR2/Base/LunarSkillReplacements/LunarUtilityReplacement.asset"; public static string LunarTrinket = "RoR2/Base/LunarTrinket/LunarTrinket.asset"; public static string Medkit = "RoR2/Base/Medkit/Medkit.asset"; public static string MinHealthPercentage = "RoR2/Base/MinHealthPercentage/MinHealthPercentage.asset"; public static string MinionLeash = "RoR2/Base/MinionLeash/MinionLeash.asset"; public static string Missile = "RoR2/Base/Missile/Missile.asset"; public static string MonsoonPlayerHelper = "RoR2/Base/MonsoonPlayerHelper/MonsoonPlayerHelper.asset"; public static string MonstersOnShrineUse = "RoR2/Base/MonstersOnShrineUse/MonstersOnShrineUse.asset"; public static string Mushroom = "RoR2/Base/Mushroom/Mushroom.asset"; public static string NearbyDamageBonus = "RoR2/Base/NearbyDamageBonus/NearbyDamageBonus.asset"; public static string NovaOnHeal = "RoR2/Base/NovaOnHeal/NovaOnHeal.asset"; public static string NovaOnLowHealth = "RoR2/Base/NovaOnLowHealth/NovaOnLowHealth.asset"; public static string ParentEgg = "RoR2/Base/ParentEgg/ParentEgg.asset"; public static string Pearl = "RoR2/Base/Pearl/Pearl.asset"; public static string PersonalShield = "RoR2/Base/PersonalShield/PersonalShield.asset"; public static string Phasing = "RoR2/Base/Phasing/Phasing.asset"; public static string Plant = "RoR2/Base/Plant/Plant.asset"; public static string RandomDamageZone = "RoR2/Base/RandomDamageZone/RandomDamageZone.asset"; public static string RepeatHeal = "RoR2/Base/RepeatHeal/RepeatHeal.asset"; public static string RoboBallBuddy = "RoR2/Base/RoboBallBuddy/RoboBallBuddy.asset"; public static string ScrapGreen = "RoR2/Base/Scrap/ScrapGreen.asset"; public static string ScrapRed = "RoR2/Base/Scrap/ScrapRed.asset"; public static string ScrapWhite = "RoR2/Base/Scrap/ScrapWhite.asset"; public static string ScrapYellow = "RoR2/Base/Scrap/ScrapYellow.asset"; public static string SecondarySkillMagazine = "RoR2/Base/SecondarySkillMagazine/SecondarySkillMagazine.asset"; public static string Seed = "RoR2/Base/Seed/Seed.asset"; public static string ShieldOnly = "RoR2/Base/ShieldOnly/ShieldOnly.asset"; public static string ShinyPearl = "RoR2/Base/ShinyPearl/ShinyPearl.asset"; public static string ShockNearby = "RoR2/Base/ShockNearby/ShockNearby.asset"; public static string SiphonOnLowHealth = "RoR2/Base/SiphonOnLowHealth/SiphonOnLowHealth.asset"; public static string SlowOnHit = "RoR2/Base/SlowOnHit/SlowOnHit.asset"; public static string SprintArmor = "RoR2/Base/SprintArmor/SprintArmor.asset"; public static string SprintBonus = "RoR2/Base/SprintBonus/SprintBonus.asset"; public static string SprintOutOfCombat = "RoR2/Base/SprintOutOfCombat/SprintOutOfCombat.asset"; public static string SprintWisp = "RoR2/Base/SprintWisp/SprintWisp.asset"; public static string Squid = "RoR2/Base/Squid/Squid.asset"; public static string StickyBomb = "RoR2/Base/StickyBomb/StickyBomb.asset"; public static string StunChanceOnHit = "RoR2/Base/StunChanceOnHit/StunChanceOnHit.asset"; public static string Syringe = "RoR2/Base/Syringe/Syringe.asset"; public static string Talisman = "RoR2/Base/Talisman/Talisman.asset"; public static string TeamSizeDamageBonus = "RoR2/Base/TeamSizeDamageBonus/TeamSizeDamageBonus.asset"; public static string TeleportWhenOob = "RoR2/Base/TeleportWhenOob/TeleportWhenOob.asset"; public static string Thorns = "RoR2/Base/Thorns/Thorns.asset"; public static string TitanGoldDuringTP = "RoR2/Base/TitanGoldDuringTP/TitanGoldDuringTP.asset"; public static string TonicAffliction = "RoR2/Base/TonicAffliction/TonicAffliction.asset"; public static string Tooth = "RoR2/Base/Tooth/Tooth.asset"; public static string TPHealingNova = "RoR2/Base/TPHealingNova/TPHealingNova.asset"; public static string TreasureCache = "RoR2/Base/TreasureCache/TreasureCache.asset"; public static string UseAmbientLevel = "RoR2/Base/UseAmbientLevel/UseAmbientLevel.asset"; public static string UtilitySkillMagazine = "RoR2/Base/UtilitySkillMagazine/UtilitySkillMagazine.asset"; public static string WarCryOnMultiKill = "RoR2/Base/WarCryOnMultiKill/WarCryOnMultiKill.asset"; public static string WardOnLevel = "RoR2/Base/WardOnLevel/WardOnLevel.asset"; public static string LemurianHarness = "RoR2/CU8/Harness/LemurianHarness.asset"; public static string VoidmanPassiveItem = "RoR2/DLC1/VoidSurvivor/VoidmanPassiveItem.asset"; public static string GummyCloneIdentifier = "RoR2/DLC1/GummyClone/GummyCloneIdentifier.asset"; public static string AttackSpeedAndMoveSpeed = "RoR2/DLC1/AttackSpeedAndMoveSpeed/AttackSpeedAndMoveSpeed.asset"; public static string BearVoid = "RoR2/DLC1/BearVoid/BearVoid.asset"; public static string BleedOnHitVoid = "RoR2/DLC1/BleedOnHitVoid/BleedOnHitVoid.asset"; public static string ChainLightningVoid = "RoR2/DLC1/ChainLightningVoid/ChainLightningVoid.asset"; public static string CloverVoid = "RoR2/DLC1/CloverVoid/CloverVoid.asset"; public static string ConvertCritChanceToCritDamage = "RoR2/DLC1/ConvertCritChanceToCritDamage/ConvertCritChanceToCritDamage.asset"; public static string CritDamage = "RoR2/DLC1/CritDamage/CritDamage.asset"; public static string CritGlassesVoid = "RoR2/DLC1/CritGlassesVoid/CritGlassesVoid.asset"; public static string DroneWeapons = "RoR2/DLC1/DroneWeapons/DroneWeapons.asset"; public static string DroneWeaponsBoost = "RoR2/DLC1/DroneWeapons/DroneWeaponsBoost.asset"; public static string DroneWeaponsDisplay1 = "RoR2/DLC1/DroneWeapons/DroneWeaponsDisplay1.asset"; public static string DroneWeaponsDisplay2 = "RoR2/DLC1/DroneWeapons/DroneWeaponsDisplay2.asset"; public static string ElementalRingVoid = "RoR2/DLC1/ElementalRingVoid/ElementalRingVoid.asset"; public static string EmpowerAlways = "RoR2/DLC1/EmpowerAlways/EmpowerAlways.asset"; public static string EquipmentMagazineVoid = "RoR2/DLC1/EquipmentMagazineVoid/EquipmentMagazineVoid.asset"; public static string ExplodeOnDeathVoid = "RoR2/DLC1/ExplodeOnDeathVoid/ExplodeOnDeathVoid.asset"; public static string ExtraLifeVoid = "RoR2/DLC1/ExtraLifeVoid/ExtraLifeVoid.asset"; public static string ExtraLifeVoidConsumed = "RoR2/DLC1/ExtraLifeVoid/ExtraLifeVoidConsumed.asset"; public static string FragileDamageBonus = "RoR2/DLC1/FragileDamageBonus/FragileDamageBonus.asset"; public static string FragileDamageBonusConsumed = "RoR2/DLC1/FragileDamageBonus/FragileDamageBonusConsumed.asset"; public static string FreeChest = "RoR2/DLC1/FreeChest/FreeChest.asset"; public static string GoldOnHurt = "RoR2/DLC1/GoldOnHurt/GoldOnHurt.asset"; public static string HalfAttackSpeedHalfCooldowns = "RoR2/DLC1/HalfAttackSpeedHalfCooldowns/HalfAttackSpeedHalfCooldowns.asset"; public static string HalfSpeedDoubleHealth = "RoR2/DLC1/HalfSpeedDoubleHealth/HalfSpeedDoubleHealth.asset"; public static string HealingPotion = "RoR2/DLC1/HealingPotion/HealingPotion.asset"; public static string HealingPotionConsumed = "RoR2/DLC1/HealingPotion/HealingPotionConsumed.asset"; public static string ImmuneToDebuff = "RoR2/DLC1/ImmuneToDebuff/ImmuneToDebuff.asset"; public static string LunarSun = "RoR2/DLC1/LunarSun/LunarSun.asset"; public static string LunarWings = "RoR2/DLC1/LunarWings/LunarWings.asset"; public static string MinorConstructOnKill = "RoR2/DLC1/MinorConstructOnKill/MinorConstructOnKill.asset"; public static string MissileVoid = "RoR2/DLC1/MissileVoid/MissileVoid.asset"; public static string MoreMissile = "RoR2/DLC1/MoreMissile/MoreMissile.asset"; public static string MoveSpeedOnKill = "RoR2/DLC1/MoveSpeedOnKill/MoveSpeedOnKill.asset"; public static string MushroomVoid = "RoR2/DLC1/MushroomVoid/MushroomVoid.asset"; public static string OutOfCombatArmor = "RoR2/DLC1/OutOfCombatArmor/OutOfCombatArmor.asset"; public static string PermanentDebuffOnHit = "RoR2/DLC1/PermanentDebuffOnHit/PermanentDebuffOnHit.asset"; public static string PrimarySkillShuriken = "RoR2/DLC1/PrimarySkillShuriken/PrimarySkillShuriken.asset"; public static string RandomEquipmentTrigger = "RoR2/DLC1/RandomEquipmentTrigger/RandomEquipmentTrigger.asset"; public static string RandomlyLunar = "RoR2/DLC1/RandomlyLunar/RandomlyLunar.asset"; public static string RegeneratingScrap = "RoR2/DLC1/RegeneratingScrap/RegeneratingScrap.asset"; public static string RegeneratingScrapConsumed = "RoR2/DLC1/RegeneratingScrap/RegeneratingScrapConsumed.asset"; public static string ScrapGreenSuppressed = "RoR2/DLC1/ScrapVoid/ScrapGreenSuppressed.asset"; public static string ScrapRedSuppressed = "RoR2/DLC1/ScrapVoid/ScrapRedSuppressed.asset"; public static string ScrapWhiteSuppressed = "RoR2/DLC1/ScrapVoid/ScrapWhiteSuppressed.asset"; public static string SlowOnHitVoid = "RoR2/DLC1/SlowOnHitVoid/SlowOnHitVoid.asset"; public static string StrengthenBurn = "RoR2/DLC1/StrengthenBurn/StrengthenBurn.asset"; public static string TreasureCacheVoid = "RoR2/DLC1/TreasureCacheVoid/TreasureCacheVoid.asset"; public static string VoidMegaCrabItem = "RoR2/DLC1/VoidMegaCrabItem.asset"; public static string AttackSpeedPerNearbyAllyOrEnemy = "RoR2/DLC2/Items/AttackSpeedPerNearbyAllyOrEnemy/AttackSpeedPerNearbyAllyOrEnemy.asset"; public static string BarrageOnBoss = "RoR2/DLC2/Items/BarrageOnBoss/BarrageOnBoss.asset"; public static string BoostAllStats = "RoR2/DLC2/Items/BoostAllStats/BoostAllStats.asset"; public static string DelayedDamage = "RoR2/DLC2/Items/DelayedDamage/DelayedDamage.asset"; public static string ExtraShrineItem = "RoR2/DLC2/Items/ExtraShrineItem/ExtraShrineItem.asset"; public static string ExtraStatsOnLevelUp = "RoR2/DLC2/Items/ExtraStatsOnLevelUp/ExtraStatsOnLevelUp.asset"; public static string IncreaseDamageOnMultiKill = "RoR2/DLC2/Items/IncreaseDamageOnMultiKill/IncreaseDamageOnMultiKill.asset"; public static string IncreasePrimaryDamage = "RoR2/DLC2/Items/IncreasePrimaryDamage/IncreasePrimaryDamage.asset"; public static string ItemDropChanceOnKill = "RoR2/DLC2/Items/ItemDropChanceOnKill/ItemDropChanceOnKill.asset"; public static string KnockBackHitEnemies = "RoR2/DLC2/Items/KnockBackHitEnemies/KnockBackHitEnemies.asset"; public static string LowerPricedChests = "RoR2/DLC2/Items/LowerPricedChests/LowerPricedChests.asset"; public static string LowerPricedChestsConsumed = "RoR2/DLC2/Items/LowerPricedChests/LowerPricedChestsConsumed.asset"; public static string MeteorAttackOnHighDamage = "RoR2/DLC2/Items/MeteorAttackOnHighDamage/MeteorAttackOnHighDamage.asset"; public static string OnLevelUpFreeUnlock = "RoR2/DLC2/Items/OnLevelUpFreeUnlock/OnLevelUpFreeUnlock.asset"; public static string SpeedBoostPickup = "RoR2/DLC2/Items/SpeedBoostPickup/SpeedBoostPickup.asset"; public static string StunAndPierce = "RoR2/DLC2/Items/StunAndPierce/StunAndPierce.asset"; public static string TeleportOnLowHealth = "RoR2/DLC2/Items/TeleportOnLowHealth/TeleportOnLowHealth.asset"; public static string TeleportOnLowHealthConsumed = "RoR2/DLC2/Items/TeleportOnLowHealth/TeleportOnLowHealthConsumed.asset"; public static string TriggerEnemyDebuffs = "RoR2/DLC2/Items/TriggerEnemyDebuffs/TriggerEnemyDebuffs.asset"; public static string BarrierOnCooldown = "RoR2/DLC3/Items/BarrierOnCooldown/BarrierOnCooldown.asset"; public static string BonusHealthBoost = "RoR2/DLC3/Items/BonusHealthBoost/BonusHealthBoost.asset"; public static string CookedSteak = "RoR2/DLC3/Items/CookedSteak/CookedSteak.asset"; public static string CritAtLowerElevation = "RoR2/DLC3/Items/CritAtLowerElevation/CritAtLowerElevation.asset"; public static string DestructibleSpawner = "RoR2/DLC3/Items/DestructibleSpawnerItem/DestructibleSpawner.asset"; public static string DroneDynamiteDisplay = "RoR2/DLC3/Items/DronesDropDynamite/DroneDynamiteDisplay.asset"; public static string DronesDropDynamite = "RoR2/DLC3/Items/DronesDropDynamite/DronesDropDynamite.asset"; public static string DroneUpgradeHidden = "RoR2/DLC3/Items/DroneUpgradeHidden/DroneUpgradeHidden.asset"; public static string Duplicator0 = "RoR2/DLC3/Items/Duplicator/Duplicator.asset"; public static string ExtraEquipment = "RoR2/DLC3/Items/ExtraEquipment/ExtraEquipment.asset"; public static string JumpDamageStrike = "RoR2/DLC3/Items/JumpDamageStrike/JumpDamageStrike.asset"; public static string Junk = "RoR2/DLC3/Items/Junk.asset"; public static string MasterBattery = "RoR2/DLC3/Items/MasterBattery/MasterBattery.asset"; public static string MasterCore = "RoR2/DLC3/Items/MasterCore/MasterCore.asset"; public static string MoneyLoan = "RoR2/DLC3/Items/MoneyLoan/MoneyLoan.asset"; public static string PhysicsProjectile = "RoR2/DLC3/Items/PhysicsProjectile/PhysicsProjectile.asset"; public static string PowerCube = "RoR2/DLC3/Items/PowerCube/PowerCube.asset"; public static string PowerOrbSphere = "RoR2/DLC3/Items/PowerOrbSphere/PowerOrbSphere.asset"; public static string PowerPyramid = "RoR2/DLC3/Items/PowerPyramid/PowerPyramid.asset"; public static string SharedSuffering = "RoR2/DLC3/Items/SharedSuffering/SharedSuffering.asset"; public static string ShieldBooster = "RoR2/DLC3/Items/ShieldBooster/ShieldBooster.asset"; public static string ShockDamageAura = "RoR2/DLC3/Items/ShockDamageAura/ShockDamageAura.asset"; public static string SpeedOnPickup = "RoR2/DLC3/Items/SpeedOnPickup/SpeedOnPickup.asset"; public static string StatsFromScrap = "RoR2/DLC3/Items/StatsFromScrap/StatsFromScrap.asset"; public static string Stew = "RoR2/DLC3/Items/Stew/Stew.asset"; public static string TransferDebuffOnHit = "RoR2/DLC3/Items/TransferDebuffOnHit/TransferDebuffOnHit.asset"; public static string UltimateMeal = "RoR2/DLC3/Items/UltimateMeal/UltimateMeal.asset"; public static string WyrmOnHit = "RoR2/DLC3/Items/WyrmOnHit/WyrmOnHit.asset"; public static string SummonedEcho = "RoR2/InDev/SummonedEcho.asset"; public static string AACannon = "RoR2/Junk/AACannon/AACannon.asset"; public static string BurnNearby3 = "RoR2/Junk/BurnNearby/BurnNearby.asset"; public static string CooldownOnCrit = "RoR2/Junk/CooldownOnCrit/CooldownOnCrit.asset"; public static string CritHeal = "RoR2/Junk/CritHeal/CritHeal.asset"; public static string Incubator = "RoR2/Junk/Incubator/Incubator.asset"; public static string MageAttunement = "RoR2/Junk/MageAttunement/MageAttunement.asset"; public static string PlantOnHit = "RoR2/Junk/PlantOnHit/PlantOnHit.asset"; public static string PlasmaCore = "RoR2/Junk/PlasmaCore/PlasmaCore.asset"; public static string SkullCounter = "RoR2/Junk/SkullCounter/SkullCounter.asset"; public static string TempestOnKill = "RoR2/Junk/TempestOnKill/TempestOnKill.asset"; public static string WarCryOnCombat = "RoR2/Junk/WarCryOnCombat/WarCryOnCombat.asset"; public static string EmpowerBuff = "RoR2/Junk_DLC1/EmpowerItems/EmpowerBuff/EmpowerBuff.asset"; public static string EmpowerMagazine = "RoR2/Junk_DLC1/EmpowerItems/EmpowerMagazine/EmpowerMagazine.asset"; public static string EmpowerOnKill = "RoR2/Junk_DLC1/EmpowerItems/EmpowerOnKill/EmpowerOnKill.asset"; public static string EmpowerRefresh = "RoR2/Junk_DLC1/EmpowerItems/EmpowerRefresh/EmpowerRefresh.asset"; public static string AchievementRewardTest = "RoR2/AchievementRewardTest/AchievementRewardTest.asset"; } public static class LunarDetonatorSkill { public static string LunarDetonatorSpecialReplacement = "RoR2/Base/LunarSkillReplacements/LunarDetonatorSpecialReplacement.asset"; } public static class LunarCoinDef { public static string LunarCoin = "RoR2/Base/LunarCoin/LunarCoin.asset"; } public static class SceneCollection { public static string loopSgStage1 = "RoR2/Base/SceneGroups/loopSgStage1.asset"; public static string loopSgStage2 = "RoR2/Base/SceneGroups/loopSgStage2.asset"; public static string loopSgStage3 = "RoR2/Base/SceneGroups/loopSgStage3.asset"; public static string loopSgStage4 = "RoR2/Base/SceneGroups/loopSgStage4.asset"; public static string loopSgStage5 = "RoR2/Base/SceneGroups/loopSgStage5.asset"; public static string sgStage1 = "RoR2/Base/SceneGroups/sgStage1.asset"; public static string sgStage2 = "RoR2/Base/SceneGroups/sgStage2.asset"; public static string sgStage3 = "RoR2/Base/SceneGroups/sgStage3.asset"; public static string sgStage4 = "RoR2/Base/SceneGroups/sgStage4.asset"; public static string sgStage5 = "RoR2/Base/SceneGroups/sgStage5.asset"; public static string sgInfiniteTowerStage1 = "RoR2/DLC1/GameModes/InfiniteTowerRun/SceneGroups/sgInfiniteTowerStage1.asset"; public static string sgInfiniteTowerStageX = "RoR2/DLC1/GameModes/InfiniteTowerRun/SceneGroups/sgInfiniteTowerStageX.asset"; public static string sgInfiniteTowerStageXAncientLoft = "RoR2/DLC1/GameModes/InfiniteTowerRun/SceneGroups/sgInfiniteTowerStageXAncientLoft.asset"; public static string sgInfiniteTowerStageXDampCave = "RoR2/DLC1/GameModes/InfiniteTowerRun/SceneGroups/sgInfiniteTowerStageXDampCave.asset"; public static string sgInfiniteTowerStageXFrozenwall = "RoR2/DLC1/GameModes/InfiniteTowerRun/SceneGroups/sgInfiniteTowerStageXFrozenwall.asset"; public static string sgInfiniteTowerStageXGolemPlains = "RoR2/DLC1/GameModes/InfiniteTowerRun/SceneGroups/sgInfiniteTowerStageXGolemPlains.asset"; public static string sgInfiniteTowerStageXGooLake = "RoR2/DLC1/GameModes/InfiniteTowerRun/SceneGroups/sgInfiniteTowerStageXGooLake.asset"; public static string sgInfiniteTowerStageXMoon = "RoR2/DLC1/GameModes/InfiniteTowerRun/SceneGroups/sgInfiniteTowerStageXMoon.asset"; public static string sgInfiniteTowerStageXSkyMeadow = "RoR2/DLC1/GameModes/InfiniteTowerRun/SceneGroups/sgInfiniteTowerStageXSkyMeadow.asset"; public static string loopSgDLC3Stage2 = "RoR2/DLC3/SceneGroups/loopSgDLC3Stage2.asset"; public static string sgDLC3Stage1 = "RoR2/DLC3/SceneGroups/sgDLC3Stage1.asset"; public static string sgDLC3Stage2 = "RoR2/DLC3/SceneGroups/sgDLC3Stage2.asset"; public static string sgDLC3Stage3 = "RoR2/DLC3/SceneGroups/sgDLC3Stage3.asset"; public static string sgDLC3Stage4 = "RoR2/DLC3/SceneGroups/sgDLC3Stage4.asset"; public static string sgDLC3Stage5 = "RoR2/DLC3/SceneGroups/sgDLC3Stage5.asset"; } public static class DccsPool { public static string dpBaseMonsters = "RoR2/Base/_DCCS_Generic/dpBaseMonsters.asset"; public static string dpArenaInteractables = "RoR2/Base/arena/dpArenaInteractables.asset"; public static string dpArenaMonsters = "RoR2/Base/arena/dpArenaMonsters.asset"; public static string dpArtifactWorldInteractables = "RoR2/Base/artifactworld/dpArtifactWorldInteractables.asset"; public static string dpArtifactWorldMonsters = "RoR2/Base/artifactworld/dpArtifactWorldMonsters.asset"; public static string dpBlackBeachInteractables = "RoR2/Base/blackbeach/dpBlackBeachInteractables.asset"; public static string dpBlackBeachMonsters = "RoR2/Base/blackbeach/dpBlackBeachMonsters.asset"; public static string dpDampCaveInteractables = "RoR2/Base/dampcave/dpDampCaveInteractables.asset"; public static string dpDampCaveMonsters = "RoR2/Base/dampcave/dpDampCaveMonsters.asset"; public static string dpFoggySwampInteractables = "RoR2/Base/foggyswamp/dpFoggySwampInteractables.asset"; public static string dpFoggySwampMonsters = "RoR2/Base/foggyswamp/dpFoggySwampMonsters.asset"; public static string dpFrozenWallInteractables = "RoR2/Base/frozenwall/dpFrozenWallInteractables.asset"; public static string dpFrozenWallMonsters = "RoR2/Base/frozenwall/dpFrozenWallMonsters.asset"; public static string dpGoldshoresInteractables = "RoR2/Base/goldshores/dpGoldshoresInteractables.asset"; public static string dpGoldshoresMonsters = "RoR2/Base/goldshores/dpGoldshoresMonsters.asset"; public static string dpGolemplainsInteractables = "RoR2/Base/golemplains/dpGolemplainsInteractables.asset"; public static string dpGolemplainsMonsters = "RoR2/Base/golemplains/dpGolemplainsMonsters.asset"; public static string dpGooLakeInteractables = "RoR2/Base/goolake/dpGooLakeInteractables.asset"; public static string dpGooLakeMonsters = "RoR2/Base/goolake/dpGooLakeMonsters.asset"; public static string dpMoonInteractables = "RoR2/Base/moon/dpMoonInteractables.asset"; public static string dpMoonMonsters = "RoR2/Base/moon/dpMoonMonsters.asset"; public static string dpRootJungleInteractables = "RoR2/Base/rootjungle/dpRootJungleInteractables.asset"; public static string dpRootJungleMonsters = "RoR2/Base/rootjungle/dpRootJungleMonsters.asset"; public static string dpShipgraveyardInteractables = "RoR2/Base/shipgraveyard/dpShipgraveyardInteractables.asset"; public static string dpShipgraveyardMonsters = "RoR2/Base/shipgraveyard/dpShipgraveyardMonsters.asset"; public static string dpSkyMeadowInteractables = "RoR2/Base/skymeadow/dpSkyMeadowInteractables.asset"; public static string dpSkyMeadowMonsters = "RoR2/Base/skymeadow/dpSkyMeadowMonsters.asset"; public static string dpWispGraveyardInteractables = "RoR2/Base/wispgraveyard/dpWispGraveyardInteractables.asset"; public static string dpWispGraveyardMonsters = "RoR2/Base/wispgraveyard/dpWispGraveyardMonsters.asset"; public static string dpInfiniteTowerInteractables = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/dpInfiniteTowerInteractables.asset"; public static string dpAncientLoftInteractables = "RoR2/DLC1/ancientloft/dpAncientLoftInteractables.asset"; public static string dpAncientLoftMonsters = "RoR2/DLC1/ancientloft/dpAncientLoftMonsters.asset"; public static string dpITAncientLoftMonsters = "RoR2/DLC1/itancientloft/dpITAncientLoftMonsters.asset"; public static string dpITDampCaveMonsters = "RoR2/DLC1/itdampcave/dpITDampCaveMonsters.asset"; public static string dpITFrozenWallMonsters = "RoR2/DLC1/itfrozenwall/dpITFrozenWallMonsters.asset"; public static string dpITGolemplainsMonsters = "RoR2/DLC1/itgolemplains/dpITGolemplainsMonsters.asset"; public static string dpITGooLakeMonsters = "RoR2/DLC1/itgoolake/dpITGooLakeMonsters.asset"; public static string dpITMoonMonsters = "RoR2/DLC1/itmoon/dpITMoonMonsters.asset"; public static string dpITSkyMeadowMonsters = "RoR2/DLC1/itskymeadow/dpITSkyMeadowMonsters.asset"; public static string dpSnowyForestInteractables = "RoR2/DLC1/snowyforest/dpSnowyForestInteractables.asset"; public static string dpSnowyForestMonsters = "RoR2/DLC1/snowyforest/dpSnowyForestMonsters.asset"; public static string dpSulfurPoolsInteractables = "RoR2/DLC1/sulfurpools/dpSulfurPoolsInteractables.asset"; public static string dpSulfurPoolsMonsters = "RoR2/DLC1/sulfurpools/dpSulfurPoolsMonsters.asset"; public static string dpVoidStageInteractables = "RoR2/DLC1/voidstage/dpVoidStageInteractables.asset"; public static string dpVoidStageMonsters = "RoR2/DLC1/voidstage/dpVoidStageMonsters.asset"; public static string dpArtifactWorld01Interactables = "RoR2/DLC2/artifactworld01/dpArtifactWorld01Interactables.asset"; public static string dpArtifactWorld01Monsters = "RoR2/DLC2/artifactworld01/dpArtifactWorld01Monsters.asset"; public static string dpArtifactWorld02Monsters = "RoR2/DLC2/artifactworld02/dpArtifactWorld02Monsters.asset"; public static string dpArtifactWorld03Interactables = "RoR2/DLC2/artifactworld03/dpArtifactWorld03Interactables.asset"; public static string dpArtifactWorld03Monsters = "RoR2/DLC2/artifactworld03/dpArtifactWorld03Monsters.asset"; public static string dpHabitatInteractables = "RoR2/DLC2/habitat/dpHabitatInteractables.asset"; public static string dpHabitatMonsters = "RoR2/DLC2/habitat/dpHabitatMonsters.asset"; public static string dpHabitatfallInteractables = "RoR2/DLC2/habitatfall/dpHabitatfallInteractables.asset"; public static string dpHabitatfallMonsters = "RoR2/DLC2/habitatfall/dpHabitatfallMonsters.asset"; public static string dpHelminthRoostInteractables = "RoR2/DLC2/helminthroost/dpHelminthRoostInteractables.asset"; public static string dpHelminthRoostMonsters = "RoR2/DLC2/helminthroost/dpHelminthRoostMonsters.asset"; public static string dpLakesInteractables = "RoR2/DLC2/lakes/dpLakesInteractables.asset"; public static string dpLakesMonsters = "RoR2/DLC2/lakes/dpLakesMonsters.asset"; public static string dpLakesnightInteractables = "RoR2/DLC2/lakesnight/dpLakesnightInteractables.asset"; public static string dpLakesnightMonsters = "RoR2/DLC2/lakesnight/dpLakesnightMonsters.asset"; public static string dpLemurianTempleInteractables = "RoR2/DLC2/lemuriantemple/dpLemurianTempleInteractables.asset"; public static string dpLemurianTempleMonsters = "RoR2/DLC2/lemuriantemple/dpLemurianTempleMonsters.asset"; public static string dpMeridianInteractables = "RoR2/DLC2/meridian/dpMeridianInteractables.asset"; public static string dpMeridianMonsters = "RoR2/DLC2/meridian/dpMeridianMonsters.asset"; public static string dpSulfurPoolsMonstersDLC2 = "RoR2/DLC2/dpSulfurPoolsMonstersDLC2.asset"; public static string dpVillageInteractables = "RoR2/DLC2/village/dpVillageInteractables.asset"; public static string dpVillageMonsters = "RoR2/DLC2/village/dpVillageMonsters.asset"; public static string dpVillageNightInteractables = "RoR2/DLC2/villagenight/dpVillageNightInteractables.asset"; public static string dpVillageNightMonsters = "RoR2/DLC2/villagenight/dpVillageNightMonsters.asset"; public static string dpComputationalexchangeInteractables = "RoR2/DLC3/computationalexchange/dpComputationalexchangeInteractables.asset"; public static string dpComputationalexchangeMonsters = "RoR2/DLC3/computationalexchange/dpComputationalexchangeMonsters.asset"; public static string dpConduitcanyonInteractables = "RoR2/DLC3/conduitcanyon/dpConduitcanyonInteractables.asset"; public static string dpConduitcanyonMonsters = "RoR2/DLC3/conduitcanyon/dpConduitcanyonMonsters.asset"; public static string dpIronalluviumInteractables = "RoR2/DLC3/ironalluvium/dpIronalluviumInteractables.asset"; public static string dpIronalluviumMonsters = "RoR2/DLC3/ironalluvium/dpIronalluviumMonsters.asset"; public static string dpIronalluvium2Interactables = "RoR2/DLC3/ironalluvium2/dpIronalluvium2Interactables.asset"; public static string dpIronalluvium2Monsters = "RoR2/DLC3/ironalluvium2/dpIronalluvium2Monsters.asset"; public static string dpNestInteractables = "RoR2/DLC3/nest/dpNestInteractables.asset"; public static string dpNestMonsters = "RoR2/DLC3/nest/dpNestMonsters.asset"; public static string dpRepurposedcraterInteractables = "RoR2/DLC3/repurposedcrater/dpRepurposedcraterInteractables.asset"; public static string dpRepurposedcraterMonsters = "RoR2/DLC3/repurposedcrater/dpRepurposedcraterMonsters.asset"; public static string dpSolusWebInteractables = "RoR2/DLC3/solusweb/dpSolusWebInteractables.asset"; public static string dpSolusWebMonsters = "RoR2/DLC3/solusweb/dpSolusWebMonsters.asset"; public static string dpSolutionalhauntInteractables = "RoR2/DLC3/solutionalhaunt/dpSolutionalhauntInteractables.asset"; public static string dpSolutionalhauntMonsters = "RoR2/DLC3/solutionalhaunt/dpSolutionalhauntMonsters.asset"; public static string dpTestingsceneInteractables = "RoR2/testingscene/dpTestingsceneInteractables.asset"; public static string dpTestingsceneMonsters = "RoR2/testingscene/dpTestingsceneMonsters.asset"; } public static class SceneDef { public static string arena = "RoR2/Base/arena/arena.asset"; public static string artifactworld = "RoR2/Base/artifactworld/artifactworld.asset"; public static string bazaar = "RoR2/Base/bazaar/bazaar.asset"; public static string blackbeach = "RoR2/Base/blackbeach/blackbeach.asset"; public static string blackbeach2 = "RoR2/Base/blackbeach2/blackbeach2.asset"; public static string crystalworld = "RoR2/Base/crystalworld/crystalworld.asset"; public static string dampcavesimple = "RoR2/Base/dampcavesimple/dampcavesimple.asset"; public static string eclipseworld = "RoR2/Base/eclipseworld/eclipseworld.asset"; public static string foggyswamp = "RoR2/Base/foggyswamp/foggyswamp.asset"; public static string frozenwall = "RoR2/Base/frozenwall/frozenwall.asset"; public static string goldshores = "RoR2/Base/goldshores/goldshores.asset"; public static string golemplains = "RoR2/Base/golemplains/golemplains.asset"; public static string golemplains2 = "RoR2/Base/golemplains2/golemplains2.asset"; public static string goolake = "RoR2/Base/goolake/goolake.asset"; public static string intro = "RoR2/Base/intro/intro.asset"; public static string limbo = "RoR2/Base/limbo/limbo.asset"; public static string loadingbasic = "RoR2/Base/loadingbasic/loadingbasic.asset"; public static string lobby = "RoR2/Base/lobby/lobby.asset"; public static string logbook = "RoR2/Base/logbook/logbook.asset"; public static string moon = "RoR2/Base/moon/moon.asset"; public static string moon2 = "RoR2/Base/moon2/moon2.asset"; public static string mysteryspace = "RoR2/Base/mysteryspace/mysteryspace.asset"; public static string outro = "RoR2/Base/outro/outro.asset"; public static string rootjungle = "RoR2/Base/rootjungle/rootjungle.asset"; public static string shipgraveyard = "RoR2/Base/shipgraveyard/shipgraveyard.asset"; public static string skymeadow = "RoR2/Base/skymeadow/skymeadow.asset"; public static string splash = "RoR2/Base/splash/splash.asset"; public static string title = "RoR2/Base/title/title.asset"; public static string wispgraveyard = "RoR2/Base/wispgraveyard/wispgraveyard.asset"; public static string ancientloft = "RoR2/DLC1/ancientloft/ancientloft.asset"; public static string infinitetowerworld = "RoR2/DLC1/infinitetowerworld/infinitetowerworld.asset"; public static string itancientloft = "RoR2/DLC1/itancientloft/itancientloft.asset"; public static string itdampcave = "RoR2/DLC1/itdampcave/itdampcave.asset"; public static string itfrozenwall = "RoR2/DLC1/itfrozenwall/itfrozenwall.asset"; public static string itgolemplains = "RoR2/DLC1/itgolemplains/itgolemplains.asset"; public static string itgoolake = "RoR2/DLC1/itgoolake/itgoolake.asset"; public static string itmoon = "RoR2/DLC1/itmoon/itmoon.asset"; public static string itskymeadow = "RoR2/DLC1/itskymeadow/itskymeadow.asset"; public static string PromoRailGunner = "RoR2/DLC1/PromoRailGunner.asset"; public static string PromoVoidSurvivor = "RoR2/DLC1/PromoVoidSurvivor.asset"; public static string snowyforest = "RoR2/DLC1/snowyforest/snowyforest.asset"; public static string sulfurpools = "RoR2/DLC1/sulfurpools/sulfurpools.asset"; public static string voidoutro = "RoR2/DLC1/voidoutro/voidoutro.asset"; public static string voidraid = "RoR2/DLC1/voidraid/voidraid.asset"; public static string voidstage = "RoR2/DLC1/voidstage/voidstage.asset"; public static string artifactworld01 = "RoR2/DLC2/artifactworld01/artifactworld01.asset"; public static string artifactworld02 = "RoR2/DLC2/artifactworld02/artifactworld02.asset"; public static string artifactworld03 = "RoR2/DLC2/artifactworld03/artifactworld03.asset"; public static string habitat = "RoR2/DLC2/habitat/habitat.asset"; public static string habitatfall = "RoR2/DLC2/habitatfall/habitatfall.asset"; public static string helminthroost = "RoR2/DLC2/helminthroost/helminthroost.asset"; public static string lakes = "RoR2/DLC2/lakes/lakes.asset"; public static string lakesnight = "RoR2/DLC2/lakesnight/lakesnight.asset"; public static string lemuriantemple = "RoR2/DLC2/lemuriantemple/lemuriantemple.asset"; public static string meridian = "RoR2/DLC2/meridian/meridian.asset"; public static string village = "RoR2/DLC2/village/village.asset"; public static string villagenight = "RoR2/DLC2/villagenight/villagenight.asset"; public static string computationalexchange = "RoR2/DLC3/computationalexchange/computationalexchange.asset"; public static string conduitcanyon = "RoR2/DLC3/conduitcanyon/conduitcanyon.asset"; public static string ironalluvium = "RoR2/DLC3/ironalluvium/ironalluvium.asset"; public static string ironalluvium2 = "RoR2/DLC3/ironalluvium2/ironalluvium2.asset"; public static string nest = "RoR2/DLC3/nest/nest.asset"; public static string repurposedcrater = "RoR2/DLC3/repurposedcrater/repurposedcrater.asset"; public static string solusweb = "RoR2/DLC3/solusweb/solusweb.asset"; public static string solutionalhaunt = "RoR2/DLC3/solutionalhaunt/solutionalhaunt.asset"; public static string aitest = "RoR2/Junk/ai_test/ai_test.asset"; public static string satellitescene = "RoR2/Junk/satellitescene/satellitescene.asset"; public static string testscene = "RoR2/Junk/testscene/testscene.asset"; public static string testingscene = "RoR2/testingscene/testingscene.asset"; } public static class NodeGraph { public static string arenaAirNodesNodegraph = "RoR2/Base/arena/arenaAirNodesNodegraph.asset"; public static string arenaGroundNodesNodegraph = "RoR2/Base/arena/arenaGroundNodesNodegraph.asset"; public static string artifactworldAirNodeGraph = "RoR2/Base/artifactworld/artifactworld_AirNodeGraph.asset"; public static string artifactworldGroundNodeGraph = "RoR2/Base/artifactworld/artifactworld_GroundNodeGraph.asset"; public static string bazaarAirNodesNodegraph = "RoR2/Base/bazaar/bazaarAirNodesNodegraph.asset"; public static string bazaarGroundNodesNodegraph = "RoR2/Base/bazaar/bazaarGroundNodesNodegraph.asset"; public static string blackbeachAirNodes = "RoR2/Base/blackbeach/blackbeachAirNodes.asset"; public static string blackbeachGroundNodes = "RoR2/Base/blackbeach/blackbeachGroundNodes.asset"; public static string blackbeachGroundRailNodes = "RoR2/Base/blackbeach/blackbeachGroundRailNodes.asset"; public static string blackbeach2AirNodesNodegraph = "RoR2/Base/blackbeach2/blackbeach2AirNodesNodegraph.asset"; public static string blackbeach2GroundNodesNodegraph = "RoR2/Base/blackbeach2/blackbeach2GroundNodesNodegraph.asset"; public static string dampcaveAirNodesNodegraph = "RoR2/Base/dampcavesimple/dampcaveAirNodesNodegraph.asset"; public static string dampcaveGroundNodesNodegraph = "RoR2/Base/dampcavesimple/dampcaveGroundNodesNodegraph.asset"; public static string foggyswampAirNodesNodegraph = "RoR2/Base/foggyswamp/foggyswampAirNodesNodegraph.asset"; public static string foggyswampGroundNodesNodegraph = "RoR2/Base/foggyswamp/foggyswampGroundNodesNodegraph.asset"; public static string frozenwallAirNodesNodegraph = "RoR2/Base/frozenwall/frozenwallAirNodesNodegraph.asset"; public static string frozenwallGroundNodesNodegraph = "RoR2/Base/frozenwall/frozenwallGroundNodesNodegraph.asset"; public static string frozenwallRailNodesNodegraph = "RoR2/Base/frozenwall/frozenwallRailNodesNodegraph.asset"; public static string goldshoresAirNodes = "RoR2/Base/goldshores/goldshoresAirNodes.asset"; public static string goldshoresGroundNodes = "RoR2/Base/goldshores/goldshoresGroundNodes.asset"; public static string goldshoresRailNodes = "RoR2/Base/goldshores/goldshoresRailNodes.asset"; public static string golemplainsAirNodesNodegraph = "RoR2/Base/golemplains/golemplainsAirNodesNodegraph.asset"; public static string golemplainsGroundNodesNodegraph = "RoR2/Base/golemplains/golemplainsGroundNodesNodegraph.asset"; public static string golemplains2AirNodesNodegraph = "RoR2/Base/golemplains2/golemplains2AirNodesNodegraph.asset"; public static string golemplains2GroundNodesNodegraph = "RoR2/Base/golemplains2/golemplains2GroundNodesNodegraph.asset"; public static string goolakeAirNodegraph = "RoR2/Base/goolake/goolakeAirNodegraph.asset"; public static string goolakeGroundNodegraph = "RoR2/Base/goolake/goolakeGroundNodegraph.asset"; public static string limboAirNodeGraph = "RoR2/Base/limbo/limbo_AirNodeGraph.asset"; public static string limboGroundNodeGraph = "RoR2/Base/limbo/limbo_GroundNodeGraph.asset"; public static string moonAirNodesNodegraph = "RoR2/Base/moon/moonAirNodesNodegraph.asset"; public static string moonGroundNodesNodegraph = "RoR2/Base/moon/moonGroundNodesNodegraph.asset"; public static string moon2AirNodeGraph = "RoR2/Base/moon2/moon2_AirNodeGraph.asset"; public static string moon2GroundNodeGraph = "RoR2/Base/moon2/moon2_GroundNodeGraph.asset"; public static string mysteryspaceAirNodegraph = "RoR2/Base/mysteryspace/mysteryspaceAirNodegraph.asset"; public static string mysteryspaceGroundNodegraph = "RoR2/Base/mysteryspace/mysteryspaceGroundNodegraph.asset"; public static string rootjungleAirNodesNodegraph = "RoR2/Base/rootjungle/rootjungleAirNodesNodegraph.asset"; public static string rootjungleGroundNodesNodegraph = "RoR2/Base/rootjungle/rootjungleGroundNodesNodegraph.asset"; public static string shipgraveyardAirNodeNodegraph = "RoR2/Base/shipgraveyard/shipgraveyardAirNodeNodegraph.asset"; public static string shipgraveyardGroundNodeNodegraph = "RoR2/Base/shipgraveyard/shipgraveyardGroundNodeNodegraph.asset"; public static string skymeadowAirNodesNodegraph = "RoR2/Base/skymeadow/skymeadowAirNodesNodegraph.asset"; public static string skymeadowGroundNodesNodegraph = "RoR2/Base/skymeadow/skymeadowGroundNodesNodegraph.asset"; public static string wispgraveyardAirNodesNodegraph = "RoR2/Base/wispgraveyard/wispgraveyardAirNodesNodegraph.asset"; public static string wispgraveyardGroundNodesNodegraph = "RoR2/Base/wispgraveyard/wispgraveyardGroundNodesNodegraph.asset"; public static string ancientloftAirNodeGraph = "RoR2/DLC1/ancientloft/ancientloft_AirNodeGraph.asset"; public static string ancientloftGroundNodeGraph = "RoR2/DLC1/ancientloft/ancientloft_GroundNodeGraph.asset"; public static string gauntlet1AirNodeGraph = "RoR2/DLC1/gauntlet1/gauntlet1_AirNodeGraph.asset"; public static string gauntlet1GroundNodeGraph = "RoR2/DLC1/gauntlet1/gauntlet1_GroundNodeGraph.asset"; public static string gauntlet2AirNodeGraph = "RoR2/DLC1/gauntlet2/gauntlet2_AirNodeGraph.asset"; public static string gauntlet2GroundNodeGraph = "RoR2/DLC1/gauntlet2/gauntlet2_GroundNodeGraph.asset"; public static string gauntlet3AirNodeGraph = "RoR2/DLC1/gauntlet3/gauntlet3_AirNodeGraph.asset"; public static string gauntlet3GroundNodeGraph = "RoR2/DLC1/gauntlet3/gauntlet3_GroundNodeGraph.asset"; public static string gauntlet4AirNodes = "RoR2/DLC1/gauntlet4/gauntlet4_AirNodes.asset"; public static string gauntlet4GroundNodes = "RoR2/DLC1/gauntlet4/gauntlet4_GroundNodes.asset"; public static string itancientloftAirNodeGraph = "RoR2/DLC1/itancientloft/itancientloft_AirNodeGraph.asset"; public static string itancientloftGroundNodeGraph = "RoR2/DLC1/itancientloft/itancientloft_GroundNodeGraph.asset"; public static string itdampcaveAirnodesNodegraph = "RoR2/DLC1/itdampcave/itdampcave AirnodesNodegraph.asset"; public static string itdampcaveGroundnodesNodegraph = "RoR2/DLC1/itdampcave/itdampcave GroundnodesNodegraph.asset"; public static string itfrozenwallAirnodesNodegraph = "RoR2/DLC1/itfrozenwall/itfrozenwallAirnodesNodegraph.asset"; public static string itfrozenwallGroundnodesNodegraph = "RoR2/DLC1/itfrozenwall/itfrozenwallGroundnodesNodegraph.asset"; public static string itgolemplainsAirnodesNodegraph = "RoR2/DLC1/itgolemplains/itgolemplainsAirnodesNodegraph.asset"; public static string itgolemplainsGroundnodesNodegraph = "RoR2/DLC1/itgolemplains/itgolemplainsGroundnodesNodegraph.asset"; public static string itgolemplainsGroundnodesNodegraphHANGSONREBAKE = "RoR2/DLC1/itgolemplains/itgolemplainsGroundnodesNodegraph_HANGSONREBAKE.asset"; public static string itgoolakeAirnodesNodegraph = "RoR2/DLC1/itgoolake/itgoolakeAirnodesNodegraph.asset"; public static string itgoolakeGroundnodesNodegraph = "RoR2/DLC1/itgoolake/itgoolakeGroundnodesNodegraph.asset"; public static string itmoonAirNodeGraph = "RoR2/DLC1/itmoon/itmoon_AirNodeGraph.asset"; public static string itmoonGroundNodeGraph = "RoR2/DLC1/itmoon/itmoon_GroundNodeGraph.asset"; public static string itskymeadowAirNodeGraph = "RoR2/DLC1/itskymeadow/itskymeadow_AirNodeGraph.asset"; public static string itskymeadowGroundNodeGraph = "RoR2/DLC1/itskymeadow/itskymeadow_GroundNodeGraph.asset"; public static string snowyforestAirNodeGraph = "RoR2/DLC1/snowyforest/snowyforest_AirNodeGraph.asset"; public static string snowyforestGroundNodeGraph = "RoR2/DLC1/snowyforest/snowyforestGroundNodeGraph.asset"; public static string sulfurpoolsAirNodeGraph = "RoR2/DLC1/sulfurpools/sulfurpools_AirNodeGraph.asset"; public static string sulfurpoolsGroundNodeGraph = "RoR2/DLC1/sulfurpools/sulfurpools_GroundNodeGraph.asset"; public static string voidraidAirNodeGraph = "RoR2/DLC1/voidraid/voidraid_AirNodeGraph.asset"; public static string voidraidGroundNodeGraph = "RoR2/DLC1/voidraid/voidraid_GroundNodeGraph.asset"; public static string voidstageAirNodeGraph = "RoR2/DLC1/voidstage/voidstage_AirNodeGraph.asset"; public static string voidstageGroundNodeGraph = "RoR2/DLC1/voidstage/voidstage_GroundNodeGraph.asset"; public static string artifactworld01AirNodeGraph = "RoR2/DLC2/artifactworld01/artifactworld01AirNodeGraph.asset"; public static string artifactworld01GroundNodeGraph = "RoR2/DLC2/artifactworld01/artifactworld01GroundNodeGraph.asset"; public static string artifactworld02AirNodeGraph = "RoR2/DLC2/artifactworld02/artifactworld02_AirNodeGraph.asset"; public static string artifactworld02GroundNodeGraph = "RoR2/DLC2/artifactworld02/artifactworld02_GroundNodeGraph.asset"; public static string artifactworld03AirNodeGraph = "RoR2/DLC2/artifactworld03/artifactworld03_AirNodeGraph.asset"; public static string artifactworld03GroundNodeGraph = "RoR2/DLC2/artifactworld03/artifactworld03_GroundNodeGraph.asset"; public static string habitatAirNodeGraph = "RoR2/DLC2/habitat/habitat_AirNodeGraph.asset"; public static string habitatGroundNodeGraph = "RoR2/DLC2/habitat/habitat_GroundNodeGraph.asset"; public static string habitatfallAirNodeGraph = "RoR2/DLC2/habitatfall/habitatfall_AirNodeGraph.asset"; public static string habitatfallGroundNodeGraph = "RoR2/DLC2/habitatfall/habitatfall_GroundNodeGraph.asset"; public static string helminthroostAirNodeGraph = "RoR2/DLC2/helminthroost/helminthroost_AirNodeGraph.asset"; public static string helminthroostGroundNodeGraph = "RoR2/DLC2/helminthroost/helminthroost_GroundNodeGraph.asset"; public static string lakesAirNodeGraph = "RoR2/DLC2/lakes/lakes_AirNodeGraph.asset"; public static string lakesGroundNodeGraph = "RoR2/DLC2/lakes/lakes_GroundNodeGraph.asset"; public static string lakesnightAirNodeGraph = "RoR2/DLC2/lakesnight/lakesnight_AirNodeGraph.asset"; public static string lakesnightGroundNodeGraph = "RoR2/DLC2/lakesnight/lakesnight_GroundNodeGraph.asset"; public static string lemuriantempleAirNodeGraph = "RoR2/DLC2/lemuriantemple/lemuriantemple_AirNodeGraph.asset"; public static string lemuriantempleGroundNodeGraph = "RoR2/DLC2/lemuriantemple/lemuriantemple_GroundNodeGraph.asset"; public static string meridianAirNodeGraph = "RoR2/DLC2/meridian/meridian_AirNodeGraph.asset"; public static string meridianGroundNodeGraph = "RoR2/DLC2/meridian/meridian_GroundNodeGraph.asset"; public static string villageAirNodeGraph = "RoR2/DLC2/village/village_AirNodeGraph.asset"; public static string villageGroundNodeGraph = "RoR2/DLC2/village/village_GroundNodeGraph.asset"; public static string villagenightAirNodeGraph = "RoR2/DLC2/villagenight/villagenight/villagenight_AirNodeGraph.asset"; public static string villagenightGroundNodeGraph = "RoR2/DLC2/villagenight/villagenight/villagenight_GroundNodeGraph.asset"; public static string computationalexchangeAirNodeGraph = "RoR2/DLC3/computationalexchange/computationalexchange_AirNodeGraph.asset"; public static string computationalexchangeGroundNodeGraph = "RoR2/DLC3/computationalexchange/computationalexchange_GroundNodeGraph.asset"; public static string conduitcanyonAirNodeGraph = "RoR2/DLC3/conduitcanyon/conduitcanyon_AirNodeGraph.asset"; public static string conduitcanyonGroundNodeGraph = "RoR2/DLC3/conduitcanyon/conduitcanyon_GroundNodeGraph.asset"; public static string ironalluviumAirNodeGraph = "RoR2/DLC3/ironalluvium/ironalluvium_AirNodeGraph.asset"; public static string ironalluviumGroundNodeGraph = "RoR2/DLC3/ironalluvium/ironalluvium_GroundNodeGraph.asset"; public static string ironalluvium2AirNodeGraph = "RoR2/DLC3/ironalluvium2/ironalluvium2_AirNodeGraph.asset"; public static string ironalluvium2GroundNodeGraph = "RoR2/DLC3/ironalluvium2/ironalluvium2_GroundNodeGraph.asset"; public static string nestAirNodeGraph = "RoR2/DLC3/nest/nest_AirNodeGraph.asset"; public static string nestGroundNodeGraph = "RoR2/DLC3/nest/nest_GroundNodeGraph.asset"; public static string repurposedcraterAirNodeGraph = "RoR2/DLC3/repurposedcrater/repurposedcrater_AirNodeGraph.asset"; public static string repurposedcraterGroundNodeGraph = "RoR2/DLC3/repurposedcrater/repurposedcrater_GroundNodeGraph.asset"; public static string soluswebAirNodes = "RoR2/DLC3/solusweb/solusweb_AirNodes.asset"; public static string soluswebGroundNodes = "RoR2/DLC3/solusweb/solusweb_GroundNodes.asset"; public static string solutionalhauntAirNodeGraph = "RoR2/DLC3/solutionalhaunt/solutionalhaunt_AirNodeGraph.asset"; public static string solutionalhauntGroundNodeGraph = "RoR2/DLC3/solutionalhaunt/solutionalhaunt_GroundNodeGraph.asset"; public static string aitestAirNodeGraph = "RoR2/Junk/ai_test/ai_test_AirNodeGraph.asset"; public static string aitestGroundNodeGraph = "RoR2/Junk/ai_test/ai_test_GroundNodeGraph.asset"; public static string AirNodesSlice1 = "RoR2/Junk/slice1/AirNodesSlice1.asset"; public static string GroundNodesSlice1 = "RoR2/Junk/slice1/GroundNodesSlice1.asset"; public static string AirNodesSlice2 = "RoR2/Junk/slice2/AirNodesSlice2.asset"; public static string GroundNodesSlice2 = "RoR2/Junk/slice2/GroundNodesSlice2.asset"; public static string AirGraph = "RoR2/Junk/stage1/AirGraph.asset"; public static string GroundGraph = "RoR2/Junk/stage1/GroundGraph.asset"; public static string testsceneAirNodeGraph = "RoR2/Junk/testscene/testscene_AirNodeGraph.asset"; public static string testsceneGroundNodeGraph = "RoR2/Junk/testscene/testscene_GroundNodeGraph.asset"; public static string testsceneGroundNodegraph = "RoR2/Junk/testscene/testsceneGroundNodegraph.asset"; public static string testingsceneAirNodeGraph = "RoR2/testingscene/testingscene_AirNodeGraph.asset"; public static string testingsceneGroundNodeGraph = "RoR2/testingscene/testingscene_GroundNodeGraph.asset"; public static string ancientloftGroundNodeGraph12 = "RoR2/ancientloft_GroundNodeGraph.asset"; public static string golemplains2GroundNodesNodegraph14 = "RoR2/golemplains2GroundNodesNodegraph.asset"; public static string rootjungleGroundNodesNodegraph22 = "RoR2/rootjungleGroundNodesNodegraph.asset"; public static string skymeadowGroundNodesNodegraph36 = "RoR2/skymeadowGroundNodesNodegraph.asset"; } public static class Object { public static string OcclusionCullingData = "RoR2/Base/arena/OcclusionCullingData.asset"; public static string OcclusionCullingData13 = "RoR2/Base/blackbeach/OcclusionCullingData.asset"; public static string OcclusionCullingData7 = "RoR2/Base/blackbeach2/OcclusionCullingData.asset"; public static string OcclusionCullingData32 = "RoR2/Base/dampcavesimple/OcclusionCullingData.asset"; public static string OcclusionCullingData18 = "RoR2/Base/foggyswamp/OcclusionCullingData.asset"; public static string OcclusionCullingData13_Alt = "RoR2/Base/frozenwall/OcclusionCullingData.asset"; public static string OcclusionCullingData22 = "RoR2/Base/golemplains/OcclusionCullingData.asset"; public static string OcclusionCullingData33 = "RoR2/Base/golemplains2/OcclusionCullingData.asset"; public static string OcclusionCullingData32_Alt = "RoR2/Base/goolake/OcclusionCullingData.asset"; public static string OcclusionCullingData25 = "RoR2/Base/moon/OcclusionCullingData.asset"; public static string OcclusionCullingData27 = "RoR2/Base/moon2/OcclusionCullingData.asset"; public static string OcclusionCullingData28 = "RoR2/Base/rootjungle/OcclusionCullingData.asset"; public static string OcclusionCullingData14 = "RoR2/Base/shipgraveyard/OcclusionCullingData.asset"; public static string OcclusionCullingData23 = "RoR2/Base/skymeadow/OcclusionCullingData.asset"; public static string OcclusionCullingData17 = "RoR2/Base/wispgraveyard/OcclusionCullingData.asset"; public static string OcclusionCullingData33_Alt = "RoR2/DLC1/itancientloft/OcclusionCullingData.asset"; public static string OcclusionCullingData35 = "RoR2/DLC1/itdampcave/OcclusionCullingData.asset"; public static string OcclusionCullingData0 = "RoR2/DLC1/itgolemplains/OcclusionCullingData.asset"; public static string OcclusionCullingData22_Alt = "RoR2/DLC1/itgoolake/OcclusionCullingData.asset"; public static string OcclusionCullingData16 = "RoR2/DLC1/itmoon/OcclusionCullingData.asset"; public static string OcclusionCullingData34 = "RoR2/DLC1/itskymeadow/OcclusionCullingData.asset"; public static string OcclusionCullingData11 = "RoR2/DLC1/sulfurpools/OcclusionCullingData.asset"; public static string OcclusionCullingData6 = "RoR2/DLC1/voidstage/OcclusionCullingData.asset"; public static string OcclusionCullingData23_Alt = "RoR2/DLC3/conduitcanyon/OcclusionCullingData.asset"; } public static class ArenaMonsterItemDropTable { public static string dtArenaMonsterTier1 = "RoR2/Base/arena/dtArenaMonsterTier1.asset"; public static string dtArenaMonsterTier2 = "RoR2/Base/arena/dtArenaMonsterTier2.asset"; public static string dtArenaMonsterTier3 = "RoR2/Base/arena/dtArenaMonsterTier3.asset"; } public static class Mesh { public static string Plane1x1W25L25HC = "RoR2/Base/bazaar/Plane1x1W25L25HC.asset"; public static string Plane100x100W1000L1000HC = "RoR2/Base/goldshores/Plane100x100W1000L1000HC.asset"; public static string Plane10x10W1000L1000HC = "RoR2/Base/goldshores/Plane10x10W1000L1000HC.asset"; public static string Plane1x1W1000L1000HC = "RoR2/Base/goldshores/Plane1x1W1000L1000HC.asset"; public static string meshHANDHead = "RoR2/DLC3/Drifter/meshHANDHead.mesh"; public static string meshSkull = "RoR2/DLC3/Drifter/meshSkull.mesh"; public static string meshStewLid = "RoR2/DLC3/Items/Stew/meshStewLid.mesh"; public static string mdlRCWaterCircle = "RoR2/DLC3/repurposedcrater/mdlRCWaterCircle.mesh"; } public static class LightingSettings { public static string blackbeachSettings = "RoR2/Base/blackbeach/blackbeachSettings.lighting"; public static string blackbeach2Settings = "RoR2/Base/blackbeach2/blackbeach2Settings.lighting"; public static string foggyswampSettings = "RoR2/Base/foggyswamp/foggyswampSettings.lighting"; public static string goolakeSettings = "RoR2/Base/goolake/goolakeSettings.lighting"; public static string introSettings = "RoR2/Base/intro/introSettings.lighting"; public static string rootjungleSettings = "RoR2/Base/rootjungle/rootjungleSettings.lighting"; public static string splashSettings = "RoR2/Base/splash/splashSettings.lighting"; public static string itancientloftSettings = "RoR2/DLC1/itancientloft/itancientloftSettings.lighting"; public static string itgolemplainsSettings = "RoR2/DLC1/itgolemplains/itgolemplainsSettings.lighting"; public static string itmoonSettings = "RoR2/DLC1/itmoon/itmoonSettings.lighting"; public static string PromoVoidSurvivorSettings = "RoR2/DLC1/PromoVoidSurvivorSettings.lighting"; public static string snowyforestSettings = "RoR2/DLC1/snowyforest/snowyforestSettings.lighting"; public static string voidoutroSettings = "RoR2/DLC1/voidoutro/voidoutroSettings.lighting"; public static string meridianSettings = "RoR2/DLC2/meridian/meridianSettings.lighting"; public static string villagenightSettings = "RoR2/DLC2/villagenight/villagenightSettings.lighting"; public static string CCLightning = "RoR2/DLC3/conduitcanyon/CCLightning.lighting"; public static string ironalluviumSettings = "RoR2/DLC3/ironalluvium/ironalluviumSettings.lighting"; public static string solutionalhauntSettings = "RoR2/DLC3/solutionalhaunt/solutionalhauntSettings.lighting"; public static string testsceneSettings = "RoR2/Junk/testscene/testsceneSettings.lighting"; } public static class SimpleSpriteAnimation { public static string ssaChildWalk = "RoR2/Base/loadingbasic/ssaChildWalk.asset"; public static string ssaCommandoWalk = "RoR2/Base/loadingbasic/ssaCommandoWalk.asset"; public static string ssaDroneHover = "RoR2/Base/loadingbasic/ssaDroneHover.asset"; public static string ssaGolem = "RoR2/Base/loadingbasic/ssaGolem.asset"; public static string ssaLemurianWalk = "RoR2/Base/loadingbasic/ssaLemurianWalk.asset"; public static string ssaLoaderWalk = "RoR2/Base/loadingbasic/ssaLoaderWalk.asset"; public static string ssaSOTSButton = "RoR2/Base/UI/Large Splashes/ssaSOTSButton.asset"; public static string ssaSOTVButton = "RoR2/Base/UI/Large Splashes/ssaSOTVButton.asset"; public static string ssaALCButton = "RoR2/DLC3/UI/ssaALCButton.asset"; } public static class AnimatorOverrideController { public static string animBloodSiphon = "RoR2/Base/moon2/animBloodSiphon.overrideController"; public static string animGip = "RoR2/DLC1/Gup/animGip.overrideController"; public static string animRailgunTracerSuper = "RoR2/DLC1/Railgunner/animRailgunTracerSuper.overrideController"; public static string animRailgunTracerLight = "RoR2/DLC1/Railgunner/animRailgunTracerLight.overrideController"; public static string SilhouetteBrain = "RoR2/DLC3/SolusHeart/Silhouette_Brain.overrideController"; } public static class TerrainLayer { public static string dirtLayer = "RoR2/Base/shipgraveyard/dirtLayer.terrainlayer"; public static string snowLayer = "RoR2/Base/shipgraveyard/snowLayer.terrainlayer"; } public static class Sha256HashAsset { public static string PortalDialerCode06B2FC = "RoR2/Base/skymeadow/PortalDialerCode06B2FC.asset"; public static string PortalDialerCode15E2A2 = "RoR2/Base/skymeadow/PortalDialerCode15E2A2.asset"; public static string PortalDialerCode220DEB = "RoR2/Base/skymeadow/PortalDialerCode220DEB.asset"; public static string PortalDialerCode23FB80 = "RoR2/Base/skymeadow/PortalDialerCode23FB80.asset"; public static string PortalDialerCode3B6A58 = "RoR2/Base/skymeadow/PortalDialerCode3B6A58.asset"; public static string PortalDialerCode476701 = "RoR2/Base/skymeadow/PortalDialerCode476701.asset"; public static string PortalDialerCode7B5B48 = "RoR2/Base/skymeadow/PortalDialerCode7B5B48.asset"; public static string PortalDialerCode936D26 = "RoR2/Base/skymeadow/PortalDialerCode936D26.asset"; public static string PortalDialerCode96E010 = "RoR2/Base/skymeadow/PortalDialerCode96E010.asset"; public static string PortalDialerCode982519 = "RoR2/Base/skymeadow/PortalDialerCode982519.asset"; public static string PortalDialerCode9E24CD = "RoR2/Base/skymeadow/PortalDialerCode9E24CD.asset"; public static string PortalDialerCodeB06043 = "RoR2/Base/skymeadow/PortalDialerCodeB06043.asset"; public static string PortalDialerCodeB7FDA2 = "RoR2/Base/skymeadow/PortalDialerCodeB7FDA2.asset"; public static string PortalDialerCodeCFD13F = "RoR2/Base/skymeadow/PortalDialerCodeCFD13F.asset"; public static string PortalDialerCodeD2EBC0 = "RoR2/Base/skymeadow/PortalDialerCodeD2EBC0.asset"; public static string PortalDialerCodeE6B657 = "RoR2/Base/skymeadow/PortalDialerCodeE6B657.asset"; public static string PortalDialerCodeD738C9 = "RoR2/CU8/PortalDialerCodeD738C9.asset"; public static string PortalDialerCode1A5784 = "RoR2/CU8/PortalDialerCode1A5784.asset"; public static string PortalDialerCodeCF4BB3 = "RoR2/DLC3/PortalDialerCodeCF4BB3.asset"; } public static class TerrainData { public static string terrainTitle = "RoR2/Base/title/terrainTitle.asset"; public static string terrainSlice1 = "RoR2/Junk/slice1/terrainSlice1.asset"; public static string terrainSlice2Grass1 = "RoR2/Junk/slice2/terrainSlice2Grass1.asset"; public static string terrainSlice2Sand = "RoR2/Junk/slice2/terrainSlice2Sand.asset"; public static string stage1Terrain = "RoR2/Junk/stage1/stage1Terrain.asset"; } public static class AssetCollection { public static string CustomPostProcessShaders = "RoR2/Base/Shaders/CustomPostProcessShaders.asset"; public static string DeferredShaders = "RoR2/Base/Shaders/DeferredShaders.asset"; public static string EnvironmentShaders = "RoR2/Base/Shaders/EnvironmentShaders.asset"; public static string FXShaders = "RoR2/Base/Shaders/FXShaders.asset"; public static string PostProcesShaders = "RoR2/Base/Shaders/PostProcesShaders.asset"; public static string ShadersCollection = "RoR2/Base/Shaders/ShadersCollection.asset"; public static string SpeedtreeOverrideShaders = "RoR2/Base/Shaders/SpeedtreeOverrideShaders.asset"; public static string UIShaders = "RoR2/Base/Shaders/UIShaders.asset"; } public static class Sprite { public static string texBasicArrowRight = "RoR2/Base/UI/texBasicArrowRight.asset"; } public static class UILayer { public static string uiDevCheatMenu = "RoR2/Base/UI/uiDevCheatMenu.asset"; public static string uiDialog = "RoR2/Base/UI/uiDialog.asset"; public static string uilCredits = "RoR2/Base/UI/uilCredits.asset"; public static string uilMainPanel = "RoR2/Base/UI/uilMainPanel.asset"; public static string uilPauseScreen = "RoR2/Base/UI/uilPauseScreen.asset"; public static string uilPauseScreenLogbook = "RoR2/Base/UI/uilPauseScreenLogbook.asset"; public static string uilPauseScreenLogbookViewer = "RoR2/Base/UI/uilPauseScreenLogbookViewer.asset"; public static string uilPauseScreenSettings = "RoR2/Base/UI/uilPauseScreenSettings.asset"; public static string uilPopoutPanel = "RoR2/Base/UI/uilPopoutPanel.asset"; public static string uilSecondaryPanel = "RoR2/Base/UI/uilSecondaryPanel.asset"; public static string uilTertiaryPanel = "RoR2/Base/UI/uilTertiaryPanel.asset"; } public static class UISkinData { public static string skinCleanButton = "RoR2/Base/UI/skinCleanButton.asset"; public static string skinCleanButtonColored = "RoR2/Base/UI/skinCleanButtonColored.asset"; public static string skinCleanButtonLogbookEntries = "RoR2/Base/UI/skinCleanButtonLogbookEntries.asset"; public static string skinCleanHeaderButton = "RoR2/Base/UI/skinCleanHeaderButton.asset"; public static string skinNakedButton = "RoR2/Base/UI/skinNakedButton.asset"; public static string skinNakedButtonControllerHighlight = "RoR2/Base/UI/skinNakedButtonControllerHighlight.asset"; public static string skinPaintStreakButtons = "RoR2/Base/UI/skinPaintStreakButtons.asset"; public static string skinSurvivorSelect = "RoR2/Base/UI/skinSurvivorSelect.asset"; public static string skinThinStrips = "RoR2/Base/UI/skinThinStrips.asset"; public static string skinTitleHeaderButtons = "RoR2/Base/UI/skinTitleHeaderButtons.asset"; public static string skinLogbook = "RoR2/Base/UI/skinLogbook.asset"; public static string skinMenu = "RoR2/Base/UI/skinMenu.asset"; public static string skinObjectivePanel = "RoR2/Base/UI/skinObjectivePanel.asset"; public static string skinRuleStrip = "RoR2/Base/UI/skinRuleStrip.asset"; public static string skinVoteInfo = "RoR2/Base/UI/skinVoteInfo.asset"; public static string skinWarning = "RoR2/Base/UI/skinWarning.asset"; public static string skinCleanButtonDark = "RoR2/Junk/UI/skinCleanButtonDark.asset"; public static string skinCleanButtonTransparent = "RoR2/Junk/UI/skinCleanButtonTransparent.asset"; public static string skinAchievementCard = "RoR2/Junk/UI/skinAchievementCard.asset"; public static string skinIconToggle = "RoR2/Junk/UI/skinIconToggle.asset"; public static string skinOptionsHeader = "RoR2/Junk/UI/skinOptionsHeader.asset"; } public static class MasterSpawnSlotSkillDef { public static string SpawnMinorConstructs = "RoR2/DLC1/MajorAndMinorConstruct/SpawnMinorConstructs.asset"; } public static class RailgunSkillDef { public static string RailgunnerBodyChargeSnipeCryo = "RoR2/DLC1/Railgunner/RailgunnerBodyChargeSnipeCryo.asset"; public static string RailgunnerBodyChargeSnipeSuper = "RoR2/DLC1/Railgunner/RailgunnerBodyChargeSnipeSuper.asset"; public static string RailgunnerBodyFirePistol = "RoR2/DLC1/Railgunner/RailgunnerBodyFirePistol.asset"; public static string RailgunnerBodyFireSnipeCryo = "RoR2/DLC1/Railgunner/RailgunnerBodyFireSnipeCryo.asset"; public static string RailgunnerBodyFireSnipeHeavy = "RoR2/DLC1/Railgunner/RailgunnerBodyFireSnipeHeavy.asset"; public static string RailgunnerBodyFireSnipeLight = "RoR2/DLC1/Railgunner/RailgunnerBodyFireSnipeLight.asset"; public static string RailgunnerBodyFireSnipeSuper = "RoR2/DLC1/Railgunner/RailgunnerBodyFireSnipeSuper.asset"; public static string RailgunnerBodyScopeHeavy = "RoR2/DLC1/Railgunner/RailgunnerBodyScopeHeavy.asset"; public static string RailgunnerBodyScopeLight = "RoR2/DLC1/Railgunner/RailgunnerBodyScopeLight.asset"; } public static class PassiveItemSkillDef { public static string RailgunnerBodyPassiveConvertCrit = "RoR2/DLC1/Railgunner/RailgunnerBodyPassiveConvertCrit.asset"; public static string VoidSurvivorPassive = "RoR2/DLC1/VoidSurvivor/VoidSurvivorPassive.asset"; public static string DrifterBodyPassiveScrapToStats = "RoR2/DLC3/Drifter/DrifterBodyPassiveScrapToStats.asset"; } public static class VoidRaidCrabBodySkillDef { public static string RaidCrabChannelGauntlet = "RoR2/DLC1/VoidRaidCrab/RaidCrabChannelGauntlet.asset"; public static string RaidCrabFinalStand = "RoR2/DLC1/VoidRaidCrab/RaidCrabFinalStand.asset"; public static string RaidCrabGravityBump = "RoR2/DLC1/VoidRaidCrab/RaidCrabGravityBump.asset"; public static string RaidCrabWardWipe = "RoR2/DLC1/VoidRaidCrab/RaidCrabWardWipe.asset"; } public static class VoidSurvivorSkillDef { public static string CrushCorruption = "RoR2/DLC1/VoidSurvivor/CrushCorruption.asset"; } public static class ExpansionDef { public static string DLC1 = "RoR2/DLC1/Common/DLC1.asset"; public static string DLC2 = "RoR2/DLC2/Common/DLC2.asset"; public static string DLC3 = "RoR2/DLC3/DLC3.asset"; } public static class EntitlementDef { public static string entitlementDLC1 = "RoR2/DLC1/Common/entitlementDLC1.asset"; public static string entitlementDLC2 = "RoR2/DLC2/Common/entitlementDLC2.asset"; public static string entitlementDLC3 = "RoR2/DLC3/entitlementDLC3.asset"; } public static class ItemRelationshipType { public static string ContagiousItem = "RoR2/DLC1/Common/ContagiousItem.asset"; } public static class ItemRelationshipProvider { public static string ContagiousItemProvider = "RoR2/DLC1/Common/ContagiousItemProvider.asset"; } public static class CustomRenderTexture { public static string crtexVoidSunCaustics = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/crtexVoidSunCaustics.asset"; public static string crtexSFSunCaustics = "RoR2/DLC1/snowyforest/crtexSFSunCaustics.asset"; public static string crtexIAcloudShadows = "RoR2/DLC3/ironalluvium/crtexIAcloudShadows.asset"; public static string crtexIAcloudShadowsv2 = "RoR2/DLC3/ironalluvium/crtexIAcloudShadowsv2.asset"; public static string crtexPPcloudShadows = "RoR2/DLC3/nest/crtexPPcloudShadows.asset"; } public static class InfiniteTowerWaveArtifactPrerequisites { public static string ArtifactBombDisabledPrerequisite = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ArtifactBombDisabledPrerequisite.asset"; public static string ArtifactCommandDisabledPrerequisite = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ArtifactCommandDisabledPrerequisite.asset"; public static string ArtifactEnigmaDisabledPrerequisite = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ArtifactEnigmaDisabledPrerequisite.asset"; public static string ArtifactGlassDisabledPrerequisite = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ArtifactGlassDisabledPrerequisite.asset"; public static string ArtifactMixEnemyDisabledPrerequisite = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ArtifactMixEnemyDisabledPrerequisite.asset"; public static string ArtifactSingleMonsterTypeDisabledPrerequisite = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ArtifactSingleMonsterTypeDisabledPrerequisite.asset"; public static string ArtifactWeakAssKneesDisabledPrerequisite = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ArtifactWeakAssKneesDisabledPrerequisite.asset"; public static string ArtifactWispOnDeathDisabledPrerequisite = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ArtifactWispOnDeathDisabledPrerequisite.asset"; } public static class InfiniteTowerWaveCountPrerequisites { public static string Wave11OrGreaterPrerequisite = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/Wave11OrGreaterPrerequisite.asset"; } public static class InfiniteTowerWaveCategory { public static string BossWaveCategory = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ITWaveCategories/BossWaveCategory.asset"; public static string CommonWaveCategory = "RoR2/DLC1/GameModes/InfiniteTowerRun/ITAssets/ITWaveCategories/CommonWaveCategory.asset"; } public static class SpawnCard { public static string scVoidCampGrass = "RoR2/DLC1/VoidCamp/scVoidCampGrass.asset"; public static string scVoidCampKelp = "RoR2/DLC1/VoidCamp/scVoidCampKelp.asset"; public static string scVoidCampTallGrassCluster1 = "RoR2/DLC1/VoidCamp/scVoidCampTallGrassCluster1.asset"; public static string scVoidCampTallGrassCluster2 = "RoR2/DLC1/VoidCamp/scVoidCampTallGrassCluster2.asset"; public static string scVoidCampTallGrassCluster3 = "RoR2/DLC1/VoidCamp/scVoidCampTallGrassCluster3.asset"; public static string scVoidCampXYZ = "RoR2/DLC1/VoidCamp/scVoidCampXYZ.asset"; public static string scVoidCampXYZOpen = "RoR2/DLC1/VoidCamp/scVoidCampXYZOpen.asset"; public static string scHalcyonShardA = "RoR2/DLC2/scHalcyonShardA.asset"; public static string scHalcyonShardB = "RoR2/DLC2/scHalcyonShardB.asset"; public static string scHalcyonShardC = "RoR2/DLC2/scHalcyonShardC.asset"; } public static class FreeChestDropTable { public static string dtFreeChest = "RoR2/DLC1/FreeChest/dtFreeChest.asset"; } public static class VoidCoinDef { public static string VoidCoin = "RoR2/DLC1/VoidCoin/VoidCoin.asset"; } public static class ChefOilSpillSkillDef { public static string ChefOilSpill = "RoR2/DLC2/Chef/ChefOilSpill.asset"; public static string ChefOilSpillBoosted = "RoR2/DLC2/Chef/ChefOilSpillBoosted.asset"; } public static class SeekerWeaponSkillDef { public static string SeekerBodySoulSearchCrosshair = "RoR2/DLC2/Seeker/SeekerBodySoulSearchCrosshair.asset"; public static string SeekerBodySpiritPunchCrosshair = "RoR2/DLC2/Seeker/SeekerBodySpiritPunchCrosshair.asset"; } public static class BuffDefStockThresholdIcon { public static string bdIncreasePrimaryDamageBuff = "RoR2/DLC2/Items/IncreasePrimaryDamage/bdIncreasePrimaryDamageBuff.asset"; public static string bdJumpDamageStrikeCharge = "RoR2/DLC3/Buffs/bdJumpDamageStrikeCharge.asset"; } public static class LightningStrikePattern { public static string DefaultLightningPattern = "RoR2/DLC2/meridian/DisableSkillsLightning/Default Lightning Pattern.asset"; public static string DefaultLightningPatternv2 = "RoR2/DLC2/meridian/DisableSkillsLightning/Default Lightning Pattern_v2.asset"; public static string FSBFightLightningPattern = "RoR2/DLC2/meridian/DisableSkillsLightning/FSB Fight Lightning Pattern.asset"; public static string TestLightningPattern = "RoR2/DLC2/meridian/DisableSkillsLightning/Test Lightning Pattern.asset"; } public static class DrifterSkillDef { public static string Cleanup = "RoR2/DLC3/Drifter/Cleanup.asset"; public static string CleanupClassic = "RoR2/DLC3/Drifter/CleanupClassic.asset"; public static string JunkCube = "RoR2/DLC3/Drifter/JunkCube.asset"; public static string Hoard = "RoR2/DLC3/Drifter/Hoard.asset"; public static string Recycle29 = "RoR2/DLC3/Drifter/Recycle.asset"; public static string Salvage = "RoR2/DLC3/Drifter/Salvage.asset"; public static string SalvageFree = "RoR2/DLC3/Drifter/SalvageFree.asset"; } public static class ProjectileFamily { public static string cleanupProjectileFamily = "RoR2/DLC3/Drifter/cleanupProjectileFamily.asset"; } public static class DrifterTrackingSkillDef { public static string Tinker = "RoR2/DLC3/Drifter/Tinker.asset"; } public static class EnsureDroneMasterSkillDef { public static string DroneCombat = "RoR2/DLC3/Drone Tech/DroneCombat.asset"; public static string DroneHauler = "RoR2/DLC3/Drone Tech/DroneHauler.asset"; public static string DroneHealing = "RoR2/DLC3/Drone Tech/DroneHealing.asset"; } public static class DroneTechDroneSkillDef { public static string Command6 = "RoR2/DLC3/Drone Tech/Command.asset"; public static string CommandHeadbutt = "RoR2/DLC3/Drone Tech/CommandHeadbutt.asset"; } public static class TrackingSkillDef { public static string LaserDisc = "RoR2/DLC3/Drones/LaserDisc.asset"; } public static class SolusHeartComboSkillDef { public static string DDOSComboShowcase = "RoR2/DLC3/SolusHeart/PhasesAndCombos/DDOSComboShowcase.asset"; public static string ComboP2BARRAGE = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_BARRAGE.asset"; public static string ComboP2IRIS = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_IRIS.asset"; public static string ComboP2PIN = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_PIN.asset"; public static string ComboP2SWEEEPHorizontal = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_SWEEEP(Horizontal).asset"; public static string GIANTCOMBO = "RoR2/DLC3/SolusHeart/PhasesAndCombos/GIANT_COMBO.asset"; public static string GIANTCOMBO2 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/GIANT_COMBO2.asset"; public static string ComboP0GUARD = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP0_GUARD.asset"; public static string ComboP0SYSREAD = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP0_SYSREAD.asset"; public static string ComboP1ARENA = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP1_ARENA.asset"; public static string ComboP1GUARD = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP1_GUARD.asset"; public static string ComboP3ARENA = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP3_ARENA.asset"; public static string ComboP3GUARD = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP3_GUARD.asset"; public static string ComboP3SPAM = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP3_SPAM.asset"; public static string TestCombo = "RoR2/DLC3/SolusHeart/PhasesAndCombos/TestCombo.asset"; } public static class CheckboxGrid { public static string ComboP2BARRAGECover = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_BARRAGE_Cover.asset"; public static string ComboP2BARRAGEDDOS = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_BARRAGE_DDOS.asset"; public static string ComboP2PINDDOSGridPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_PIN_DDOSGridPattern.asset"; public static string ComboP2PINDDOSGridPattern2 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_PIN_DDOSGridPattern2.asset"; public static string ComboP2PINUnderclockGridPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_PIN_UnderclockGridPattern.asset"; public static string ComboP2SWEEEPHorizontalOrbitalStrikeGridPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_SWEEEP(Horizontal)_OrbitalStrikeGridPattern.asset"; public static string ComboP2SWEEEPHorizontalUnderclockGridPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_SWEEEP(Horizontal)_UnderclockGridPattern.asset"; public static string IrisPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Iris_Pattern.asset"; public static string CircleAround3x3Pattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/CircleAround3x3_Pattern.asset"; public static string TargetColumnPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/TargetColumn_Pattern.asset"; public static string TargetRowPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/TargetRow_Pattern.asset"; public static string TerrainChangeBasicPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/TerrainChangeBasicPattern.asset"; public static string ArenaUnderclockPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena_Underclock_Pattern.asset"; public static string Arena2UnderclockPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena2_Underclock_Pattern.asset"; public static string ComboP0GUARDOrbitalStrike = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP0_GUARD_OrbitalStrike.asset"; public static string ComboP0SYSREADOrbitalStrike = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP0_SYSREAD_OrbitalStrike.asset"; public static string Arena28x8BitclearVerticalPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena2_8x8BitclearVertical_Pattern.asset"; public static string Arena28x8UnderclockPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena2_8x8Underclock_Pattern.asset"; public static string Arena2TerrainPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena2_TerrainPattern.asset"; public static string Arena3LaserPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena3_Laser_Pattern.asset"; public static string Arena3Laser2Pattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena3_Laser2_Pattern.asset"; public static string Arena3UnderclockPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena3_Underclock_Pattern.asset"; public static string Arena3Underclock2Pattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena3_Underclock2_Pattern.asset"; public static string CircleAroundP3Pattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/CircleAroundP3_Pattern.asset"; public static string ComboP3GUARDPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP3_GUARD_Pattern.asset"; public static string ComboP3LaserPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP3_Laser_Pattern.asset"; public static string ScissorPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Scissor_Pattern.asset"; public static string SpamP3LaserPattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/SpamP3_Laser_Pattern.asset"; public static string SpamP3Laser2Pattern = "RoR2/DLC3/SolusHeart/PhasesAndCombos/SpamP3_Laser2_Pattern.asset"; public static string GridSlam2TerrainPattern = "RoR2/DLC3/SolusHeart/GridSlam2TerrainPattern.asset"; public static string GridSlamTerrainPattern = "RoR2/DLC3/SolusHeart/GridSlamTerrainPattern.asset"; } public static class GAPCheckbox { public static string ComboP2BARRAGECoverGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_BARRAGE_CoverGAP.asset"; public static string ComboP2BARRAGEDDOSGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_BARRAGE_DDOSGAP.asset"; public static string ComboP2PINDDOS = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_PIN_DDOS.asset"; public static string ComboP2PINDDOS2 = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_PIN_DDOS2.asset"; public static string ComboP2PINUnderclock = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_PIN_Underclock.asset"; public static string ComboP2SWEEEPHorizontalOrbitalStrike = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_SWEEEP(Horizontal)_OrbitalStrike.asset"; public static string ComboP2SWEEEPHorizontalUnderclock = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP2_SWEEEP(Horizontal)_Underclock.asset"; public static string IrisGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Iris_GAP.asset"; public static string CircleAroundSource3x3GAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/CircleAroundSource3x3_GAP.asset"; public static string CircleAroundTarget3x3GAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/CircleAroundTarget3x3_GAP.asset"; public static string TargetColumnGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/TargetColumn_GAP.asset"; public static string TargetRowGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/TargetRow_GAP.asset"; public static string TerrainChangeBasicGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/TerrainChangeBasicGAP.asset"; public static string ArenaUnderclockGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena_Underclock_GAP.asset"; public static string Arena2UnderclockGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena2_Underclock_GAP.asset"; public static string ComboP0GUARDGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP0_GUARD_GAP.asset"; public static string ComboP0SYSREADGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP0_SYSREAD_GAP.asset"; public static string Arena28x8BitclearVerticalGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena2_8x8BitclearVertical_GAP.asset"; public static string Arena28x8BUnderclockVerticalGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena2_8x8BUnderclockVertical_GAP.asset"; public static string Arena2TerrainGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena2_TerrainGAP.asset"; public static string Arena3LaserGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena3_Laser_GAP.asset"; public static string Arena3Laser2GAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena3_Laser2_GAP.asset"; public static string Arena3UnderclockGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena3_Underclock_GAP.asset"; public static string Arena3Underclock2GAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Arena3_Underclock2_GAP.asset"; public static string CircleAroundP3GAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/CircleAroundP3_GAP.asset"; public static string ComboP3GUARDGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP3_GUARD_GAP.asset"; public static string ComboP3LaserGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/ComboP3_Laser_GAP.asset"; public static string ScissorGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Scissor_GAP.asset"; public static string SpamP3LaserGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/SpamP3_Laser_GAP.asset"; public static string SpamP3Laser2GAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/SpamP3_Laser2_GAP.asset"; public static string Gridslam2GAPCheckbox = "RoR2/DLC3/SolusHeart/Gridslam2GAPCheckbox.asset"; public static string GridslamGAPCheckbox = "RoR2/DLC3/SolusHeart/GridslamGAPCheckbox.asset"; } public static class GAPRandomTargetPlayer { public static string RandomAndTargetPlayerGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/RandomAndTargetPlayer_GAP.asset"; } public static class GAPSweep { public static string SweepGAP = "RoR2/DLC3/SolusHeart/PhasesAndCombos/Sweep_GAP.asset"; } public static class SolusHeartTeleportSkillDef { public static string SolusHeartSkillDefBitClear = "RoR2/DLC3/SolusHeart/SolusHeartSkillDefBitClear.asset"; public static string SolusHeartSkillDefDDOS = "RoR2/DLC3/SolusHeart/SolusHeartSkillDefDDOS.asset"; public static string SolusHeartSkillDefTerrainShift = "RoR2/DLC3/SolusHeart/SolusHeartSkillDefTerrainShift.asset"; public static string SolusHeartSkillDefUnderclock = "RoR2/DLC3/SolusHeart/SolusHeartSkillDefUnderclock.asset"; } public static class SolusWingLaserGridSkillDef { public static string SolusWingUtilityLaserGridGlitched = "RoR2/DLC3/SolusWing/SolusWing Utility Laser Grid Glitched.asset"; public static string SolusWingUtilityLaserGrid = "RoR2/DLC3/SolusWing/SolusWing Utility Laser Grid.asset"; } public static class CraftableDef { public static string cdAlienHead = "RoR2/DLC3/Recipes/cdAlienHead.asset"; public static string cdAttackSpeedOnCrit = "RoR2/DLC3/Recipes/cdAttackSpeedOnCrit.asset"; public static string cdBarrierOnKill = "RoR2/DLC3/Recipes/cdBarrierOnKill.asset"; public static string cdBeetleGland = "RoR2/DLC3/Recipes/cdBeetleGland.asset"; public static string cdBleedOnHitAndExplode = "RoR2/DLC3/Recipes/cdBleedOnHitAndExplode.asset"; public static string cdBonusGoldPackOnKill = "RoR2/DLC3/Recipes/cdBonusGoldPackOnKill.asset"; public static string cdBounceNearby = "RoR2/DLC3/Recipes/cdBounceNearby.asset"; public static string cdCleanse = "RoR2/DLC3/Recipes/cdCleanse.asset"; public static string cdCommandMissile = "RoR2/DLC3/Recipes/cdCommandMissile.asset"; public static string cdCritGlasses = "RoR2/DLC3/Recipes/cdCritGlasses.asset"; public static string cdExecuteLowHealthElite = "RoR2/DLC3/Recipes/cdExecuteLowHealthElite.asset"; public static string cdExplodeOnDeath = "RoR2/DLC3/Recipes/cdExplodeOnDeath.asset"; public static string cdExtraLife = "RoR2/DLC3/Recipes/cdExtraLife.asset"; public static string cdFallBoots = "RoR2/DLC3/Recipes/cdFallBoots.asset"; public static string cdFireBallDash = "RoR2/DLC3/Recipes/cdFireBallDash.asset"; public static string cdFireballsOnHit = "RoR2/DLC3/Recipes/cdFireballsOnHit.asset"; public static string cdFireRing = "RoR2/DLC3/Recipes/cdFireRing.asset"; public static string cdFlatHealth = "RoR2/DLC3/Recipes/cdFlatHealth.asset"; public static string cdHealOnCrit = "RoR2/DLC3/Recipes/cdHealOnCrit.asset"; public static string cdHoof = "RoR2/DLC3/Recipes/cdHoof.asset"; public static string cdIceRing = "RoR2/DLC3/Recipes/cdIceRing.asset"; public static string cdIncreaseHealing = "RoR2/DLC3/Recipes/cdIncreaseHealing.asset"; public static string cdKillEliteFrenzy = "RoR2/DLC3/Recipes/cdKillEliteFrenzy.asset"; public static string cdKnurl = "RoR2/DLC3/Recipes/cdKnurl.asset"; public static string cdLightningStrikeOnHit = "RoR2/DLC3/Recipes/cdLightningStrikeOnHit.asset"; public static string cdMissile = "RoR2/DLC3/Recipes/cdMissile.asset"; public static string cdMushroom = "RoR2/DLC3/Recipes/cdMushroom.asset"; public static string cdNovaOnLowHealth = "RoR2/DLC3/Recipes/cdNovaOnLowHealth.asset"; public static string cdParentEgg = "RoR2/DLC3/Recipes/cdParentEgg.asset"; public static string cdPersonalShield = "RoR2/DLC3/Recipes/cdPersonalShield.asset"; public static string cdRecycle = "RoR2/DLC3/Recipes/cdRecycle.asset"; public static string cdRoboballBuddy = "RoR2/DLC3/Recipes/cdRoboballBuddy.asset"; public static string cdSaw = "RoR2/DLC3/Recipes/cdSaw.asset"; public static string cdScrapGreen = "RoR2/DLC3/Recipes/cdScrapGreen.asset"; public static string cdScrapRed = "RoR2/DLC3/Recipes/cdScrapRed.asset"; public static string cdScrapWhite = "RoR2/DLC3/Recipes/cdScrapWhite.asset"; public static string cdShockNearby = "RoR2/DLC3/Recipes/cdShockNearby.asset"; public static string cdSiphonNearby = "RoR2/DLC3/Recipes/cdSiphonNearby.asset"; public static string cdSprintOutOfCombat = "RoR2/DLC3/Recipes/cdSprintOutOfCombat.asset"; public static string cdSprintWisp = "RoR2/DLC3/Recipes/cdSprintWisp.asset"; public static string cdTitanGoldDuringTP = "RoR2/DLC3/Recipes/cdTitanGoldDuringTP.asset"; public static string cdUtilitySkillMagazine = "RoR2/DLC3/Recipes/cdUtilitySkillMagazine.asset"; public static string cdBossHunter = "RoR2/DLC3/Recipes/cdBossHunter.asset"; public static string cdCritDamage = "RoR2/DLC3/Recipes/cdCritDamage.asset"; public static string cdDroneWeapons = "RoR2/DLC3/Recipes/cdDroneWeapons.asset"; public static string cdFragileDamageBonus = "RoR2/DLC3/Recipes/cdFragileDamageBonus.asset"; public static string cdFreeChest = "RoR2/DLC3/Recipes/cdFreeChest.asset"; public static string cdHealthPotion = "RoR2/DLC3/Recipes/cdHealthPotion.asset"; public static string cdMinorConstructOnKill = "RoR2/DLC3/Recipes/cdMinorConstructOnKill.asset"; public static string cdMolotov = "RoR2/DLC3/Recipes/cdMolotov.asset"; public static string cdMoreMissile = "RoR2/DLC3/Recipes/cdMoreMissile.asset"; public static string cdMultiShopCard = "RoR2/DLC3/Recipes/cdMultiShopCard.asset"; public static string cdRegeneratingScrap = "RoR2/DLC3/Recipes/cdRegeneratingScrap.asset"; public static string cdStrengthenBurn = "RoR2/DLC3/Recipes/cdStrengthenBurn.asset"; public static string cdBoostAllStats = "RoR2/DLC3/Recipes/cdBoostAllStats.asset"; public static string cdHealAndRevive = "RoR2/DLC3/Recipes/cdHealAndRevive.asset"; public static string cdItemDropChanceOnKill = "RoR2/DLC3/Recipes/cdItemDropChanceOnKill.asset"; public static string cdKnockbackHitEnemies = "RoR2/DLC3/Recipes/cdKnockbackHitEnemies.asset"; public static string cdLowerPricedChests = "RoR2/DLC3/Recipes/cdLowerPricedChests.asset"; public static string cdMeteorAttackOnHighDamage = "RoR2/DLC3/Recipes/cdMeteorAttackOnHighDamage.asset"; public static string cdStunAndPierce = "RoR2/DLC3/Recipes/cdStunAndPierce.asset"; public static string cdTeleportOnLowHealth = "RoR2/DLC3/Recipes/cdTeleportOnLowHealth.asset"; public static string cdTriggerEnemyDebuffs = "RoR2/DLC3/Recipes/cdTriggerEnemyDebuffs.asset"; public static string cdBonusHealthBoost = "RoR2/DLC3/Recipes/cdBonusHealthBoost.asset"; public static string cdCookedSteak = "RoR2/DLC3/Recipes/cdCookedSteak.asset"; public static string cdDronesDropDynamite = "RoR2/DLC3/Recipes/cdDronesDropDynamite.asset"; public static string cdEliteCollectiveEquipment = "RoR2/DLC3/Recipes/cdEliteCollectiveEquipment.asset"; public static string cdJumpDamageStrike = "RoR2/DLC3/Recipes/cdJumpDamageStrike.asset"; public static string cdMasterCore = "RoR2/DLC3/Recipes/cdMasterCore.asset"; public static string cdShieldBooster = "RoR2/DLC3/Recipes/cdShieldBooster.asset"; public static string cdStew = "RoR2/DLC3/Recipes/cdStew.asset"; public static string cdUltimateMeal = "RoR2/DLC3/Recipes/cdUltimateMeal.asset"; public static string cdWyrmOnHit = "RoR2/DLC3/Recipes/cdWyrmOnHit.asset"; } public static class DroneScrapperDef { public static string Drone1ScrapperDef = "RoR2/DLC3/DroneScrapper/Drone1ScrapperDef.asset"; public static string Drone2ScrapperDef = "RoR2/DLC3/DroneScrapper/Drone2ScrapperDef.asset"; public static string DroneBombardmentScrapperDef = "RoR2/DLC3/DroneScrapper/DroneBombardmentScrapperDef.asset"; public static string DroneCleanupScrapperDef = "RoR2/DLC3/DroneScrapper/DroneCleanupScrapperDef.asset"; public static string DroneCopycatScrapperDef = "RoR2/DLC3/DroneScrapper/DroneCopycatScrapperDef.asset"; public static string DroneEmergencyScrapperDef = "RoR2/DLC3/DroneScrapper/DroneEmergencyScrapperDef.asset"; public static string DroneEquipmentScrapperDef = "RoR2/DLC3/DroneScrapper/DroneEquipmentScrapperDef.asset"; public static string DroneFlameScrapperDef = "RoR2/DLC3/DroneScrapper/DroneFlameScrapperDef.asset"; public static string DroneHaulerScrapperDef = "RoR2/DLC3/DroneScrapper/DroneHaulerScrapperDef.asset"; public static string DroneJailerScrapperDef = "RoR2/DLC3/DroneScrapper/DroneJailerScrapperDef.asset"; public static string DroneJunkScrapperDef = "RoR2/DLC3/DroneScrapper/DroneJunkScrapperDef.asset"; public static string DroneMegaScrapperDef = "RoR2/DLC3/DroneScrapper/DroneMegaScrapperDef.asset"; public static string DroneMissileScrapperDef = "RoR2/DLC3/DroneScrapper/DroneMissileScrapperDef.asset"; public static string DroneRechargeScrapperDef = "RoR2/DLC3/DroneScrapper/DroneRechargeScrapperDef.asset"; } public static class DroneScrapperDefTableType { public static string DroneScrapperDefTable = "RoR2/DLC3/DroneScrapper/DroneScrapperDefTable.asset"; } public static class DronePickupDef { public static string Drone2Pickup = "RoR2/DLC3/PickupDefs/Drone2Pickup.asset"; public static string DroneBackupPickup = "RoR2/DLC3/PickupDefs/DroneBackupPickup.asset"; public static string DroneBombardmentPickup = "RoR2/DLC3/PickupDefs/DroneBombardmentPickup.asset"; public static string DroneCleanupPickup = "RoR2/DLC3/PickupDefs/DroneCleanupPickup.asset"; public static string DroneCopycatPickup = "RoR2/DLC3/PickupDefs/DroneCopycatPickup.asset"; public static string DroneEmergencyPickup = "RoR2/DLC3/PickupDefs/DroneEmergencyPickup.asset"; public static string DroneEquipmentPickup = "RoR2/DLC3/PickupDefs/DroneEquipmentPickup.asset"; public static string DroneFlamePickup = "RoR2/DLC3/PickupDefs/DroneFlamePickup.asset"; public static string DroneHaulerPickup = "RoR2/DLC3/PickupDefs/DroneHaulerPickup.asset"; public static string DroneJailerPickup = "RoR2/DLC3/PickupDefs/DroneJailerPickup.asset"; public static string DroneJunkPickup = "RoR2/DLC3/PickupDefs/DroneJunkPickup.asset"; public static string DroneMegaPickup = "RoR2/DLC3/PickupDefs/DroneMegaPickup.asset"; public static string DroneMissilePickup = "RoR2/DLC3/PickupDefs/DroneMissilePickup.asset"; public static string DroneRechargePickup = "RoR2/DLC3/PickupDefs/DroneRechargePickup.asset"; } public static class ExplicitPickupDropTableWithCost { public static string GreenScrapDroneVendorTable = "RoR2/DLC3/GreenScrapDroneVendorTable.asset"; public static string RedScrapDroneVendorTable = "RoR2/DLC3/RedScrapDroneVendorTable.asset"; public static string WhiteScrapDroneVendorTable = "RoR2/DLC3/WhiteScrapDroneVendorTable.asset"; } public static class TripleDroneShopDropTableType { public static string TripleDroneShopDropTable = "RoR2/DLC3/TripleDroneShopDropTable.asset"; } public static class SignalAsset { public static string SolusHeartIntroTurnOnBossMusic = "RoR2/DLC3/solusweb/SolusHeartIntro_TurnOnBossMusic.signal"; public static string SolusHeartIntroTurnOnLava = "RoR2/DLC3/solusweb/SolusHeartIntro_TurnOnLava.signal"; public static string OpenSolusWebEscapePortal = "RoR2/DLC3/solusweb/OpenSolusWebEscapePortal.signal"; public static string StartOpeningHeaterPods = "RoR2/DLC3/solutionalhaunt/StartOpeningHeaterPods.signal"; } public static class VisualTreeAsset { public static string EditorWizardWindow = "RoR2/EditorWizardWindow.uxml"; public static string EditorWizardWindowExample = "RoR2/EditorWizardWindowExample.uxml"; public static string ItemDisplayRuleSetBulkAdder = "RoR2/ItemDisplayRuleSetBulkAdder.uxml"; public static string ModelSkinControllerEditor = "RoR2/ModelSkinControllerEditor.uxml"; public static string SkinDefEditor = "RoR2/SkinDefEditor.uxml"; public static string SkinDefParamsEditor = "RoR2/SkinDefParamsEditor.uxml"; public static string SkinOptimizationRepairWizard = "RoR2/SkinOptimizationRepairWizard.uxml"; public static string SkinOptimizerWizard = "RoR2/SkinOptimizerWizard.uxml"; public static string WWiseEventChecker = "RoR2/WWiseEventChecker.uxml"; } public static class StyleSheet { public static string GlobalDTStyle = "RoR2/GlobalDTStyle.uss"; public static string SkinOptimizerWizardStyle = "RoR2/SkinOptimizerWizard_Style.uss"; public static string SkinRepairToggle = "RoR2/SkinRepairToggle.uss"; } public static class EngiMineDeployerSkill { public static string ThrowMineDeployer = "RoR2/Junk/Engi/ThrowMineDeployer.asset"; } } namespace RainstormRefinery.Survivors { public class HealthCostMechanic { [CompilerGenerated] private static class <>O { public static Manipulator <0>__SkillHealthCostDamageProperties; } public static ModdedDamageType SkillHealthCost = DamageAPI.ReserveDamageType(); public static BuffDef shieldRegenDisabled; public HealthCostMechanic() { //IL_0011: Unknown result type (might be due to invalid IL or missing references) //IL_0058: Unknown result type (might be due to invalid IL or missing references) //IL_0062: Expected O, but got Unknown //IL_008a: Unknown result type (might be due to invalid IL or missing references) //IL_0094: Expected O, but got Unknown //IL_0040: Unknown result type (might be due to invalid IL or missing references) //IL_0045: Unknown result type (might be due to invalid IL or missing references) //IL_004b: Expected O, but got Unknown shieldRegenDisabled = SneedUtils.CreateBuffDef("bdShieldRegenDisabled ", canStack: false, isCooldown: false, isDebuff: false, isBuff: false, Color.blue, BuffDef.bdPermanentCurse.Load().iconSprite, isHidden: true); object obj = <>O.<0>__SkillHealthCostDamageProperties; if (obj == null) { Manipulator val = SkillHealthCostDamageProperties; <>O.<0>__SkillHealthCostDamageProperties = val; obj = (object)val; } HealthComponent.TakeDamageProcess += (Manipulator)obj; HealthComponent.ServerFixedUpdate += new Manipulator(TempDisableShields); SharedHooks.Handle_PostTakeDamageProcess_Actions = (SharedHooks.Handle_PostTakeDamageProcessEvent)Delegate.Combine(SharedHooks.Handle_PostTakeDamageProcess_Actions, new SharedHooks.Handle_PostTakeDamageProcessEvent(DisableShieldRegen)); CharacterBody.OnTakeDamageServer += new Manipulator(HealthCostsOutOfDanger); } private static void SkillHealthCostDamageProperties(ILContext il) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Expected O, but got Unknown //IL_0050: Unknown result type (might be due to invalid IL or missing references) //IL_00ca: Unknown result type (might be due to invalid IL or missing references) //IL_0141: Unknown result type (might be due to invalid IL or missing references) ILCursor val = new ILCursor(il); if (!val.TryGotoNext((MoveType)2, new Func[1] { (Instruction x) => ILPatternMatchingExt.MatchCgtUn(x) })) { Debug.LogError((object)"RainstormRefinery.Survivors.HealthCostMechanic: SkillHealthCostDamageProperties Hook failed - Match 1"); return; } val.Emit(OpCodes.Ldarg, 1); val.EmitDelegate>((Func)delegate(bool ignoreArmor, DamageInfo damageInfo) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) if (DamageAPI.HasModdedDamageType(ref damageInfo.damageType, SkillHealthCost)) { ignoreArmor = true; } return ignoreArmor; }); if (!val.TryGotoNext((MoveType)2, new Func[1] { (Instruction x) => ILPatternMatchingExt.MatchCgtUn(x) })) { Debug.LogError((object)"RainstormRefinery.Survivors.HealthCostMechanic: SkillHealthCostDamageProperties Hook failed - Match 2"); return; } val.Emit(OpCodes.Ldarg, 1); val.EmitDelegate>((Func)delegate(bool ignoreBlock, DamageInfo damageInfo) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) if (DamageAPI.HasModdedDamageType(ref damageInfo.damageType, SkillHealthCost) || DamageTypeCombo.op_Implicit(damageInfo.damageType & DamageTypeCombo.op_Implicit((DamageTypeExtended)134217728)) != 0) { ignoreBlock = true; } return ignoreBlock; }); if (!val.TryGotoNext((MoveType)2, new Func[1] { (Instruction x) => ILPatternMatchingExt.MatchCallOrCallvirt(x, "get_selectedDifficulty") })) { Debug.LogError((object)"RainstormRefinery.Survivors.HealthCostMechanic: SkillHealthCostDamageProperties Hook failed - Match 5"); return; } val.Emit(OpCodes.Ldarg, 1); val.EmitDelegate>((Func)delegate(int difficultyLevel, DamageInfo damageInfo) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) //IL_0014: Unknown result type (might be due to invalid IL or missing references) //IL_001e: Unknown result type (might be due to invalid IL or missing references) //IL_0023: Unknown result type (might be due to invalid IL or missing references) if (DamageAPI.HasModdedDamageType(ref damageInfo.damageType, SkillHealthCost) || DamageTypeCombo.op_Implicit(damageInfo.damageType & DamageTypeCombo.op_Implicit((DamageTypeExtended)134217728)) != 0) { difficultyLevel = 1; } return difficultyLevel; }); } private void TempDisableShields(ILContext il) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Expected O, but got Unknown //IL_004c: Unknown result type (might be due to invalid IL or missing references) ILCursor val = new ILCursor(il); if (!val.TryGotoNext((MoveType)2, new Func[1] { (Instruction x) => ILPatternMatchingExt.MatchCallOrCallvirt(x, "get_outOfDanger") })) { Debug.LogError((object)"RainstormRefinery.Survivors.HealthCostMechanic: TempDisableShields hook failed"); } val.Emit(OpCodes.Ldarg_0); val.EmitDelegate>((Func)delegate(bool outOfDanger, HealthComponent self) { if (outOfDanger && self.body.HasBuff(shieldRegenDisabled)) { outOfDanger = false; } return outOfDanger; }); } private void DisableShieldRegen(HealthComponent self, DamageInfo damageInfo, CharacterBody attackerBody) { //IL_0007: Unknown result type (might be due to invalid IL or missing references) if (DamageAPI.HasModdedDamageType(ref damageInfo.damageType, SkillHealthCost)) { self.body.AddTimedBuff(shieldRegenDisabled, 7f); } } private void HealthCostsOutOfDanger(ILContext il) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Expected O, but got Unknown //IL_004c: Unknown result type (might be due to invalid IL or missing references) ILCursor val = new ILCursor(il); if (!val.TryGotoNext((MoveType)2, new Func[1] { (Instruction x) => ILPatternMatchingExt.MatchLdfld(x, "delayedDamageSecondHalf") })) { Debug.LogError((object)"RainstormRefinery.Items.CommonTier.WarpedEcho: WarpedEchoShieldInteraction hook failed"); } val.Emit(OpCodes.Ldarg, 1); val.EmitDelegate>((Func)((bool dontEnterDanger, DamageReport damageReport) => dontEnterDanger || DamageAPI.HasModdedDamageType(ref damageReport.damageInfo.damageType, SkillHealthCost))); } } public class RemoveSelfProc { [Serializable] [CompilerGenerated] private sealed class <>c { public static readonly <>c <>9 = new <>c(); public static hook_ProcessHitEnemy <>9__0_0; internal void <.ctor>b__0_0(orig_ProcessHitEnemy orig, GlobalEventManager self, DamageInfo damageInfo, GameObject victim) { //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)damageInfo.attacker) && Object.op_Implicit((Object)(object)damageInfo.attacker.GetComponent()) && Object.op_Implicit((Object)(object)victim.GetComponent()) && damageInfo.attacker.GetComponent().teamComponent.teamIndex == victim.GetComponent().teamComponent.teamIndex) { damageInfo.procCoefficient = 0f; } orig.Invoke(self, damageInfo, victim); } } public RemoveSelfProc() { //IL_001c: Unknown result type (might be due to invalid IL or missing references) //IL_0021: Unknown result type (might be due to invalid IL or missing references) //IL_0027: Expected O, but got Unknown object obj = <>c.<>9__0_0; if (obj == null) { hook_ProcessHitEnemy val = delegate(orig_ProcessHitEnemy orig, GlobalEventManager self, DamageInfo damageInfo, GameObject victim) { //IL_0044: Unknown result type (might be due to invalid IL or missing references) //IL_0055: Unknown result type (might be due to invalid IL or missing references) if (Object.op_Implicit((Object)(object)damageInfo.attacker) && Object.op_Implicit((Object)(object)damageInfo.attacker.GetComponent()) && Object.op_Implicit((Object)(object)victim.GetComponent()) && damageInfo.attacker.GetComponent().teamComponent.teamIndex == victim.GetComponent().teamComponent.teamIndex) { damageInfo.procCoefficient = 0f; } orig.Invoke(self, damageInfo, victim); }; <>c.<>9__0_0 = val; obj = (object)val; } GlobalEventManager.ProcessHitEnemy += (hook_ProcessHitEnemy)obj; } } public class SurvivorsRefined { public static bool enabled = true; public SurvivorsRefined() { if (enabled) { new HealthCostMechanic(); new RemoveSelfProc(); new CommandoRefined(); new HuntressRefined(); new BanditRefined(); new MulTRefined(); new EngineerRefined(); new ArtificerRefined(); new MercenaryRefined(); new RexRefined(); new LoaderRefined(); new AcridRefined(); new CaptainRefined(); new HereticRefined(); new RailgunnerRefined(); new VoidFiendRefined(); new SeekerRefined(); new ChefRefined(); new FalseSonRefined(); } } } } namespace RainstormRefinery.Survivors.VoidFiend { public class CorruptionRework { [CompilerGenerated] private static class <>O { public static Manipulator <0>__CorruptedFormArmorReduction; public static Manipulator <1>__VoidItemCorruptionScaling; } public static bool enabled = true; public CorruptionRework() { //IL_002d: Unknown result type (might be due to invalid IL or missing references) //IL_0032: Unknown result type (might be due to invalid IL or missing references) //IL_0038: Expected O, but got Unknown //IL_0079: Unknown result type (might be due to invalid IL or missing references) //IL_007e: Unknown result type (might be due to invalid IL or missing references) //IL_0084: Expected O, but got Unknown SneedUtils.SetAddressableEntityStateField("RoR2/DLC1/VoidSurvivor/EntityStates.VoidSurvivor.EnterCorruptionTransition.asset", "duration", "0.4"); object obj = <>O.<0>__CorruptedFormArmorReduction; if (obj == null) { Manipulator val = CorruptedFormArmorReduction; <>O.<0>__CorruptedFormArmorReduction = val; obj = (object)val; } CharacterBody.RecalculateStats += (Manipulator)obj; if (enabled) { ((SkillDef)PassiveItemSkillDef.VoidSurvivorPassive.Load()).keywordTokens = new string[1] { "KEYWORD_VOIDCORRUPTION_REFINERY" }; object obj2 = <>O.<1>__VoidItemCorruptionScaling; if (obj2 == null) { Manipulator val2 = VoidItemCorruptionScaling; <>O.<1>__VoidItemCorruptionScaling = val2; obj2 = (object)val2; } VoidSurvivorController.FixedUpdate += (Manipulator)obj2; VoidSurvivorController component = GameObject.VoidSurvivorBody.Load().GetComponent(); component.minimumCorruptionPerVoidItem = 0f; component.corruptionForFullDamage = 0f; component.corruptionForFullHeal = 0f; component.corruptionPerCrit = 0f; } } private static void CorruptedFormArmorReduction(ILContext il) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Expected O, but got Unknown //IL_0090: Unknown result type (might be due to invalid IL or missing references) //IL_009c: Unknown result type (might be due to invalid IL or missing references) ILCursor val = new ILCursor(il); if (!val.TryGotoNext(new Func[1] { (Instruction x) => ILPatternMatchingExt.MatchLdsfld(x, typeof(Buffs).GetField("VoidSurvivorCorruptMode")) })) { Debug.LogError((object)"RainstormRefinery.Survivors.Viend.CorruptionChanges: CorruptedFormArmorReduction hook failed - Match 1"); return; } if (!val.TryGotoNext((MoveType)2, new Func[1] { (Instruction x) => ILPatternMatchingExt.MatchLdcR4(x, 100f) })) { Debug.LogError((object)"RainstormRefinery.Survivors.Viend.CorruptionChanges: CorruptedFormArmorReduction hook failed - Match 2"); return; } val.Emit(OpCodes.Pop); val.Emit(OpCodes.Ldc_R4, 30f); } private static void VoidItemCorruptionScaling(ILContext il) { //IL_0002: Unknown result type (might be due to invalid IL or missing references) //IL_0008: Expected O, but got Unknown //IL_004c: Unknown result type (might be due to invalid IL or missing references) ILCursor val = new ILCursor(il); if (!val.TryGotoNext(new Func[1] { (Instruction x) => ILPatternMatchingExt.MatchCallOrCallvirt