├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── DALTools ├── DALLib │ ├── Compression │ │ └── LZ77Compression.cs │ ├── DALLib.csproj │ ├── Exceptions │ │ ├── InvalidFileFormatException.cs │ │ ├── InvalidTextureFormatException.cs │ │ ├── STSCDisassembleException.cs │ │ └── SignatureMismatchException.cs │ ├── File │ │ ├── FNTFile.cs │ │ ├── FileBase.cs │ │ ├── FontFile.cs │ │ ├── MAFile.cs │ │ ├── PCKFile.cs │ │ ├── STSC2File.cs │ │ ├── STSCFile.cs │ │ ├── STSCFileDatabase.Reader.cs │ │ ├── STSCFileDatabase.Writer.cs │ │ ├── STSCFileDatabase.cs │ │ ├── TEXFile.cs │ │ └── TableFile.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── IO │ │ ├── ExtendedBinary.cs │ │ ├── StreamTools.cs │ │ └── VirtualStream.cs │ ├── Imaging │ │ ├── ImageTools.cs │ │ └── TEXConverter.cs │ ├── ImportExport │ │ ├── TranslationBase.cs │ │ ├── TranslationCSVFile.cs │ │ ├── TranslationPOFile.cs │ │ ├── TranslationSTSCHandler.cs │ │ └── TranslationTSVFile.cs │ ├── Misc │ │ ├── Attributes.cs │ │ ├── GameID.cs │ │ └── StringProcessor.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripting │ │ ├── STSC2Commands.DALRD.cs │ │ ├── STSC2Commands.cs │ │ ├── STSC2Node.cs │ │ ├── STSC2Sequence.cs │ │ ├── STSCInstructions.DALRR.cs │ │ ├── STSCInstructions.PBB.cs │ │ ├── STSCInstructions.cs │ │ └── STSCMacros.cs │ └── packages.config ├── DALTools.sln ├── FontEditor │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── FontEditor.csproj │ ├── ImageTools.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── icon.ico │ └── res │ │ ├── IMG_FRAME_C.png │ │ ├── IMG_FRAME_M.png │ │ ├── IMG_FRAME_MM.png │ │ └── icon.ico ├── PCKTool │ ├── App.config │ ├── PCKTool.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── STSCTool │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── STSCTextHandler.cs │ └── STSCTool.csproj ├── ScriptDatabaseEditor │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Config.cs │ ├── Consts.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Game.cs │ ├── GameLanguage.cs │ ├── ImageTools.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ScriptDatabaseEditor.csproj │ ├── Steam.cs │ ├── UI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── ExceptionWindow.xaml │ │ ├── ExceptionWindow.xaml.cs │ │ ├── NumericUpDown.xaml │ │ ├── NumericUpDown.xaml.cs │ │ ├── OptionsWindow.xaml │ │ ├── OptionsWindow.xaml.cs │ │ ├── PCKFileSelectorWindow.xaml │ │ ├── PCKFileSelectorWindow.xaml.cs │ │ ├── PropertyEditorArtBook.xaml │ │ ├── PropertyEditorArtBook.xaml.cs │ │ ├── PropertyEditorCharacter.xaml │ │ ├── PropertyEditorCharacter.xaml.cs │ │ ├── PropertyEditorDramaCD.xaml │ │ ├── PropertyEditorDramaCD.xaml.cs │ │ ├── PropertyEditorMemory.xaml │ │ ├── PropertyEditorMemory.xaml.cs │ │ ├── PropertyEditorMovie.xaml │ │ ├── PropertyEditorMovie.xaml.cs │ │ ├── PropertyEditorSystemText.xaml │ │ ├── PropertyEditorSystemText.xaml.cs │ │ ├── PropertyEditorVoiceName.xaml │ │ └── PropertyEditorVoiceName.xaml.cs │ ├── icon.ico │ ├── packages.config │ └── res │ │ ├── IMG_FRAME_C.png │ │ ├── IMG_FRAME_M.png │ │ ├── IMG_FRAME_MM.png │ │ └── icon.ico ├── ScriptDialogueEditor │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── CharaEntry.cs │ ├── Config.cs │ ├── DALRRLivePreview.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Game.cs │ ├── GameLanguage.cs │ ├── ImportExport │ │ └── TranslationXLSXFile.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── ProcessMemory.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── STSC2FileDialogue.cs │ ├── STSCFileDialogue.cs │ ├── ScriptDialogueEditor.csproj │ ├── ScriptVersion.cs │ ├── Steam.cs │ ├── UI │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ ├── Converters.cs │ │ ├── ExceptionWindow.xaml │ │ ├── ExceptionWindow.xaml.cs │ │ ├── LivePreviewWarningWindow.xaml │ │ ├── LivePreviewWarningWindow.xaml.cs │ │ ├── PropertyEditorChoice.xaml │ │ ├── PropertyEditorChoice.xaml.cs │ │ ├── PropertyEditorMapPlace.xaml │ │ ├── PropertyEditorMapPlace.xaml.cs │ │ ├── PropertyEditorMsg.xaml │ │ └── PropertyEditorMsg.xaml.cs │ ├── icon.ico │ ├── packages.config │ └── res │ │ ├── IMG_FRAME_C.png │ │ ├── IMG_FRAME_M.png │ │ ├── IMG_FRAME_MM.png │ │ └── icon.ico ├── TEXTool │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TEXTool.csproj │ └── packages.config └── TableEditor │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TableEditor.csproj │ ├── UI │ ├── AboutWindow.xaml │ ├── AboutWindow.xaml.cs │ ├── ExceptionWindow.xaml │ └── ExceptionWindow.xaml.cs │ ├── icon.ico │ ├── packages.config │ └── res │ ├── IMG_FRAME_C.png │ ├── IMG_FRAME_M.png │ ├── IMG_FRAME_MM.png │ └── icon.ico ├── FUNCTIONS.md ├── Images ├── ScriptDatabaseEditor_Screenshot_00.png ├── ScriptDialogueEditor_Screenshot_00.png └── TableEditor_Screenshot_00.png ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/.gitmodules -------------------------------------------------------------------------------- /DALTools/DALLib/Compression/LZ77Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Compression/LZ77Compression.cs -------------------------------------------------------------------------------- /DALTools/DALLib/DALLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/DALLib.csproj -------------------------------------------------------------------------------- /DALTools/DALLib/Exceptions/InvalidFileFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Exceptions/InvalidFileFormatException.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Exceptions/InvalidTextureFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Exceptions/InvalidTextureFormatException.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Exceptions/STSCDisassembleException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Exceptions/STSCDisassembleException.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Exceptions/SignatureMismatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Exceptions/SignatureMismatchException.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/FNTFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/FNTFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/FileBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/FileBase.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/FontFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/FontFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/MAFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/MAFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/PCKFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/PCKFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/STSC2File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/STSC2File.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/STSCFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/STSCFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/STSCFileDatabase.Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/STSCFileDatabase.Reader.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/STSCFileDatabase.Writer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/STSCFileDatabase.Writer.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/STSCFileDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/STSCFileDatabase.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/TEXFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/TEXFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/File/TableFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/File/TableFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/FodyWeavers.xml -------------------------------------------------------------------------------- /DALTools/DALLib/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/FodyWeavers.xsd -------------------------------------------------------------------------------- /DALTools/DALLib/IO/ExtendedBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/IO/ExtendedBinary.cs -------------------------------------------------------------------------------- /DALTools/DALLib/IO/StreamTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/IO/StreamTools.cs -------------------------------------------------------------------------------- /DALTools/DALLib/IO/VirtualStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/IO/VirtualStream.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Imaging/ImageTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Imaging/ImageTools.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Imaging/TEXConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Imaging/TEXConverter.cs -------------------------------------------------------------------------------- /DALTools/DALLib/ImportExport/TranslationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/ImportExport/TranslationBase.cs -------------------------------------------------------------------------------- /DALTools/DALLib/ImportExport/TranslationCSVFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/ImportExport/TranslationCSVFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/ImportExport/TranslationPOFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/ImportExport/TranslationPOFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/ImportExport/TranslationSTSCHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/ImportExport/TranslationSTSCHandler.cs -------------------------------------------------------------------------------- /DALTools/DALLib/ImportExport/TranslationTSVFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/ImportExport/TranslationTSVFile.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Misc/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Misc/Attributes.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Misc/GameID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Misc/GameID.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Misc/StringProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Misc/StringProcessor.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Scripting/STSC2Commands.DALRD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Scripting/STSC2Commands.DALRD.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Scripting/STSC2Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Scripting/STSC2Commands.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Scripting/STSC2Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Scripting/STSC2Node.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Scripting/STSC2Sequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Scripting/STSC2Sequence.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Scripting/STSCInstructions.DALRR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Scripting/STSCInstructions.DALRR.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Scripting/STSCInstructions.PBB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Scripting/STSCInstructions.PBB.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Scripting/STSCInstructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Scripting/STSCInstructions.cs -------------------------------------------------------------------------------- /DALTools/DALLib/Scripting/STSCMacros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/Scripting/STSCMacros.cs -------------------------------------------------------------------------------- /DALTools/DALLib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALLib/packages.config -------------------------------------------------------------------------------- /DALTools/DALTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/DALTools.sln -------------------------------------------------------------------------------- /DALTools/FontEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/App.config -------------------------------------------------------------------------------- /DALTools/FontEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/App.xaml -------------------------------------------------------------------------------- /DALTools/FontEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/App.xaml.cs -------------------------------------------------------------------------------- /DALTools/FontEditor/FontEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/FontEditor.csproj -------------------------------------------------------------------------------- /DALTools/FontEditor/ImageTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/ImageTools.cs -------------------------------------------------------------------------------- /DALTools/FontEditor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/MainWindow.xaml -------------------------------------------------------------------------------- /DALTools/FontEditor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/FontEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DALTools/FontEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DALTools/FontEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /DALTools/FontEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DALTools/FontEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /DALTools/FontEditor/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/icon.ico -------------------------------------------------------------------------------- /DALTools/FontEditor/res/IMG_FRAME_C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/res/IMG_FRAME_C.png -------------------------------------------------------------------------------- /DALTools/FontEditor/res/IMG_FRAME_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/res/IMG_FRAME_M.png -------------------------------------------------------------------------------- /DALTools/FontEditor/res/IMG_FRAME_MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/res/IMG_FRAME_MM.png -------------------------------------------------------------------------------- /DALTools/FontEditor/res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/FontEditor/res/icon.ico -------------------------------------------------------------------------------- /DALTools/PCKTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/PCKTool/App.config -------------------------------------------------------------------------------- /DALTools/PCKTool/PCKTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/PCKTool/PCKTool.csproj -------------------------------------------------------------------------------- /DALTools/PCKTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/PCKTool/Program.cs -------------------------------------------------------------------------------- /DALTools/PCKTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/PCKTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DALTools/PCKTool/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/PCKTool/packages.config -------------------------------------------------------------------------------- /DALTools/STSCTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/STSCTool/App.config -------------------------------------------------------------------------------- /DALTools/STSCTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/STSCTool/Program.cs -------------------------------------------------------------------------------- /DALTools/STSCTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/STSCTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DALTools/STSCTool/STSCTextHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/STSCTool/STSCTextHandler.cs -------------------------------------------------------------------------------- /DALTools/STSCTool/STSCTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/STSCTool/STSCTool.csproj -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/App.config -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/App.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/App.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/Config.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/Consts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/Consts.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/FodyWeavers.xml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/FodyWeavers.xsd -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/Game.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/GameLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/GameLanguage.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/ImageTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/ImageTools.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/MainWindow.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/ScriptDatabaseEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/ScriptDatabaseEditor.csproj -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/Steam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/Steam.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/AboutWindow.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/ExceptionWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/ExceptionWindow.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/ExceptionWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/ExceptionWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/NumericUpDown.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/NumericUpDown.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/NumericUpDown.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/NumericUpDown.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/OptionsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/OptionsWindow.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/OptionsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/OptionsWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PCKFileSelectorWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PCKFileSelectorWindow.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PCKFileSelectorWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PCKFileSelectorWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorArtBook.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorArtBook.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorArtBook.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorArtBook.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorCharacter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorCharacter.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorCharacter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorCharacter.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorDramaCD.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorDramaCD.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorDramaCD.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorDramaCD.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorMemory.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorMemory.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorMemory.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorMemory.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorMovie.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorMovie.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorMovie.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorMovie.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorSystemText.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorSystemText.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorSystemText.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorSystemText.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorVoiceName.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorVoiceName.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/UI/PropertyEditorVoiceName.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/UI/PropertyEditorVoiceName.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/icon.ico -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/packages.config -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/res/IMG_FRAME_C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/res/IMG_FRAME_C.png -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/res/IMG_FRAME_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/res/IMG_FRAME_M.png -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/res/IMG_FRAME_MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/res/IMG_FRAME_MM.png -------------------------------------------------------------------------------- /DALTools/ScriptDatabaseEditor/res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDatabaseEditor/res/icon.ico -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/App.config -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/App.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/App.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/CharaEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/CharaEntry.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/Config.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/DALRRLivePreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/DALRRLivePreview.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/FodyWeavers.xml -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/FodyWeavers.xsd -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/Game.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/GameLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/GameLanguage.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/ImportExport/TranslationXLSXFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/ImportExport/TranslationXLSXFile.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/MainWindow.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/ProcessMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/ProcessMemory.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/STSC2FileDialogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/STSC2FileDialogue.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/STSCFileDialogue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/STSCFileDialogue.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/ScriptDialogueEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/ScriptDialogueEditor.csproj -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/ScriptVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/ScriptVersion.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/Steam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/Steam.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/AboutWindow.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/Converters.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/ExceptionWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/ExceptionWindow.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/ExceptionWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/ExceptionWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/LivePreviewWarningWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/LivePreviewWarningWindow.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/LivePreviewWarningWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/LivePreviewWarningWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/PropertyEditorChoice.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/PropertyEditorChoice.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/PropertyEditorChoice.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/PropertyEditorChoice.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/PropertyEditorMapPlace.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/PropertyEditorMapPlace.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/PropertyEditorMapPlace.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/PropertyEditorMapPlace.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/PropertyEditorMsg.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/PropertyEditorMsg.xaml -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/UI/PropertyEditorMsg.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/UI/PropertyEditorMsg.xaml.cs -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/icon.ico -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/packages.config -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/res/IMG_FRAME_C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/res/IMG_FRAME_C.png -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/res/IMG_FRAME_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/res/IMG_FRAME_M.png -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/res/IMG_FRAME_MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/res/IMG_FRAME_MM.png -------------------------------------------------------------------------------- /DALTools/ScriptDialogueEditor/res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/ScriptDialogueEditor/res/icon.ico -------------------------------------------------------------------------------- /DALTools/TEXTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TEXTool/App.config -------------------------------------------------------------------------------- /DALTools/TEXTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TEXTool/Program.cs -------------------------------------------------------------------------------- /DALTools/TEXTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TEXTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DALTools/TEXTool/TEXTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TEXTool/TEXTool.csproj -------------------------------------------------------------------------------- /DALTools/TEXTool/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TEXTool/packages.config -------------------------------------------------------------------------------- /DALTools/TableEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/App.config -------------------------------------------------------------------------------- /DALTools/TableEditor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/App.xaml -------------------------------------------------------------------------------- /DALTools/TableEditor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/App.xaml.cs -------------------------------------------------------------------------------- /DALTools/TableEditor/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/FodyWeavers.xml -------------------------------------------------------------------------------- /DALTools/TableEditor/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/FodyWeavers.xsd -------------------------------------------------------------------------------- /DALTools/TableEditor/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/MainWindow.xaml -------------------------------------------------------------------------------- /DALTools/TableEditor/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/MainWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/TableEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DALTools/TableEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DALTools/TableEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /DALTools/TableEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DALTools/TableEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /DALTools/TableEditor/TableEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/TableEditor.csproj -------------------------------------------------------------------------------- /DALTools/TableEditor/UI/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/UI/AboutWindow.xaml -------------------------------------------------------------------------------- /DALTools/TableEditor/UI/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/UI/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/TableEditor/UI/ExceptionWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/UI/ExceptionWindow.xaml -------------------------------------------------------------------------------- /DALTools/TableEditor/UI/ExceptionWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/UI/ExceptionWindow.xaml.cs -------------------------------------------------------------------------------- /DALTools/TableEditor/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/icon.ico -------------------------------------------------------------------------------- /DALTools/TableEditor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/packages.config -------------------------------------------------------------------------------- /DALTools/TableEditor/res/IMG_FRAME_C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/res/IMG_FRAME_C.png -------------------------------------------------------------------------------- /DALTools/TableEditor/res/IMG_FRAME_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/res/IMG_FRAME_M.png -------------------------------------------------------------------------------- /DALTools/TableEditor/res/IMG_FRAME_MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/res/IMG_FRAME_MM.png -------------------------------------------------------------------------------- /DALTools/TableEditor/res/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/DALTools/TableEditor/res/icon.ico -------------------------------------------------------------------------------- /FUNCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/FUNCTIONS.md -------------------------------------------------------------------------------- /Images/ScriptDatabaseEditor_Screenshot_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/Images/ScriptDatabaseEditor_Screenshot_00.png -------------------------------------------------------------------------------- /Images/ScriptDialogueEditor_Screenshot_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/Images/ScriptDialogueEditor_Screenshot_00.png -------------------------------------------------------------------------------- /Images/TableEditor_Screenshot_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/Images/TableEditor_Screenshot_00.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thesupersonic16/DALTools/HEAD/README.md --------------------------------------------------------------------------------