├── .gitignore ├── WC3Tool.sln └── WC3Tool ├── EventTool.Designer.cs ├── EventTool.cs ├── EventTool.resx ├── MainScreen.Designer.cs ├── MainScreen.cs ├── MainScreen.resx ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── WC3 ├── Decor_editor.Designer.cs ├── Decor_editor.cs ├── Decor_editor.resx ├── ECB.cs ├── ECB_editor.Designer.cs ├── ECB_editor.cs ├── ECB_editor.resx ├── ECT.cs ├── ECT_editor.Designer.cs ├── ECT_editor.cs ├── ECT_editor.resx ├── ECT_editor_text.cs ├── ECT_pkedit.Designer.cs ├── ECT_pkedit.cs ├── ECT_pkedit.resx ├── FILEIO.cs ├── GiveEggOrg.resx ├── Image │ ├── Cards.resx │ └── Icons.resx ├── ME3.cs ├── ME3_editor.Designer.cs ├── ME3_editor.cs ├── ME3_editor.resx ├── PKHEX │ ├── SpeciesConverter.cs │ └── StringConverter.cs ├── SAV3.cs ├── TV.cs ├── TV_editor.Designer.cs ├── TV_editor.cs ├── TV_editor.resx ├── Tickets.resx ├── WC3_editor.Designer.cs ├── WC3_editor.cs ├── WC3_editor.resx ├── WC3_editor_givegg.Designer.cs ├── WC3_editor_givegg.cs ├── WC3_editor_givegg.resx ├── WC3_editor_giveggExt.Designer.cs ├── WC3_editor_giveggExt.cs ├── WC3_editor_giveggExt.resx ├── WCN_editor.Designer.cs ├── WCN_editor.cs ├── WCN_editor.resx └── wc3.cs ├── WC3Tool.csproj └── app.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/.gitignore -------------------------------------------------------------------------------- /WC3Tool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool.sln -------------------------------------------------------------------------------- /WC3Tool/EventTool.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/EventTool.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/EventTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/EventTool.cs -------------------------------------------------------------------------------- /WC3Tool/EventTool.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/EventTool.resx -------------------------------------------------------------------------------- /WC3Tool/MainScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/MainScreen.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/MainScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/MainScreen.cs -------------------------------------------------------------------------------- /WC3Tool/MainScreen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/MainScreen.resx -------------------------------------------------------------------------------- /WC3Tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/Program.cs -------------------------------------------------------------------------------- /WC3Tool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/Decor_editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/Decor_editor.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/Decor_editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/Decor_editor.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/Decor_editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/Decor_editor.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/ECB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECB.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ECB_editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECB_editor.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ECB_editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECB_editor.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ECB_editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECB_editor.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/ECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECT.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ECT_editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECT_editor.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ECT_editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECT_editor.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ECT_editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECT_editor.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/ECT_editor_text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECT_editor_text.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ECT_pkedit.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECT_pkedit.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ECT_pkedit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECT_pkedit.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ECT_pkedit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ECT_pkedit.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/FILEIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/FILEIO.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/GiveEggOrg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/GiveEggOrg.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/Image/Cards.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/Image/Cards.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/Image/Icons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/Image/Icons.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/ME3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ME3.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ME3_editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ME3_editor.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ME3_editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ME3_editor.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/ME3_editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/ME3_editor.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/PKHEX/SpeciesConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/PKHEX/SpeciesConverter.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/PKHEX/StringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/PKHEX/StringConverter.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/SAV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/SAV3.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/TV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/TV.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/TV_editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/TV_editor.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/TV_editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/TV_editor.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/TV_editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/TV_editor.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/Tickets.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/Tickets.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/WC3_editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WC3_editor.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/WC3_editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WC3_editor.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/WC3_editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WC3_editor.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/WC3_editor_givegg.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WC3_editor_givegg.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/WC3_editor_givegg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WC3_editor_givegg.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/WC3_editor_givegg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WC3_editor_givegg.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/WC3_editor_giveggExt.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WC3_editor_giveggExt.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/WC3_editor_giveggExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WC3_editor_giveggExt.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/WC3_editor_giveggExt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WC3_editor_giveggExt.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/WCN_editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WCN_editor.Designer.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/WCN_editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WCN_editor.cs -------------------------------------------------------------------------------- /WC3Tool/WC3/WCN_editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/WCN_editor.resx -------------------------------------------------------------------------------- /WC3Tool/WC3/wc3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3/wc3.cs -------------------------------------------------------------------------------- /WC3Tool/WC3Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/WC3Tool.csproj -------------------------------------------------------------------------------- /WC3Tool/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectpokemon/Gen3-WCTool/HEAD/WC3Tool/app.config --------------------------------------------------------------------------------