├── .gitignore ├── .vs └── GBAPokemonGameEditor │ ├── v14 │ └── .suo │ └── v15 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── Docs └── settingup.md ├── GBAPokemonGameEditor.sln ├── GBAPokemonGameEditor ├── AbilityAdder.Designer.vb ├── AbilityAdder.resx ├── AbilityAdder.vb ├── AbilityEdit.Designer.vb ├── AbilityEdit.resx ├── AbilityEdit.vb ├── AboutBox1.Designer.vb ├── AboutBox1.resx ├── AboutBox1.vb ├── AddOrRemovePrograms.Designer.vb ├── AddOrRemovePrograms.resx ├── AddOrRemovePrograms.vb ├── App.config ├── ApplicationEvents.vb ├── AttackAdder.Designer.vb ├── AttackAdder.resx ├── AttackAdder.vb ├── AttackEditor.Designer.vb ├── AttackEditor.resx ├── AttackEditor.vb ├── BattleFrontierEditor.Designer.vb ├── BattleFrontierEditor.resx ├── BattleFrontierEditor.vb ├── ChangeImageFunctions.vb ├── ChangeNameFunctions.vb ├── CryFunctions.vb ├── EggMoveEditor.Designer.vb ├── EggMoveEditor.resx ├── EggMoveEditor.vb ├── ExportDataFunctions.vb ├── GBAPokemonGameEditor.vbproj ├── GBAPokemonGameEditor.vbproj.user ├── GetImageFunctions.vb ├── GetNameFunctions.vb ├── HabitatEditor.Designer.vb ├── HabitatEditor.resx ├── HabitatEditor.vb ├── HexFunctions.vb ├── INI.vb ├── Icon.ico ├── ImportDataFunctions.vb ├── InputAttacks.Designer.vb ├── InputAttacks.resx ├── InputAttacks.vb ├── ItemEditor.Designer.vb ├── ItemEditor.resx ├── ItemEditor.vb ├── LZ77.vb ├── MainFrm.Designer.vb ├── MainFrm.resx ├── MainFrm.vb ├── MoveTutorEditor.Designer.vb ├── MoveTutorEditor.resx ├── MoveTutorEditor.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest ├── PGEABOUT.png ├── PGESplash.png ├── PointerOffsetFunctions.vb ├── PokedexDataEditor.Designer.vb ├── PokedexDataEditor.resx ├── PokedexDataEditor.vb ├── PokedexListEditor.Designer.vb ├── PokedexListEditor.resx ├── PokedexListEditor.vb ├── PokedexOrderEditor.Designer.vb ├── PokedexOrderEditor.resx ├── PokedexOrderEditor.vb ├── PokemonAdder.Designer.vb ├── PokemonAdder.resx ├── PokemonAdder.vb ├── Pokemonedit.Designer.vb ├── Pokemonedit.resx ├── Pokemonedit.vb ├── RSEStarterEditor.Designer.vb ├── RSEStarterEditor.resx ├── RSEStarterEditor.vb ├── RomExpander.Designer.vb ├── RomExpander.resx ├── RomExpander.vb ├── SplashScreen1.Designer.vb ├── SplashScreen1.resx ├── SplashScreen1.vb ├── TMHMEditor.Designer.vb ├── TMHMEditor.resx ├── TMHMEditor.vb ├── TradeEditor.Designer.vb ├── TradeEditor.resx ├── TradeEditor.vb ├── TrainerEditor.Designer.vb ├── TrainerEditor.resx ├── TrainerEditor.vb ├── WichuRomFunctions.vb ├── WichuSpriteFunctions.vb ├── bin │ └── Debug │ │ ├── GBAPGESettings.ini │ │ ├── PokemonGameEditor.application │ │ ├── PokemonGameEditor.exe │ │ ├── PokemonGameEditor.exe.config │ │ ├── PokemonGameEditor.exe.manifest │ │ ├── PokemonGameEditor.pdb │ │ ├── PokemonGameEditor.vshost.application │ │ ├── PokemonGameEditor.vshost.exe │ │ ├── PokemonGameEditor.vshost.exe.manifest │ │ ├── PokemonGameEditor.xml │ │ ├── img │ │ ├── BattlePreviewBackground.png │ │ ├── BattlePreviewShadow.png │ │ ├── EMPokedexSize.png │ │ └── FRPokedexSize.png │ │ ├── ini │ │ └── roms.ini │ │ └── txt │ │ ├── PGEAttackEffects.txt │ │ ├── PGEHabitats.txt │ │ ├── PGENatures.txt │ │ └── PGETypeList.txt ├── mMain.vb ├── modSearchFreeSpace.vb ├── modTextSapp.vb └── obj │ └── x86 │ └── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GBAPokemonGameEditor.vbproj.CoreCompileInputs.cache │ ├── GBAPokemonGameEditor.vbproj.FileListAbsolute.txt │ ├── GBAPokemonGameEditor.vbproj.GenerateResource.Cache │ ├── GBAPokemonGameEditor.vbproj.GenerateResource.Cache~upstream_master │ ├── GBAPokemonGameEditor.vbproj.GenerateResource.cache │ ├── PokemonGameEditor.AbilityAdder.resources │ ├── PokemonGameEditor.AbilityEdit.resources │ ├── PokemonGameEditor.AboutBox1.resources │ ├── PokemonGameEditor.AddOrRemovePrograms.resources │ ├── PokemonGameEditor.AttackAdder.resources │ ├── PokemonGameEditor.AttackEditor.resources │ ├── PokemonGameEditor.BattleFrontierEditor.resources │ ├── PokemonGameEditor.EggMoveEditor.resources │ ├── PokemonGameEditor.HabitatEditor.resources │ ├── PokemonGameEditor.InputAttacks.resources │ ├── PokemonGameEditor.ItemEditor.resources │ ├── PokemonGameEditor.MainFrm.resources │ ├── PokemonGameEditor.MoveTutorEditor.resources │ ├── PokemonGameEditor.PokedexDataEditor.resources │ ├── PokemonGameEditor.PokedexListEditor.resources │ ├── PokemonGameEditor.PokedexOrderEditor.resources │ ├── PokemonGameEditor.PokemonAdder.resources │ ├── PokemonGameEditor.Pokemonedit.resources │ ├── PokemonGameEditor.RSEStarterEditor.resources │ ├── PokemonGameEditor.Resources.resources │ ├── PokemonGameEditor.RomExpander.resources │ ├── PokemonGameEditor.SplashScreen1.resources │ ├── PokemonGameEditor.TMHMEditor.resources │ ├── PokemonGameEditor.TradeEditor.resources │ ├── PokemonGameEditor.TrainerEditor.resources │ ├── PokemonGameEditor.application │ ├── PokemonGameEditor.exe │ ├── PokemonGameEditor.exe.manifest │ ├── PokemonGameEditor.pdb │ ├── PokemonGameEditor.xml │ └── TempPE │ └── My Project.Resources.Designer.vb.dll ├── LICENSE ├── README.md ├── Screenshots ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── PGEBANNER.png ├── SCF.png ├── SettingUpEmEN │ ├── evo.png │ ├── extra.png │ ├── extra2.png │ ├── hold.png │ ├── hold2.png │ ├── mega.png │ ├── param.png │ ├── prime.png │ ├── revert.png │ └── wish.png ├── background.png ├── icon.ico └── ra.png └── roms.ini /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/GBAPokemonGameEditor/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/.vs/GBAPokemonGameEditor/v14/.suo -------------------------------------------------------------------------------- /.vs/GBAPokemonGameEditor/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/.vs/GBAPokemonGameEditor/v15/.suo -------------------------------------------------------------------------------- /.vs/GBAPokemonGameEditor/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/GBAPokemonGameEditor/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/.vs/GBAPokemonGameEditor/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/GBAPokemonGameEditor/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/.vs/GBAPokemonGameEditor/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/GBAPokemonGameEditor/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/.vs/GBAPokemonGameEditor/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /Docs/settingup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Docs/settingup.md -------------------------------------------------------------------------------- /GBAPokemonGameEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor.sln -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AbilityAdder.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AbilityAdder.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AbilityAdder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AbilityAdder.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AbilityAdder.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AbilityAdder.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AbilityEdit.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AbilityEdit.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AbilityEdit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AbilityEdit.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AbilityEdit.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AbilityEdit.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AboutBox1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AboutBox1.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AboutBox1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AboutBox1.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AboutBox1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AboutBox1.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AddOrRemovePrograms.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AddOrRemovePrograms.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AddOrRemovePrograms.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AddOrRemovePrograms.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AddOrRemovePrograms.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AddOrRemovePrograms.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/App.config -------------------------------------------------------------------------------- /GBAPokemonGameEditor/ApplicationEvents.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/ApplicationEvents.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AttackAdder.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AttackAdder.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AttackAdder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AttackAdder.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AttackAdder.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AttackAdder.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AttackEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AttackEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AttackEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AttackEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/AttackEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/AttackEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/BattleFrontierEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/BattleFrontierEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/BattleFrontierEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/BattleFrontierEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/BattleFrontierEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/BattleFrontierEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/ChangeImageFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/ChangeImageFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/ChangeNameFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/ChangeNameFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/CryFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/CryFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/EggMoveEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/EggMoveEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/EggMoveEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/EggMoveEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/EggMoveEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/EggMoveEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/ExportDataFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/ExportDataFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/GBAPokemonGameEditor.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/GBAPokemonGameEditor.vbproj -------------------------------------------------------------------------------- /GBAPokemonGameEditor/GBAPokemonGameEditor.vbproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/GBAPokemonGameEditor.vbproj.user -------------------------------------------------------------------------------- /GBAPokemonGameEditor/GetImageFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/GetImageFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/GetNameFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/GetNameFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/HabitatEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/HabitatEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/HabitatEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/HabitatEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/HabitatEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/HabitatEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/HexFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/HexFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/INI.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/INI.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/Icon.ico -------------------------------------------------------------------------------- /GBAPokemonGameEditor/ImportDataFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/ImportDataFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/InputAttacks.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/InputAttacks.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/InputAttacks.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/InputAttacks.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/InputAttacks.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/InputAttacks.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/ItemEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/ItemEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/ItemEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/ItemEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/ItemEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/ItemEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/LZ77.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/LZ77.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/MainFrm.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/MainFrm.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/MainFrm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/MainFrm.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/MainFrm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/MainFrm.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/MoveTutorEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/MoveTutorEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/MoveTutorEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/MoveTutorEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/MoveTutorEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/MoveTutorEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/My Project/Application.myapp -------------------------------------------------------------------------------- /GBAPokemonGameEditor/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/My Project/Resources.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/My Project/Settings.settings -------------------------------------------------------------------------------- /GBAPokemonGameEditor/My Project/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/My Project/app.manifest -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PGEABOUT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PGEABOUT.png -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PGESplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PGESplash.png -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PointerOffsetFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PointerOffsetFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokedexDataEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokedexDataEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokedexDataEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokedexDataEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokedexDataEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokedexDataEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokedexListEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokedexListEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokedexListEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokedexListEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokedexListEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokedexListEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokedexOrderEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokedexOrderEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokedexOrderEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokedexOrderEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokedexOrderEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokedexOrderEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokemonAdder.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokemonAdder.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokemonAdder.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokemonAdder.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/PokemonAdder.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/PokemonAdder.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/Pokemonedit.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/Pokemonedit.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/Pokemonedit.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/Pokemonedit.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/Pokemonedit.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/Pokemonedit.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/RSEStarterEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/RSEStarterEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/RSEStarterEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/RSEStarterEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/RSEStarterEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/RSEStarterEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/RomExpander.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/RomExpander.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/RomExpander.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/RomExpander.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/RomExpander.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/RomExpander.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/SplashScreen1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/SplashScreen1.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/SplashScreen1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/SplashScreen1.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/SplashScreen1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/SplashScreen1.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/TMHMEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/TMHMEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/TMHMEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/TMHMEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/TMHMEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/TMHMEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/TradeEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/TradeEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/TradeEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/TradeEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/TradeEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/TradeEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/TrainerEditor.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/TrainerEditor.Designer.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/TrainerEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/TrainerEditor.resx -------------------------------------------------------------------------------- /GBAPokemonGameEditor/TrainerEditor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/TrainerEditor.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/WichuRomFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/WichuRomFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/WichuSpriteFunctions.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/WichuSpriteFunctions.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/GBAPGESettings.ini: -------------------------------------------------------------------------------- 1 | [Settings] 2 | OSisLinux=0 3 | DisableCryImage=0 4 | -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.application -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.exe -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.exe.config -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.exe.manifest -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.pdb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.vshost.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.vshost.application -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.vshost.exe -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.vshost.exe.manifest -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/PokemonGameEditor.xml -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/img/BattlePreviewBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/img/BattlePreviewBackground.png -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/img/BattlePreviewShadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/img/BattlePreviewShadow.png -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/img/EMPokedexSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/img/EMPokedexSize.png -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/img/FRPokedexSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/img/FRPokedexSize.png -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/ini/roms.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/ini/roms.ini -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/txt/PGEAttackEffects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/txt/PGEAttackEffects.txt -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/txt/PGEHabitats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/txt/PGEHabitats.txt -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/txt/PGENatures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/txt/PGENatures.txt -------------------------------------------------------------------------------- /GBAPokemonGameEditor/bin/Debug/txt/PGETypeList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/bin/Debug/txt/PGETypeList.txt -------------------------------------------------------------------------------- /GBAPokemonGameEditor/mMain.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/mMain.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/modSearchFreeSpace.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/modSearchFreeSpace.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/modTextSapp.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/modTextSapp.vb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/GBAPokemonGameEditor.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 302e1968ba2c5026d2d388fde540996acfec2ab2 2 | -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/GBAPokemonGameEditor.vbproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/GBAPokemonGameEditor.vbproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/GBAPokemonGameEditor.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/GBAPokemonGameEditor.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/GBAPokemonGameEditor.vbproj.GenerateResource.Cache~upstream_master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/GBAPokemonGameEditor.vbproj.GenerateResource.Cache~upstream_master -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/GBAPokemonGameEditor.vbproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/GBAPokemonGameEditor.vbproj.GenerateResource.cache -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AbilityAdder.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AbilityAdder.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AbilityEdit.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AbilityEdit.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AboutBox1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AboutBox1.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AddOrRemovePrograms.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AddOrRemovePrograms.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AttackAdder.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AttackAdder.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AttackEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.AttackEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.BattleFrontierEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.BattleFrontierEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.EggMoveEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.EggMoveEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.HabitatEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.HabitatEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.InputAttacks.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.InputAttacks.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.ItemEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.ItemEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.MainFrm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.MainFrm.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.MoveTutorEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.MoveTutorEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.PokedexDataEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.PokedexDataEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.PokedexListEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.PokedexListEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.PokedexOrderEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.PokedexOrderEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.PokemonAdder.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.PokemonAdder.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.Pokemonedit.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.Pokemonedit.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.RSEStarterEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.RSEStarterEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.Resources.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.RomExpander.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.RomExpander.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.SplashScreen1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.SplashScreen1.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.TMHMEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.TMHMEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.TradeEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.TradeEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.TrainerEditor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.TrainerEditor.resources -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.application -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.exe -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.exe.manifest -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.pdb -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/PokemonGameEditor.xml -------------------------------------------------------------------------------- /GBAPokemonGameEditor/obj/x86/Debug/TempPE/My Project.Resources.Designer.vb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/GBAPokemonGameEditor/obj/x86/Debug/TempPE/My Project.Resources.Designer.vb.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/1.png -------------------------------------------------------------------------------- /Screenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/10.png -------------------------------------------------------------------------------- /Screenshots/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/11.png -------------------------------------------------------------------------------- /Screenshots/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/12.png -------------------------------------------------------------------------------- /Screenshots/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/13.png -------------------------------------------------------------------------------- /Screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/2.png -------------------------------------------------------------------------------- /Screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/3.png -------------------------------------------------------------------------------- /Screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/4.png -------------------------------------------------------------------------------- /Screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/5.png -------------------------------------------------------------------------------- /Screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/6.png -------------------------------------------------------------------------------- /Screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/7.png -------------------------------------------------------------------------------- /Screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/8.png -------------------------------------------------------------------------------- /Screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/9.png -------------------------------------------------------------------------------- /Screenshots/PGEBANNER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/PGEBANNER.png -------------------------------------------------------------------------------- /Screenshots/SCF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SCF.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/evo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/evo.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/extra.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/extra2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/extra2.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/hold.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/hold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/hold2.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/mega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/mega.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/param.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/prime.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/revert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/revert.png -------------------------------------------------------------------------------- /Screenshots/SettingUpEmEN/wish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/SettingUpEmEN/wish.png -------------------------------------------------------------------------------- /Screenshots/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/background.png -------------------------------------------------------------------------------- /Screenshots/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/icon.ico -------------------------------------------------------------------------------- /Screenshots/ra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/Screenshots/ra.png -------------------------------------------------------------------------------- /roms.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gamer2020/PokemonGameEditor/HEAD/roms.ini --------------------------------------------------------------------------------