├── .gitattributes ├── .gitignore ├── AlchemistNPCLite.cs ├── AlchemistNPCLite.csproj ├── AlchemistNPCLite.sln ├── AlchemistNPCLitePlayer.cs ├── AlchemistNPCLiteWorld.cs ├── Buffs ├── AlchemistNPCLiteGlobalBuff.cs ├── BattleComb.cs ├── BattleComb.png ├── Blurring.cs ├── Blurring.png ├── BuffTemplate.png ├── BuilderComb.cs ├── BuilderComb.png ├── CalamityComb.cs ├── CalamityComb.png ├── Corrosion.cs ├── Corrosion.png ├── DebuffTemplate.png ├── DiscordBuff.cs ├── DiscordBuff.png ├── Excavation.cs ├── Excavation.png ├── ExplorerComb.cs ├── ExplorerComb.png ├── FishingComb.cs ├── FishingComb.png ├── Fortitude.cs ├── Fortitude.png ├── GreaterDangersense.cs ├── GreaterDangersense.png ├── ImbueBuffTemplate.png ├── LongInvincible.cs ├── LongInvincible.png ├── MageComb.cs ├── MageComb.png ├── MorePotionsComb.cs ├── MorePotionsComb.png ├── NinjaSkill.cs ├── NinjaSkill.png ├── RangerComb.cs ├── RangerComb.png ├── SpiritComb.cs ├── SpiritComb.png ├── StationUltimaBuff.cs ├── StationUltimaBuff.png ├── SummonerComb.cs ├── SummonerComb.png ├── Sunshine.cs ├── Sunshine.png ├── TankComb.cs ├── TankComb.png ├── ThoriumComb.cs ├── ThoriumComb.png ├── TitanSkin.cs ├── TitanSkin.png ├── TrapsBuff.cs ├── TrapsBuff.png ├── TrueDiscordBuff.cs ├── TrueDiscordBuff.png ├── UniversalComb.cs ├── UniversalComb.png ├── VanTankComb.cs └── VanTankComb.png ├── Dusts ├── AlchFlask.cs └── AlchFlask.png ├── Interface ├── ButtonBack.png ├── ShopChangeUI.cs ├── ShopChangeUIA.cs ├── ShopChangeUIM.cs └── ShopChangeUIO.cs ├── Items ├── AlchemistGlobalItem.cs ├── BattleCombination.cs ├── BattleCombination.png ├── BeachTeleporterPotion.cs ├── BeachTeleporterPotion.png ├── BewitchingPotion.cs ├── BewitchingPotion.png ├── BlurringPotion.cs ├── BlurringPotion.png ├── BuilderCombination.cs ├── BuilderCombination.png ├── CalamityCombination.cs ├── CalamityCombination.png ├── DiscordPotion.cs ├── DiscordPotion.png ├── Dopamine.cs ├── Dopamine.png ├── DungeonTeleportationPotion.cs ├── DungeonTeleportationPotion.png ├── ExcavationPotion.cs ├── ExcavationPotion.png ├── ExplorerCombination.cs ├── ExplorerCombination.png ├── FishingCombination.cs ├── FishingCombination.png ├── FortitudePotion.cs ├── FortitudePotion.png ├── GreaterDangersensePotion.cs ├── GreaterDangersensePotion.png ├── HeartAttackPotion.cs ├── HeartAttackPotion.png ├── InvincibilityPotion.cs ├── InvincibilityPotion.png ├── JungleTeleporterPotion.cs ├── JungleTeleporterPotion.png ├── MageCombination.cs ├── MageCombination.png ├── Misc │ ├── AlchemistCharmTier1.cs │ ├── AlchemistCharmTier1.png │ ├── AlchemistCharmTier2.cs │ ├── AlchemistCharmTier2.png │ ├── AlchemistCharmTier3.cs │ ├── AlchemistCharmTier3.png │ ├── AlchemistCharmTier4.cs │ ├── AlchemistCharmTier4.png │ ├── GlobalTeleporter.cs │ ├── GlobalTeleporter.png │ ├── GlobalTeleporterUp.cs │ ├── GlobalTeleporterUp.png │ ├── LuckCharm.cs │ ├── LuckCharm.png │ ├── LuckCharmT2.cs │ ├── LuckCharmT2.png │ ├── WorldControlUnit.cs │ └── WorldControlUnit.png ├── MorePotionsCombination.cs ├── MorePotionsCombination.png ├── NatureBlessingPotion.cs ├── NatureBlessingPotion.png ├── NinjaPotion.cs ├── NinjaPotion.png ├── Notes │ ├── InformatingNote.cs │ └── InformatingNote.png ├── OceanTeleporterPotion.cs ├── OceanTeleporterPotion.png ├── PerfectDiscordPotion.cs ├── PerfectDiscordPotion.png ├── Placeable │ ├── HMCraftPound.cs │ ├── HMCraftPound.png │ ├── MateriaTransmutator.cs │ ├── MateriaTransmutator.png │ ├── MateriaTransmutatorMK2.cs │ ├── MateriaTransmutatorMK2.png │ ├── PreHMPenny.cs │ ├── PreHMPenny.png │ ├── SpecCraftPoint.cs │ └── SpecCraftPoint.png ├── RangerCombination.cs ├── RangerCombination.png ├── SpiritCombination.cs ├── SpiritCombination.png ├── SummonerCombination.cs ├── SummonerCombination.png ├── Summoning │ ├── APMC.cs │ ├── APMC.png │ ├── AlchemistHorcrux.cs │ ├── AlchemistHorcrux.png │ ├── ArchitectHorcrux.cs │ ├── ArchitectHorcrux.png │ ├── BrewerHorcrux.cs │ ├── BrewerHorcrux.png │ ├── HorrifyingSkull.cs │ ├── HorrifyingSkull.png │ ├── JewelerHorcrux.cs │ ├── JewelerHorcrux.png │ ├── MusicianHorcrux.cs │ ├── MusicianHorcrux.png │ ├── TinkererHorcrux.cs │ └── TinkererHorcrux.png ├── SunshinePotion.cs ├── SunshinePotion.png ├── TankCombination.cs ├── TankCombination.png ├── TeleportClass.cs ├── TempleTeleportationPotion.cs ├── TempleTeleportationPotion.png ├── ThoriumCombination.cs ├── ThoriumCombination.png ├── TitanSkinPotion.cs ├── TitanSkinPotion.png ├── TrapsPotion.cs ├── TrapsPotion.png ├── UltimaCake.cs ├── UltimaCake.png ├── UnderworldTeleportationPotion.cs ├── UnderworldTeleportationPotion.png ├── UniversalCombination.cs ├── UniversalCombination.png ├── UniversalCombinationOld.png ├── VanTankCombination.cs └── VanTankCombination.png ├── Localization ├── de-DE.hjson ├── en-US.hjson ├── pt-BR.hjson ├── ru-RU.hjson └── zh-Hans.hjson ├── ModConfig.cs ├── NPCs ├── Alchemist.cs ├── Alchemist.png ├── Alchemist_Head.png ├── Architect.cs ├── Architect.png ├── Architect_Head.png ├── Brewer.cs ├── Brewer.png ├── Brewer_Head.png ├── Jeweler.cs ├── Jeweler.png ├── Jeweler_Head.png ├── ModGlobalNPC.cs ├── Musician.cs ├── Musician.png ├── Musician_Head.png ├── Operator.cs ├── Operator.png ├── Operator_Head.png ├── Tinkerer.cs ├── Tinkerer.png ├── Tinkerer_Head.png ├── YoungBrewer.cs ├── YoungBrewer.png └── YoungBrewer_Head.png ├── Projectiles ├── AlchemistGlobalProjectile.cs ├── CorrosiveFlask.cs ├── CorrosiveFlask.png ├── CorrosiveFlaskCloud.cs ├── CorrosiveFlaskCloud.png ├── Gemstone.cs ├── Gemstone.png ├── LocatorProjectile.cs ├── LocatorProjectile.png └── LocatorProjectileAlt.png ├── Properties └── launchSettings.json ├── README.md ├── StarPrice.cs ├── Tiles ├── AlchemistGlobalTiles.cs ├── HMCraftPound.cs ├── HMCraftPound.png ├── MateriaTransmutator.cs ├── MateriaTransmutator.png ├── MateriaTransmutatorMK2.cs ├── MateriaTransmutatorMK2.png ├── PreHMPenny.cs ├── PreHMPenny.png ├── SpecCraftPoint.cs └── SpecCraftPoint.png ├── Utilities └── AlchemistHelper.cs ├── bin └── Debug │ └── net8.0 │ ├── AlchemistNPCLite.deps.json │ ├── AlchemistNPCLite.dll │ ├── AlchemistNPCLite.pdb │ ├── Basic.Reference.Assemblies.Net80.dll │ ├── CsvHelper.dll │ ├── DotNetZip.dll │ ├── DotNetZip.pdb │ ├── DotNetZip.xml │ ├── FNA.dll │ ├── FNA.pdb │ ├── Hjson.dll │ ├── Hjson.xml │ ├── Humanizer.dll │ ├── MP3Sharp.dll │ ├── Microsoft.Build.Framework.dll │ ├── Microsoft.Build.Framework.pdb │ ├── Microsoft.Build.Framework.xml │ ├── Microsoft.Build.Locator.dll │ ├── Microsoft.Build.Tasks.Core.dll │ ├── Microsoft.Build.Tasks.Core.pdb │ ├── Microsoft.Build.Tasks.Core.xml │ ├── Microsoft.Build.Utilities.Core.dll │ ├── Microsoft.Build.Utilities.Core.pdb │ ├── Microsoft.Build.Utilities.Core.xml │ ├── Microsoft.Build.dll │ ├── Microsoft.Build.pdb │ ├── Microsoft.Build.xml │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.pdb │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.xml │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.CSharp.pdb │ ├── Microsoft.CodeAnalysis.CSharp.xml │ ├── Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll │ ├── Microsoft.CodeAnalysis.FlowAnalysis.Utilities.dll │ ├── Microsoft.CodeAnalysis.FlowAnalysis.Utilities.xml │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.xml │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ ├── Microsoft.CodeAnalysis.Workspaces.pdb │ ├── Microsoft.CodeAnalysis.Workspaces.xml │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.CodeAnalysis.pdb │ ├── Microsoft.CodeAnalysis.xml │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.DependencyInjection.xml │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.Abstractions.xml │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.Logging.xml │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Options.xml │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Extensions.Primitives.xml │ ├── Microsoft.NET.StringTools.dll │ ├── Microsoft.NET.StringTools.pdb │ ├── Microsoft.NET.StringTools.xml │ ├── Microsoft.VisualStudio.Setup.Configuration.Interop.dll │ ├── Microsoft.VisualStudio.Setup.Configuration.Interop.xml │ ├── Mono.Cecil.Mdb.dll │ ├── Mono.Cecil.Mdb.pdb │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Pdb.pdb │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.Rocks.pdb │ ├── Mono.Cecil.dll │ ├── Mono.Cecil.pdb │ ├── MonoMod.Backports.dll │ ├── MonoMod.Backports.pdb │ ├── MonoMod.Backports.xml │ ├── MonoMod.Core.dll │ ├── MonoMod.Core.pdb │ ├── MonoMod.Core.xml │ ├── MonoMod.ILHelpers.dll │ ├── MonoMod.ILHelpers.pdb │ ├── MonoMod.Iced.dll │ ├── MonoMod.Iced.pdb │ ├── MonoMod.Iced.xml │ ├── MonoMod.RuntimeDetour.dll │ ├── MonoMod.RuntimeDetour.pdb │ ├── MonoMod.RuntimeDetour.xml │ ├── MonoMod.Utils.dll │ ├── MonoMod.Utils.pdb │ ├── MonoMod.Utils.xml │ ├── NVorbis.dll │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.xml │ ├── RailSDK.Net.dll │ ├── ReLogic.dll │ ├── ReLogic.pdb │ ├── ReLogic.xml │ ├── Redemption.dll │ ├── Redemption.pdb │ ├── ShardsOfAtheria_v1.0.dll │ ├── Steamworks.NET.dll │ ├── SteelSeriesEngineWrapper.dll │ ├── Stubble.Core.dll │ ├── Stubble.Core.pdb │ ├── Stubble.Core.xml │ ├── System.CodeDom.dll │ ├── System.CodeDom.xml │ ├── System.CommandLine.dll │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.AttributedModel.xml │ ├── System.Composition.Convention.dll │ ├── System.Composition.Convention.xml │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Hosting.xml │ ├── System.Composition.Runtime.dll │ ├── System.Composition.Runtime.xml │ ├── System.Composition.TypedParts.dll │ ├── System.Composition.TypedParts.xml │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Configuration.ConfigurationManager.xml │ ├── System.Diagnostics.EventLog.dll │ ├── System.Diagnostics.EventLog.xml │ ├── System.IO.Pipelines.dll │ ├── System.IO.Pipelines.xml │ ├── System.Reflection.MetadataLoadContext.dll │ ├── System.Reflection.MetadataLoadContext.xml │ ├── System.Resources.Extensions.dll │ ├── System.Resources.Extensions.xml │ ├── System.Security.Cryptography.Pkcs.dll │ ├── System.Security.Cryptography.Pkcs.xml │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── System.Security.Cryptography.ProtectedData.xml │ ├── System.Security.Cryptography.Xml.dll │ ├── System.Security.Cryptography.Xml.xml │ ├── System.Security.Permissions.dll │ ├── System.Security.Permissions.xml │ ├── System.Text.Json.dll │ ├── System.Windows.Extensions.dll │ ├── System.Windows.Extensions.xml │ ├── TerrariaHooks.dll │ ├── UtfUnknown.dll │ ├── UtfUnknown.xml │ ├── cs │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── de │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── es │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── fr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── it │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── ja │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── ko │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── log4net.dll │ ├── pl │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── pt-BR │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── ru │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── tModLoader.dll │ ├── tModLoader.pdb │ ├── tModLoader.xml │ ├── tModPorter.dll │ ├── tModPorter.pdb │ ├── tr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ ├── zh-Hans │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll │ └── zh-Hant │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.resources.dll │ └── System.CommandLine.resources.dll ├── description.txt ├── icon.png ├── icon_small.png ├── icon_workshop.png └── workshop.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/.gitignore -------------------------------------------------------------------------------- /AlchemistNPCLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/AlchemistNPCLite.cs -------------------------------------------------------------------------------- /AlchemistNPCLite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/AlchemistNPCLite.csproj -------------------------------------------------------------------------------- /AlchemistNPCLite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/AlchemistNPCLite.sln -------------------------------------------------------------------------------- /AlchemistNPCLitePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/AlchemistNPCLitePlayer.cs -------------------------------------------------------------------------------- /AlchemistNPCLiteWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/AlchemistNPCLiteWorld.cs -------------------------------------------------------------------------------- /Buffs/AlchemistNPCLiteGlobalBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/AlchemistNPCLiteGlobalBuff.cs -------------------------------------------------------------------------------- /Buffs/BattleComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/BattleComb.cs -------------------------------------------------------------------------------- /Buffs/BattleComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/BattleComb.png -------------------------------------------------------------------------------- /Buffs/Blurring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Blurring.cs -------------------------------------------------------------------------------- /Buffs/Blurring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Blurring.png -------------------------------------------------------------------------------- /Buffs/BuffTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/BuffTemplate.png -------------------------------------------------------------------------------- /Buffs/BuilderComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/BuilderComb.cs -------------------------------------------------------------------------------- /Buffs/BuilderComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/BuilderComb.png -------------------------------------------------------------------------------- /Buffs/CalamityComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/CalamityComb.cs -------------------------------------------------------------------------------- /Buffs/CalamityComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/CalamityComb.png -------------------------------------------------------------------------------- /Buffs/Corrosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Corrosion.cs -------------------------------------------------------------------------------- /Buffs/Corrosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Corrosion.png -------------------------------------------------------------------------------- /Buffs/DebuffTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/DebuffTemplate.png -------------------------------------------------------------------------------- /Buffs/DiscordBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/DiscordBuff.cs -------------------------------------------------------------------------------- /Buffs/DiscordBuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/DiscordBuff.png -------------------------------------------------------------------------------- /Buffs/Excavation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Excavation.cs -------------------------------------------------------------------------------- /Buffs/Excavation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Excavation.png -------------------------------------------------------------------------------- /Buffs/ExplorerComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/ExplorerComb.cs -------------------------------------------------------------------------------- /Buffs/ExplorerComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/ExplorerComb.png -------------------------------------------------------------------------------- /Buffs/FishingComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/FishingComb.cs -------------------------------------------------------------------------------- /Buffs/FishingComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/FishingComb.png -------------------------------------------------------------------------------- /Buffs/Fortitude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Fortitude.cs -------------------------------------------------------------------------------- /Buffs/Fortitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Fortitude.png -------------------------------------------------------------------------------- /Buffs/GreaterDangersense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/GreaterDangersense.cs -------------------------------------------------------------------------------- /Buffs/GreaterDangersense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/GreaterDangersense.png -------------------------------------------------------------------------------- /Buffs/ImbueBuffTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/ImbueBuffTemplate.png -------------------------------------------------------------------------------- /Buffs/LongInvincible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/LongInvincible.cs -------------------------------------------------------------------------------- /Buffs/LongInvincible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/LongInvincible.png -------------------------------------------------------------------------------- /Buffs/MageComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/MageComb.cs -------------------------------------------------------------------------------- /Buffs/MageComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/MageComb.png -------------------------------------------------------------------------------- /Buffs/MorePotionsComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/MorePotionsComb.cs -------------------------------------------------------------------------------- /Buffs/MorePotionsComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/MorePotionsComb.png -------------------------------------------------------------------------------- /Buffs/NinjaSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/NinjaSkill.cs -------------------------------------------------------------------------------- /Buffs/NinjaSkill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/NinjaSkill.png -------------------------------------------------------------------------------- /Buffs/RangerComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/RangerComb.cs -------------------------------------------------------------------------------- /Buffs/RangerComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/RangerComb.png -------------------------------------------------------------------------------- /Buffs/SpiritComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/SpiritComb.cs -------------------------------------------------------------------------------- /Buffs/SpiritComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/SpiritComb.png -------------------------------------------------------------------------------- /Buffs/StationUltimaBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/StationUltimaBuff.cs -------------------------------------------------------------------------------- /Buffs/StationUltimaBuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/StationUltimaBuff.png -------------------------------------------------------------------------------- /Buffs/SummonerComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/SummonerComb.cs -------------------------------------------------------------------------------- /Buffs/SummonerComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/SummonerComb.png -------------------------------------------------------------------------------- /Buffs/Sunshine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Sunshine.cs -------------------------------------------------------------------------------- /Buffs/Sunshine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/Sunshine.png -------------------------------------------------------------------------------- /Buffs/TankComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/TankComb.cs -------------------------------------------------------------------------------- /Buffs/TankComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/TankComb.png -------------------------------------------------------------------------------- /Buffs/ThoriumComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/ThoriumComb.cs -------------------------------------------------------------------------------- /Buffs/ThoriumComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/ThoriumComb.png -------------------------------------------------------------------------------- /Buffs/TitanSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/TitanSkin.cs -------------------------------------------------------------------------------- /Buffs/TitanSkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/TitanSkin.png -------------------------------------------------------------------------------- /Buffs/TrapsBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/TrapsBuff.cs -------------------------------------------------------------------------------- /Buffs/TrapsBuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/TrapsBuff.png -------------------------------------------------------------------------------- /Buffs/TrueDiscordBuff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/TrueDiscordBuff.cs -------------------------------------------------------------------------------- /Buffs/TrueDiscordBuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/TrueDiscordBuff.png -------------------------------------------------------------------------------- /Buffs/UniversalComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/UniversalComb.cs -------------------------------------------------------------------------------- /Buffs/UniversalComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/UniversalComb.png -------------------------------------------------------------------------------- /Buffs/VanTankComb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/VanTankComb.cs -------------------------------------------------------------------------------- /Buffs/VanTankComb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Buffs/VanTankComb.png -------------------------------------------------------------------------------- /Dusts/AlchFlask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Dusts/AlchFlask.cs -------------------------------------------------------------------------------- /Dusts/AlchFlask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Dusts/AlchFlask.png -------------------------------------------------------------------------------- /Interface/ButtonBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Interface/ButtonBack.png -------------------------------------------------------------------------------- /Interface/ShopChangeUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Interface/ShopChangeUI.cs -------------------------------------------------------------------------------- /Interface/ShopChangeUIA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Interface/ShopChangeUIA.cs -------------------------------------------------------------------------------- /Interface/ShopChangeUIM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Interface/ShopChangeUIM.cs -------------------------------------------------------------------------------- /Interface/ShopChangeUIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Interface/ShopChangeUIO.cs -------------------------------------------------------------------------------- /Items/AlchemistGlobalItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/AlchemistGlobalItem.cs -------------------------------------------------------------------------------- /Items/BattleCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BattleCombination.cs -------------------------------------------------------------------------------- /Items/BattleCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BattleCombination.png -------------------------------------------------------------------------------- /Items/BeachTeleporterPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BeachTeleporterPotion.cs -------------------------------------------------------------------------------- /Items/BeachTeleporterPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BeachTeleporterPotion.png -------------------------------------------------------------------------------- /Items/BewitchingPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BewitchingPotion.cs -------------------------------------------------------------------------------- /Items/BewitchingPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BewitchingPotion.png -------------------------------------------------------------------------------- /Items/BlurringPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BlurringPotion.cs -------------------------------------------------------------------------------- /Items/BlurringPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BlurringPotion.png -------------------------------------------------------------------------------- /Items/BuilderCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BuilderCombination.cs -------------------------------------------------------------------------------- /Items/BuilderCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/BuilderCombination.png -------------------------------------------------------------------------------- /Items/CalamityCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/CalamityCombination.cs -------------------------------------------------------------------------------- /Items/CalamityCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/CalamityCombination.png -------------------------------------------------------------------------------- /Items/DiscordPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/DiscordPotion.cs -------------------------------------------------------------------------------- /Items/DiscordPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/DiscordPotion.png -------------------------------------------------------------------------------- /Items/Dopamine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Dopamine.cs -------------------------------------------------------------------------------- /Items/Dopamine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Dopamine.png -------------------------------------------------------------------------------- /Items/DungeonTeleportationPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/DungeonTeleportationPotion.cs -------------------------------------------------------------------------------- /Items/DungeonTeleportationPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/DungeonTeleportationPotion.png -------------------------------------------------------------------------------- /Items/ExcavationPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/ExcavationPotion.cs -------------------------------------------------------------------------------- /Items/ExcavationPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/ExcavationPotion.png -------------------------------------------------------------------------------- /Items/ExplorerCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/ExplorerCombination.cs -------------------------------------------------------------------------------- /Items/ExplorerCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/ExplorerCombination.png -------------------------------------------------------------------------------- /Items/FishingCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/FishingCombination.cs -------------------------------------------------------------------------------- /Items/FishingCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/FishingCombination.png -------------------------------------------------------------------------------- /Items/FortitudePotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/FortitudePotion.cs -------------------------------------------------------------------------------- /Items/FortitudePotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/FortitudePotion.png -------------------------------------------------------------------------------- /Items/GreaterDangersensePotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/GreaterDangersensePotion.cs -------------------------------------------------------------------------------- /Items/GreaterDangersensePotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/GreaterDangersensePotion.png -------------------------------------------------------------------------------- /Items/HeartAttackPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/HeartAttackPotion.cs -------------------------------------------------------------------------------- /Items/HeartAttackPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/HeartAttackPotion.png -------------------------------------------------------------------------------- /Items/InvincibilityPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/InvincibilityPotion.cs -------------------------------------------------------------------------------- /Items/InvincibilityPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/InvincibilityPotion.png -------------------------------------------------------------------------------- /Items/JungleTeleporterPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/JungleTeleporterPotion.cs -------------------------------------------------------------------------------- /Items/JungleTeleporterPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/JungleTeleporterPotion.png -------------------------------------------------------------------------------- /Items/MageCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/MageCombination.cs -------------------------------------------------------------------------------- /Items/MageCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/MageCombination.png -------------------------------------------------------------------------------- /Items/Misc/AlchemistCharmTier1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/AlchemistCharmTier1.cs -------------------------------------------------------------------------------- /Items/Misc/AlchemistCharmTier1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/AlchemistCharmTier1.png -------------------------------------------------------------------------------- /Items/Misc/AlchemistCharmTier2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/AlchemistCharmTier2.cs -------------------------------------------------------------------------------- /Items/Misc/AlchemistCharmTier2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/AlchemistCharmTier2.png -------------------------------------------------------------------------------- /Items/Misc/AlchemistCharmTier3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/AlchemistCharmTier3.cs -------------------------------------------------------------------------------- /Items/Misc/AlchemistCharmTier3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/AlchemistCharmTier3.png -------------------------------------------------------------------------------- /Items/Misc/AlchemistCharmTier4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/AlchemistCharmTier4.cs -------------------------------------------------------------------------------- /Items/Misc/AlchemistCharmTier4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/AlchemistCharmTier4.png -------------------------------------------------------------------------------- /Items/Misc/GlobalTeleporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/GlobalTeleporter.cs -------------------------------------------------------------------------------- /Items/Misc/GlobalTeleporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/GlobalTeleporter.png -------------------------------------------------------------------------------- /Items/Misc/GlobalTeleporterUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/GlobalTeleporterUp.cs -------------------------------------------------------------------------------- /Items/Misc/GlobalTeleporterUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/GlobalTeleporterUp.png -------------------------------------------------------------------------------- /Items/Misc/LuckCharm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/LuckCharm.cs -------------------------------------------------------------------------------- /Items/Misc/LuckCharm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/LuckCharm.png -------------------------------------------------------------------------------- /Items/Misc/LuckCharmT2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/LuckCharmT2.cs -------------------------------------------------------------------------------- /Items/Misc/LuckCharmT2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/LuckCharmT2.png -------------------------------------------------------------------------------- /Items/Misc/WorldControlUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/WorldControlUnit.cs -------------------------------------------------------------------------------- /Items/Misc/WorldControlUnit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Misc/WorldControlUnit.png -------------------------------------------------------------------------------- /Items/MorePotionsCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/MorePotionsCombination.cs -------------------------------------------------------------------------------- /Items/MorePotionsCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/MorePotionsCombination.png -------------------------------------------------------------------------------- /Items/NatureBlessingPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/NatureBlessingPotion.cs -------------------------------------------------------------------------------- /Items/NatureBlessingPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/NatureBlessingPotion.png -------------------------------------------------------------------------------- /Items/NinjaPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/NinjaPotion.cs -------------------------------------------------------------------------------- /Items/NinjaPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/NinjaPotion.png -------------------------------------------------------------------------------- /Items/Notes/InformatingNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Notes/InformatingNote.cs -------------------------------------------------------------------------------- /Items/Notes/InformatingNote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Notes/InformatingNote.png -------------------------------------------------------------------------------- /Items/OceanTeleporterPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/OceanTeleporterPotion.cs -------------------------------------------------------------------------------- /Items/OceanTeleporterPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/OceanTeleporterPotion.png -------------------------------------------------------------------------------- /Items/PerfectDiscordPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/PerfectDiscordPotion.cs -------------------------------------------------------------------------------- /Items/PerfectDiscordPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/PerfectDiscordPotion.png -------------------------------------------------------------------------------- /Items/Placeable/HMCraftPound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/HMCraftPound.cs -------------------------------------------------------------------------------- /Items/Placeable/HMCraftPound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/HMCraftPound.png -------------------------------------------------------------------------------- /Items/Placeable/MateriaTransmutator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/MateriaTransmutator.cs -------------------------------------------------------------------------------- /Items/Placeable/MateriaTransmutator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/MateriaTransmutator.png -------------------------------------------------------------------------------- /Items/Placeable/MateriaTransmutatorMK2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/MateriaTransmutatorMK2.cs -------------------------------------------------------------------------------- /Items/Placeable/MateriaTransmutatorMK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/MateriaTransmutatorMK2.png -------------------------------------------------------------------------------- /Items/Placeable/PreHMPenny.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/PreHMPenny.cs -------------------------------------------------------------------------------- /Items/Placeable/PreHMPenny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/PreHMPenny.png -------------------------------------------------------------------------------- /Items/Placeable/SpecCraftPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/SpecCraftPoint.cs -------------------------------------------------------------------------------- /Items/Placeable/SpecCraftPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Placeable/SpecCraftPoint.png -------------------------------------------------------------------------------- /Items/RangerCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/RangerCombination.cs -------------------------------------------------------------------------------- /Items/RangerCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/RangerCombination.png -------------------------------------------------------------------------------- /Items/SpiritCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/SpiritCombination.cs -------------------------------------------------------------------------------- /Items/SpiritCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/SpiritCombination.png -------------------------------------------------------------------------------- /Items/SummonerCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/SummonerCombination.cs -------------------------------------------------------------------------------- /Items/SummonerCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/SummonerCombination.png -------------------------------------------------------------------------------- /Items/Summoning/APMC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/APMC.cs -------------------------------------------------------------------------------- /Items/Summoning/APMC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/APMC.png -------------------------------------------------------------------------------- /Items/Summoning/AlchemistHorcrux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/AlchemistHorcrux.cs -------------------------------------------------------------------------------- /Items/Summoning/AlchemistHorcrux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/AlchemistHorcrux.png -------------------------------------------------------------------------------- /Items/Summoning/ArchitectHorcrux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/ArchitectHorcrux.cs -------------------------------------------------------------------------------- /Items/Summoning/ArchitectHorcrux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/ArchitectHorcrux.png -------------------------------------------------------------------------------- /Items/Summoning/BrewerHorcrux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/BrewerHorcrux.cs -------------------------------------------------------------------------------- /Items/Summoning/BrewerHorcrux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/BrewerHorcrux.png -------------------------------------------------------------------------------- /Items/Summoning/HorrifyingSkull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/HorrifyingSkull.cs -------------------------------------------------------------------------------- /Items/Summoning/HorrifyingSkull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/HorrifyingSkull.png -------------------------------------------------------------------------------- /Items/Summoning/JewelerHorcrux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/JewelerHorcrux.cs -------------------------------------------------------------------------------- /Items/Summoning/JewelerHorcrux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/JewelerHorcrux.png -------------------------------------------------------------------------------- /Items/Summoning/MusicianHorcrux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/MusicianHorcrux.cs -------------------------------------------------------------------------------- /Items/Summoning/MusicianHorcrux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/MusicianHorcrux.png -------------------------------------------------------------------------------- /Items/Summoning/TinkererHorcrux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/TinkererHorcrux.cs -------------------------------------------------------------------------------- /Items/Summoning/TinkererHorcrux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/Summoning/TinkererHorcrux.png -------------------------------------------------------------------------------- /Items/SunshinePotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/SunshinePotion.cs -------------------------------------------------------------------------------- /Items/SunshinePotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/SunshinePotion.png -------------------------------------------------------------------------------- /Items/TankCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/TankCombination.cs -------------------------------------------------------------------------------- /Items/TankCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/TankCombination.png -------------------------------------------------------------------------------- /Items/TeleportClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/TeleportClass.cs -------------------------------------------------------------------------------- /Items/TempleTeleportationPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/TempleTeleportationPotion.cs -------------------------------------------------------------------------------- /Items/TempleTeleportationPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/TempleTeleportationPotion.png -------------------------------------------------------------------------------- /Items/ThoriumCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/ThoriumCombination.cs -------------------------------------------------------------------------------- /Items/ThoriumCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/ThoriumCombination.png -------------------------------------------------------------------------------- /Items/TitanSkinPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/TitanSkinPotion.cs -------------------------------------------------------------------------------- /Items/TitanSkinPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/TitanSkinPotion.png -------------------------------------------------------------------------------- /Items/TrapsPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/TrapsPotion.cs -------------------------------------------------------------------------------- /Items/TrapsPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/TrapsPotion.png -------------------------------------------------------------------------------- /Items/UltimaCake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/UltimaCake.cs -------------------------------------------------------------------------------- /Items/UltimaCake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/UltimaCake.png -------------------------------------------------------------------------------- /Items/UnderworldTeleportationPotion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/UnderworldTeleportationPotion.cs -------------------------------------------------------------------------------- /Items/UnderworldTeleportationPotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/UnderworldTeleportationPotion.png -------------------------------------------------------------------------------- /Items/UniversalCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/UniversalCombination.cs -------------------------------------------------------------------------------- /Items/UniversalCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/UniversalCombination.png -------------------------------------------------------------------------------- /Items/UniversalCombinationOld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/UniversalCombinationOld.png -------------------------------------------------------------------------------- /Items/VanTankCombination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/VanTankCombination.cs -------------------------------------------------------------------------------- /Items/VanTankCombination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Items/VanTankCombination.png -------------------------------------------------------------------------------- /Localization/de-DE.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Localization/de-DE.hjson -------------------------------------------------------------------------------- /Localization/en-US.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Localization/en-US.hjson -------------------------------------------------------------------------------- /Localization/pt-BR.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Localization/pt-BR.hjson -------------------------------------------------------------------------------- /Localization/ru-RU.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Localization/ru-RU.hjson -------------------------------------------------------------------------------- /Localization/zh-Hans.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Localization/zh-Hans.hjson -------------------------------------------------------------------------------- /ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/ModConfig.cs -------------------------------------------------------------------------------- /NPCs/Alchemist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Alchemist.cs -------------------------------------------------------------------------------- /NPCs/Alchemist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Alchemist.png -------------------------------------------------------------------------------- /NPCs/Alchemist_Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Alchemist_Head.png -------------------------------------------------------------------------------- /NPCs/Architect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Architect.cs -------------------------------------------------------------------------------- /NPCs/Architect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Architect.png -------------------------------------------------------------------------------- /NPCs/Architect_Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Architect_Head.png -------------------------------------------------------------------------------- /NPCs/Brewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Brewer.cs -------------------------------------------------------------------------------- /NPCs/Brewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Brewer.png -------------------------------------------------------------------------------- /NPCs/Brewer_Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Brewer_Head.png -------------------------------------------------------------------------------- /NPCs/Jeweler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Jeweler.cs -------------------------------------------------------------------------------- /NPCs/Jeweler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Jeweler.png -------------------------------------------------------------------------------- /NPCs/Jeweler_Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Jeweler_Head.png -------------------------------------------------------------------------------- /NPCs/ModGlobalNPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/ModGlobalNPC.cs -------------------------------------------------------------------------------- /NPCs/Musician.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Musician.cs -------------------------------------------------------------------------------- /NPCs/Musician.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Musician.png -------------------------------------------------------------------------------- /NPCs/Musician_Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Musician_Head.png -------------------------------------------------------------------------------- /NPCs/Operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Operator.cs -------------------------------------------------------------------------------- /NPCs/Operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Operator.png -------------------------------------------------------------------------------- /NPCs/Operator_Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Operator_Head.png -------------------------------------------------------------------------------- /NPCs/Tinkerer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Tinkerer.cs -------------------------------------------------------------------------------- /NPCs/Tinkerer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Tinkerer.png -------------------------------------------------------------------------------- /NPCs/Tinkerer_Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/Tinkerer_Head.png -------------------------------------------------------------------------------- /NPCs/YoungBrewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/YoungBrewer.cs -------------------------------------------------------------------------------- /NPCs/YoungBrewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/YoungBrewer.png -------------------------------------------------------------------------------- /NPCs/YoungBrewer_Head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/NPCs/YoungBrewer_Head.png -------------------------------------------------------------------------------- /Projectiles/AlchemistGlobalProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/AlchemistGlobalProjectile.cs -------------------------------------------------------------------------------- /Projectiles/CorrosiveFlask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/CorrosiveFlask.cs -------------------------------------------------------------------------------- /Projectiles/CorrosiveFlask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/CorrosiveFlask.png -------------------------------------------------------------------------------- /Projectiles/CorrosiveFlaskCloud.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/CorrosiveFlaskCloud.cs -------------------------------------------------------------------------------- /Projectiles/CorrosiveFlaskCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/CorrosiveFlaskCloud.png -------------------------------------------------------------------------------- /Projectiles/Gemstone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/Gemstone.cs -------------------------------------------------------------------------------- /Projectiles/Gemstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/Gemstone.png -------------------------------------------------------------------------------- /Projectiles/LocatorProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/LocatorProjectile.cs -------------------------------------------------------------------------------- /Projectiles/LocatorProjectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/LocatorProjectile.png -------------------------------------------------------------------------------- /Projectiles/LocatorProjectileAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Projectiles/LocatorProjectileAlt.png -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/README.md -------------------------------------------------------------------------------- /StarPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/StarPrice.cs -------------------------------------------------------------------------------- /Tiles/AlchemistGlobalTiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/AlchemistGlobalTiles.cs -------------------------------------------------------------------------------- /Tiles/HMCraftPound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/HMCraftPound.cs -------------------------------------------------------------------------------- /Tiles/HMCraftPound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/HMCraftPound.png -------------------------------------------------------------------------------- /Tiles/MateriaTransmutator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/MateriaTransmutator.cs -------------------------------------------------------------------------------- /Tiles/MateriaTransmutator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/MateriaTransmutator.png -------------------------------------------------------------------------------- /Tiles/MateriaTransmutatorMK2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/MateriaTransmutatorMK2.cs -------------------------------------------------------------------------------- /Tiles/MateriaTransmutatorMK2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/MateriaTransmutatorMK2.png -------------------------------------------------------------------------------- /Tiles/PreHMPenny.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/PreHMPenny.cs -------------------------------------------------------------------------------- /Tiles/PreHMPenny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/PreHMPenny.png -------------------------------------------------------------------------------- /Tiles/SpecCraftPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/SpecCraftPoint.cs -------------------------------------------------------------------------------- /Tiles/SpecCraftPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Tiles/SpecCraftPoint.png -------------------------------------------------------------------------------- /Utilities/AlchemistHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/Utilities/AlchemistHelper.cs -------------------------------------------------------------------------------- /bin/Debug/net8.0/AlchemistNPCLite.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/AlchemistNPCLite.deps.json -------------------------------------------------------------------------------- /bin/Debug/net8.0/AlchemistNPCLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/AlchemistNPCLite.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/AlchemistNPCLite.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/AlchemistNPCLite.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Basic.Reference.Assemblies.Net80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Basic.Reference.Assemblies.Net80.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/CsvHelper.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/DotNetZip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/DotNetZip.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/DotNetZip.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/DotNetZip.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/DotNetZip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/DotNetZip.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/FNA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/FNA.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/FNA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/FNA.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Hjson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Hjson.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Hjson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Hjson.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Humanizer.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/MP3Sharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MP3Sharp.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Framework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Framework.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Framework.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Locator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Locator.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Tasks.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Tasks.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Tasks.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Tasks.Core.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Tasks.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Tasks.Core.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Utilities.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Utilities.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Utilities.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Utilities.Core.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.Utilities.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.Utilities.Core.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Build.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.FlowAnalysis.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.FlowAnalysis.Utilities.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.FlowAnalysis.Utilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.FlowAnalysis.Utilities.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.CodeAnalysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.CodeAnalysis.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.Logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.Logging.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.Options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.Options.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.Extensions.Primitives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.Extensions.Primitives.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.NET.StringTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.NET.StringTools.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.NET.StringTools.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.NET.StringTools.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.NET.StringTools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.NET.StringTools.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.VisualStudio.Setup.Configuration.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.VisualStudio.Setup.Configuration.Interop.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Microsoft.VisualStudio.Setup.Configuration.Interop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Microsoft.VisualStudio.Setup.Configuration.Interop.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Mono.Cecil.Mdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Mono.Cecil.Mdb.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Mono.Cecil.Pdb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Mono.Cecil.Pdb.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Mono.Cecil.Rocks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Mono.Cecil.Rocks.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Mono.Cecil.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Mono.Cecil.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Mono.Cecil.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Backports.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Backports.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Backports.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Backports.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Backports.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Backports.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Core.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Core.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.ILHelpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.ILHelpers.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.ILHelpers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.ILHelpers.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Iced.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Iced.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Iced.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Iced.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Iced.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Iced.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.RuntimeDetour.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.RuntimeDetour.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.RuntimeDetour.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.RuntimeDetour.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.RuntimeDetour.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.RuntimeDetour.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Utils.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Utils.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Utils.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/MonoMod.Utils.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/MonoMod.Utils.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/NVorbis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/NVorbis.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/RailSDK.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/RailSDK.Net.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ReLogic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ReLogic.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ReLogic.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ReLogic.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/ReLogic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ReLogic.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/Redemption.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Redemption.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Redemption.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Redemption.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/ShardsOfAtheria_v1.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ShardsOfAtheria_v1.0.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Steamworks.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Steamworks.NET.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/SteelSeriesEngineWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/SteelSeriesEngineWrapper.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Stubble.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Stubble.Core.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/Stubble.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Stubble.Core.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/Stubble.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/Stubble.Core.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.CodeDom.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.CodeDom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.CodeDom.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.CommandLine.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.AttributedModel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.AttributedModel.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.Convention.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.Convention.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.Hosting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.Hosting.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.Runtime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.Runtime.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Composition.TypedParts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Composition.TypedParts.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Configuration.ConfigurationManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Configuration.ConfigurationManager.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Diagnostics.EventLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Diagnostics.EventLog.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Diagnostics.EventLog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Diagnostics.EventLog.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.IO.Pipelines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.IO.Pipelines.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Reflection.MetadataLoadContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Reflection.MetadataLoadContext.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Reflection.MetadataLoadContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Reflection.MetadataLoadContext.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Resources.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Resources.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Resources.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Resources.Extensions.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Security.Cryptography.Pkcs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Security.Cryptography.Pkcs.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Security.Cryptography.Pkcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Security.Cryptography.Pkcs.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Security.Cryptography.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Security.Cryptography.Xml.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Security.Cryptography.Xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Security.Cryptography.Xml.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Security.Permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Security.Permissions.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Text.Json.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/System.Windows.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/System.Windows.Extensions.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/TerrariaHooks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/TerrariaHooks.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/UtfUnknown.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/UtfUnknown.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/UtfUnknown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/UtfUnknown.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/cs/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/cs/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/de/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/de/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/es/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/es/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/fr/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/fr/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/it/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/it/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ja/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ja/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ko/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ko/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/log4net.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pl/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pl/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/pt-BR/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/pt-BR/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/ru/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/ru/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/tModLoader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tModLoader.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/tModLoader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tModLoader.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/tModLoader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tModLoader.xml -------------------------------------------------------------------------------- /bin/Debug/net8.0/tModPorter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tModPorter.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/tModPorter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tModPorter.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/tr/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/tr/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hans/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hans/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/zh-Hant/System.CommandLine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/bin/Debug/net8.0/zh-Hant/System.CommandLine.resources.dll -------------------------------------------------------------------------------- /description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/description.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/icon.png -------------------------------------------------------------------------------- /icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/icon_small.png -------------------------------------------------------------------------------- /icon_workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/icon_workshop.png -------------------------------------------------------------------------------- /workshop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VVV101/AlchemistNPCLite/HEAD/workshop.json --------------------------------------------------------------------------------