├── .gitattributes ├── .gitignore ├── App.config ├── CopyPlugins.Designer.cs ├── CopyPlugins.cs ├── CopyPlugins.resx ├── IL.cs ├── LICENSE ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── MyAssemblyResolver.cs ├── PluginLoader.FNA ├── PluginLoader.FNA.csproj └── Properties │ └── AssemblyInfo.cs ├── PluginLoader.XNA ├── Hotkey.cs ├── IPlugin.cs ├── IniAPI.cs ├── Loader.cs ├── PluginLoader.XNA.csproj ├── Properties │ └── AssemblyInfo.cs └── Utils.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── ReferenceAssemblies ├── Terraria.Libraries.ReLogic.ReLogic.dll └── Terraria.exe ├── Terraria.cs ├── Terraria.ico ├── TerrariaPatcher.csproj ├── TerrariaPatcher.public.zip ├── TerrariaPatcher.sln ├── TerrariaPatcher.zip ├── TranscendPlugins ├── Bind.cs ├── BuffImmunity.cs ├── BuffRates.cs ├── CoinGun.cs ├── DropRates.cs ├── EnhancedCellPhone.cs ├── Events.cs ├── FastSplash.cs ├── Flashlight.cs ├── FullBright.cs ├── GodMode.cs ├── HomingBullets.cs ├── InfiniteFlight.cs ├── InfiniteLifeSteal.cs ├── InfiniteSundial.cs ├── ItemConfig.cs ├── ItemPrefix.cs ├── ItemReplication.cs ├── ItemSpawner.cs ├── LoadoutSwap.cs ├── Minions.cs ├── MoreAccessorySlots.cs ├── NPC.cs ├── PortableCraftingGuide.cs ├── Properties │ └── AssemblyInfo.cs ├── Respawn.cs ├── Reveal.cs ├── SavePosition.cs ├── Season.cs ├── Shared │ ├── Extensions │ │ └── ItemTooltipExtensions.cs │ └── UI │ │ └── Button.cs ├── ShopSellsScalingPotions.cs ├── Teleport.cs ├── Time.cs ├── TranscendPlugins.csproj ├── TranscendPlugins.csproj.DotSettings ├── Turrets.cs ├── UseTime.cs ├── Weather.cs └── app.config ├── app.manifest ├── changelog.tmp.txt ├── changelog.txt └── sed.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/App.config -------------------------------------------------------------------------------- /CopyPlugins.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/CopyPlugins.Designer.cs -------------------------------------------------------------------------------- /CopyPlugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/CopyPlugins.cs -------------------------------------------------------------------------------- /CopyPlugins.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/CopyPlugins.resx -------------------------------------------------------------------------------- /IL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/IL.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Main.Designer.cs -------------------------------------------------------------------------------- /Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Main.cs -------------------------------------------------------------------------------- /Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Main.resx -------------------------------------------------------------------------------- /MyAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/MyAssemblyResolver.cs -------------------------------------------------------------------------------- /PluginLoader.FNA/PluginLoader.FNA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/PluginLoader.FNA/PluginLoader.FNA.csproj -------------------------------------------------------------------------------- /PluginLoader.FNA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/PluginLoader.FNA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PluginLoader.XNA/Hotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/PluginLoader.XNA/Hotkey.cs -------------------------------------------------------------------------------- /PluginLoader.XNA/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/PluginLoader.XNA/IPlugin.cs -------------------------------------------------------------------------------- /PluginLoader.XNA/IniAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/PluginLoader.XNA/IniAPI.cs -------------------------------------------------------------------------------- /PluginLoader.XNA/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/PluginLoader.XNA/Loader.cs -------------------------------------------------------------------------------- /PluginLoader.XNA/PluginLoader.XNA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/PluginLoader.XNA/PluginLoader.XNA.csproj -------------------------------------------------------------------------------- /PluginLoader.XNA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/PluginLoader.XNA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PluginLoader.XNA/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/PluginLoader.XNA/Utils.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/README.md -------------------------------------------------------------------------------- /ReferenceAssemblies/Terraria.Libraries.ReLogic.ReLogic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/ReferenceAssemblies/Terraria.Libraries.ReLogic.ReLogic.dll -------------------------------------------------------------------------------- /ReferenceAssemblies/Terraria.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/ReferenceAssemblies/Terraria.exe -------------------------------------------------------------------------------- /Terraria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Terraria.cs -------------------------------------------------------------------------------- /Terraria.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/Terraria.ico -------------------------------------------------------------------------------- /TerrariaPatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TerrariaPatcher.csproj -------------------------------------------------------------------------------- /TerrariaPatcher.public.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TerrariaPatcher.public.zip -------------------------------------------------------------------------------- /TerrariaPatcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TerrariaPatcher.sln -------------------------------------------------------------------------------- /TerrariaPatcher.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TerrariaPatcher.zip -------------------------------------------------------------------------------- /TranscendPlugins/Bind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Bind.cs -------------------------------------------------------------------------------- /TranscendPlugins/BuffImmunity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/BuffImmunity.cs -------------------------------------------------------------------------------- /TranscendPlugins/BuffRates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/BuffRates.cs -------------------------------------------------------------------------------- /TranscendPlugins/CoinGun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/CoinGun.cs -------------------------------------------------------------------------------- /TranscendPlugins/DropRates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/DropRates.cs -------------------------------------------------------------------------------- /TranscendPlugins/EnhancedCellPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/EnhancedCellPhone.cs -------------------------------------------------------------------------------- /TranscendPlugins/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Events.cs -------------------------------------------------------------------------------- /TranscendPlugins/FastSplash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/FastSplash.cs -------------------------------------------------------------------------------- /TranscendPlugins/Flashlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Flashlight.cs -------------------------------------------------------------------------------- /TranscendPlugins/FullBright.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/FullBright.cs -------------------------------------------------------------------------------- /TranscendPlugins/GodMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/GodMode.cs -------------------------------------------------------------------------------- /TranscendPlugins/HomingBullets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/HomingBullets.cs -------------------------------------------------------------------------------- /TranscendPlugins/InfiniteFlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/InfiniteFlight.cs -------------------------------------------------------------------------------- /TranscendPlugins/InfiniteLifeSteal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/InfiniteLifeSteal.cs -------------------------------------------------------------------------------- /TranscendPlugins/InfiniteSundial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/InfiniteSundial.cs -------------------------------------------------------------------------------- /TranscendPlugins/ItemConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/ItemConfig.cs -------------------------------------------------------------------------------- /TranscendPlugins/ItemPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/ItemPrefix.cs -------------------------------------------------------------------------------- /TranscendPlugins/ItemReplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/ItemReplication.cs -------------------------------------------------------------------------------- /TranscendPlugins/ItemSpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/ItemSpawner.cs -------------------------------------------------------------------------------- /TranscendPlugins/LoadoutSwap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/LoadoutSwap.cs -------------------------------------------------------------------------------- /TranscendPlugins/Minions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Minions.cs -------------------------------------------------------------------------------- /TranscendPlugins/MoreAccessorySlots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/MoreAccessorySlots.cs -------------------------------------------------------------------------------- /TranscendPlugins/NPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/NPC.cs -------------------------------------------------------------------------------- /TranscendPlugins/PortableCraftingGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/PortableCraftingGuide.cs -------------------------------------------------------------------------------- /TranscendPlugins/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TranscendPlugins/Respawn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Respawn.cs -------------------------------------------------------------------------------- /TranscendPlugins/Reveal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Reveal.cs -------------------------------------------------------------------------------- /TranscendPlugins/SavePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/SavePosition.cs -------------------------------------------------------------------------------- /TranscendPlugins/Season.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Season.cs -------------------------------------------------------------------------------- /TranscendPlugins/Shared/Extensions/ItemTooltipExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Shared/Extensions/ItemTooltipExtensions.cs -------------------------------------------------------------------------------- /TranscendPlugins/Shared/UI/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Shared/UI/Button.cs -------------------------------------------------------------------------------- /TranscendPlugins/ShopSellsScalingPotions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/ShopSellsScalingPotions.cs -------------------------------------------------------------------------------- /TranscendPlugins/Teleport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Teleport.cs -------------------------------------------------------------------------------- /TranscendPlugins/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Time.cs -------------------------------------------------------------------------------- /TranscendPlugins/TranscendPlugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/TranscendPlugins.csproj -------------------------------------------------------------------------------- /TranscendPlugins/TranscendPlugins.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/TranscendPlugins.csproj.DotSettings -------------------------------------------------------------------------------- /TranscendPlugins/Turrets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Turrets.cs -------------------------------------------------------------------------------- /TranscendPlugins/UseTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/UseTime.cs -------------------------------------------------------------------------------- /TranscendPlugins/Weather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/Weather.cs -------------------------------------------------------------------------------- /TranscendPlugins/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/TranscendPlugins/app.config -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/app.manifest -------------------------------------------------------------------------------- /changelog.tmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/changelog.tmp.txt -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/changelog.txt -------------------------------------------------------------------------------- /sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougbenham/TerrariaPatcher/HEAD/sed.exe --------------------------------------------------------------------------------