├── .editorconfig ├── .gitignore ├── FlagsEditorEX.cs ├── FlagsEditorEX.csproj ├── FlagsEditorEX.sln ├── FlagsGen1RB.cs ├── FlagsGen1Y.cs ├── FlagsGen2C.cs ├── FlagsGen2GS.cs ├── FlagsGen3E.cs ├── FlagsGen3FRLG.cs ├── FlagsGen3RS.cs ├── FlagsGen4DP.cs ├── FlagsGen4HGSS.cs ├── FlagsGen4Pt.cs ├── FlagsGen5B2W2.cs ├── FlagsGen5BW.cs ├── FlagsGen6ORAS.cs ├── FlagsGen6XY.cs ├── FlagsGen7SM.cs ├── FlagsGen7USUM.cs ├── FlagsGen7bGPGE.cs ├── FlagsGen8BDSP.cs ├── FlagsGen8LA.cs ├── FlagsGen8SWSH.cs ├── FlagsGen9LZA.cs ├── FlagsGen9SV.cs ├── FlagsOrganizer.cs ├── FlagsOrganizer_Helpers.cs ├── Forms ├── DailyHiddenItemsEditorSV.Designer.cs ├── DailyHiddenItemsEditorSV.cs ├── DailyHiddenItemsEditorSV.resx ├── EventWorkEditor.Designer.cs ├── EventWorkEditor.cs ├── EventWorkEditor.resx ├── FlagsEditor.Designer.cs ├── FlagsEditor.cs ├── FlagsEditor.resx ├── MainWin.Designer.cs ├── MainWin.cs └── MainWin.resx ├── LICENSE ├── LocalizedStrings.cs ├── README-ko.md ├── README.md ├── TestApp ├── .gitignore ├── FlagsEditorEX_App.csproj └── Program.cs ├── flagslist ├── flags_gen1jbu_en.txt ├── flags_gen1jgn_en.txt ├── flags_gen1rb_en.txt ├── flags_gen1y_en.txt ├── flags_gen2c_en.txt ├── flags_gen2gs_en.txt ├── flags_gen3e_en.txt ├── flags_gen3frlg_en.txt ├── flags_gen3rs_en.txt ├── flags_gen4dp_en.txt ├── flags_gen4hgss_en.txt ├── flags_gen4pt_en.txt ├── flags_gen5b2w2_en.txt ├── flags_gen5bw_en.txt ├── flags_gen6oras_en.txt ├── flags_gen6xy_en.txt ├── flags_gen7blgpe_en.txt ├── flags_gen7sm_en.txt ├── flags_gen7usum_en.txt ├── flags_gen8bdsp_en.txt ├── flags_gen8la_en.txt ├── flags_gen8swsh_en.txt ├── flags_gen9lza_en.txt └── flags_gen9sv_en.txt └── localization ├── lang_br.txt ├── lang_de.txt ├── lang_en.txt ├── lang_es.txt ├── lang_fr.txt ├── lang_it.txt ├── lang_ja.txt ├── lang_ko.txt ├── lang_zh-Hans.txt └── lang_zh-Hant.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /obj 2 | /.vs 3 | /bin 4 | /FlagsEditorEX.csproj.user 5 | -------------------------------------------------------------------------------- /FlagsEditorEX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsEditorEX.cs -------------------------------------------------------------------------------- /FlagsEditorEX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsEditorEX.csproj -------------------------------------------------------------------------------- /FlagsEditorEX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsEditorEX.sln -------------------------------------------------------------------------------- /FlagsGen1RB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen1RB.cs -------------------------------------------------------------------------------- /FlagsGen1Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen1Y.cs -------------------------------------------------------------------------------- /FlagsGen2C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen2C.cs -------------------------------------------------------------------------------- /FlagsGen2GS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen2GS.cs -------------------------------------------------------------------------------- /FlagsGen3E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen3E.cs -------------------------------------------------------------------------------- /FlagsGen3FRLG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen3FRLG.cs -------------------------------------------------------------------------------- /FlagsGen3RS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen3RS.cs -------------------------------------------------------------------------------- /FlagsGen4DP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen4DP.cs -------------------------------------------------------------------------------- /FlagsGen4HGSS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen4HGSS.cs -------------------------------------------------------------------------------- /FlagsGen4Pt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen4Pt.cs -------------------------------------------------------------------------------- /FlagsGen5B2W2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen5B2W2.cs -------------------------------------------------------------------------------- /FlagsGen5BW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen5BW.cs -------------------------------------------------------------------------------- /FlagsGen6ORAS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen6ORAS.cs -------------------------------------------------------------------------------- /FlagsGen6XY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen6XY.cs -------------------------------------------------------------------------------- /FlagsGen7SM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen7SM.cs -------------------------------------------------------------------------------- /FlagsGen7USUM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen7USUM.cs -------------------------------------------------------------------------------- /FlagsGen7bGPGE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen7bGPGE.cs -------------------------------------------------------------------------------- /FlagsGen8BDSP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen8BDSP.cs -------------------------------------------------------------------------------- /FlagsGen8LA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen8LA.cs -------------------------------------------------------------------------------- /FlagsGen8SWSH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen8SWSH.cs -------------------------------------------------------------------------------- /FlagsGen9LZA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen9LZA.cs -------------------------------------------------------------------------------- /FlagsGen9SV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsGen9SV.cs -------------------------------------------------------------------------------- /FlagsOrganizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsOrganizer.cs -------------------------------------------------------------------------------- /FlagsOrganizer_Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/FlagsOrganizer_Helpers.cs -------------------------------------------------------------------------------- /Forms/DailyHiddenItemsEditorSV.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/DailyHiddenItemsEditorSV.Designer.cs -------------------------------------------------------------------------------- /Forms/DailyHiddenItemsEditorSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/DailyHiddenItemsEditorSV.cs -------------------------------------------------------------------------------- /Forms/DailyHiddenItemsEditorSV.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/DailyHiddenItemsEditorSV.resx -------------------------------------------------------------------------------- /Forms/EventWorkEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/EventWorkEditor.Designer.cs -------------------------------------------------------------------------------- /Forms/EventWorkEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/EventWorkEditor.cs -------------------------------------------------------------------------------- /Forms/EventWorkEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/EventWorkEditor.resx -------------------------------------------------------------------------------- /Forms/FlagsEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/FlagsEditor.Designer.cs -------------------------------------------------------------------------------- /Forms/FlagsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/FlagsEditor.cs -------------------------------------------------------------------------------- /Forms/FlagsEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/FlagsEditor.resx -------------------------------------------------------------------------------- /Forms/MainWin.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/MainWin.Designer.cs -------------------------------------------------------------------------------- /Forms/MainWin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/MainWin.cs -------------------------------------------------------------------------------- /Forms/MainWin.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/Forms/MainWin.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/LICENSE -------------------------------------------------------------------------------- /LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/LocalizedStrings.cs -------------------------------------------------------------------------------- /README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/README-ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/README.md -------------------------------------------------------------------------------- /TestApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/TestApp/.gitignore -------------------------------------------------------------------------------- /TestApp/FlagsEditorEX_App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/TestApp/FlagsEditorEX_App.csproj -------------------------------------------------------------------------------- /TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/TestApp/Program.cs -------------------------------------------------------------------------------- /flagslist/flags_gen1jbu_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen1jbu_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen1jgn_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen1jgn_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen1rb_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen1rb_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen1y_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen1y_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen2c_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen2c_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen2gs_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen2gs_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen3e_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen3e_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen3frlg_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen3frlg_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen3rs_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen3rs_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen4dp_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen4dp_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen4hgss_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen4hgss_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen4pt_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen4pt_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen5b2w2_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen5b2w2_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen5bw_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen5bw_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen6oras_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen6oras_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen6xy_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen6xy_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen7blgpe_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen7blgpe_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen7sm_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen7sm_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen7usum_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen7usum_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen8bdsp_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen8bdsp_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen8la_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen8la_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen8swsh_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen8swsh_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen9lza_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen9lza_en.txt -------------------------------------------------------------------------------- /flagslist/flags_gen9sv_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/flagslist/flags_gen9sv_en.txt -------------------------------------------------------------------------------- /localization/lang_br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_br.txt -------------------------------------------------------------------------------- /localization/lang_de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_de.txt -------------------------------------------------------------------------------- /localization/lang_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_en.txt -------------------------------------------------------------------------------- /localization/lang_es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_es.txt -------------------------------------------------------------------------------- /localization/lang_fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_fr.txt -------------------------------------------------------------------------------- /localization/lang_it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_it.txt -------------------------------------------------------------------------------- /localization/lang_ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_ja.txt -------------------------------------------------------------------------------- /localization/lang_ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_ko.txt -------------------------------------------------------------------------------- /localization/lang_zh-Hans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_zh-Hans.txt -------------------------------------------------------------------------------- /localization/lang_zh-Hant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fattard/FlagsEditorEXPlugin/HEAD/localization/lang_zh-Hant.txt --------------------------------------------------------------------------------