├── .gitignore ├── Asset Uncompressor ├── Asset Uncompressor.csproj └── Program.cs ├── Build ├── BepInEx │ ├── core │ │ └── XUnity.Common.dll │ └── plugins │ │ └── YGOTranslate.dll └── YGOTranslate │ ├── data.csv │ └── pwd-id-pair.csv ├── CDB Patch Helper ├── CDB Patch Helper.csproj ├── Card.cs ├── Converter.cs ├── Program.cs └── SqliteHelper.cs ├── README.md ├── YGO-Translate ├── Assembly-CSharp.dll ├── BepInExLoader.cs ├── CardActionMenuModify.cs ├── Data.cs ├── DebugHelper.cs ├── FontHelper.cs ├── InputHandleComponent.cs ├── Properties │ └── AssemblyInfo.cs ├── Translate.cs ├── YGOTranslate.csproj └── packages.config └── YGOTranslate.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/.gitignore -------------------------------------------------------------------------------- /Asset Uncompressor/Asset Uncompressor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/Asset Uncompressor/Asset Uncompressor.csproj -------------------------------------------------------------------------------- /Asset Uncompressor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/Asset Uncompressor/Program.cs -------------------------------------------------------------------------------- /Build/BepInEx/core/XUnity.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/Build/BepInEx/core/XUnity.Common.dll -------------------------------------------------------------------------------- /Build/BepInEx/plugins/YGOTranslate.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/Build/BepInEx/plugins/YGOTranslate.dll -------------------------------------------------------------------------------- /Build/YGOTranslate/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/Build/YGOTranslate/data.csv -------------------------------------------------------------------------------- /Build/YGOTranslate/pwd-id-pair.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/Build/YGOTranslate/pwd-id-pair.csv -------------------------------------------------------------------------------- /CDB Patch Helper/CDB Patch Helper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/CDB Patch Helper/CDB Patch Helper.csproj -------------------------------------------------------------------------------- /CDB Patch Helper/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/CDB Patch Helper/Card.cs -------------------------------------------------------------------------------- /CDB Patch Helper/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/CDB Patch Helper/Converter.cs -------------------------------------------------------------------------------- /CDB Patch Helper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/CDB Patch Helper/Program.cs -------------------------------------------------------------------------------- /CDB Patch Helper/SqliteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/CDB Patch Helper/SqliteHelper.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/README.md -------------------------------------------------------------------------------- /YGO-Translate/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/Assembly-CSharp.dll -------------------------------------------------------------------------------- /YGO-Translate/BepInExLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/BepInExLoader.cs -------------------------------------------------------------------------------- /YGO-Translate/CardActionMenuModify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/CardActionMenuModify.cs -------------------------------------------------------------------------------- /YGO-Translate/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/Data.cs -------------------------------------------------------------------------------- /YGO-Translate/DebugHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/DebugHelper.cs -------------------------------------------------------------------------------- /YGO-Translate/FontHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/FontHelper.cs -------------------------------------------------------------------------------- /YGO-Translate/InputHandleComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/InputHandleComponent.cs -------------------------------------------------------------------------------- /YGO-Translate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /YGO-Translate/Translate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/Translate.cs -------------------------------------------------------------------------------- /YGO-Translate/YGOTranslate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/YGOTranslate.csproj -------------------------------------------------------------------------------- /YGO-Translate/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGO-Translate/packages.config -------------------------------------------------------------------------------- /YGOTranslate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacKooDesu/YGO-Translate/HEAD/YGOTranslate.sln --------------------------------------------------------------------------------