├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── PATCHING.md ├── README.md ├── bass └── BASS HERE ├── decomp └── README.md ├── docker ├── Dockerfile ├── docker-compose.yml └── translate ├── games ├── Donkey Konga 3 │ ├── Main.asm │ ├── README.md │ ├── Resource.asm │ └── fs │ │ ├── Game │ │ ├── README.md │ │ └── Tutorial.nut │ │ ├── Memo │ │ └── README.md │ │ ├── MiniGame │ │ └── README.md │ │ ├── Resource │ │ ├── Adlib.res │ │ ├── BananaIsland.res │ │ ├── BarrelAttack.res │ │ ├── DemoEnding.res │ │ ├── DemoFestival.res │ │ ├── DemoPrologue.res │ │ ├── DemoResult.res │ │ ├── DemoStaffRoll.res │ │ ├── Dk3PbChance.res │ │ ├── Game.res │ │ ├── MemCard.res │ │ ├── MemoData.res │ │ ├── MemoData_tgs.res │ │ ├── README.md │ │ ├── SelectString.res │ │ ├── SongData.res │ │ ├── SongInfo.res │ │ ├── SongInfo_tgs.res │ │ ├── SoundSet.res │ │ ├── SoundSetInfo.res │ │ └── Trial.res │ │ ├── Select │ │ └── README.md │ │ └── Title │ │ ├── README.md │ │ ├── logo_tex.nut │ │ └── ranking_back01.nut ├── Giftpia │ ├── Banner.asm │ ├── Main.asm │ ├── Menus.asm │ └── README.md ├── HomeLand │ ├── Areas │ │ ├── Cloots.asm │ │ ├── Park.asm │ │ └── Room.asm │ ├── Banner.asm │ ├── Chatter.asm │ ├── Main.asm │ ├── Menus.asm │ ├── Names │ │ ├── Items.asm │ │ ├── Monsters.asm │ │ └── NPC.asm │ ├── Netcfg.asm │ ├── README.md │ └── Unsorted.asm ├── Kururin Squash! │ ├── Banner.asm │ ├── Main.asm │ ├── Obj.asm │ ├── README.md │ ├── Text.asm │ ├── Title.asm │ └── fs │ │ ├── README.md │ │ ├── demo │ │ ├── README.md │ │ ├── text │ │ │ ├── Challenge.txt │ │ │ ├── Opening.txt │ │ │ ├── README.md │ │ │ ├── Rank.txt │ │ │ ├── boss.txt │ │ │ ├── item.txt │ │ │ ├── item2.txt │ │ │ ├── mode.txt │ │ │ ├── shop.txt │ │ │ ├── shop2.txt │ │ │ ├── stage.txt │ │ │ ├── type.txt │ │ │ └── vsmenu.txt │ │ └── title │ │ │ ├── README.md │ │ │ └── title.txg │ │ ├── gba │ │ └── README.md │ │ ├── obj │ │ └── 2D │ │ │ ├── README.md │ │ │ ├── ano00.txg │ │ │ ├── ch_c_resalt.txg │ │ │ ├── ch_f_resalt.txg │ │ │ ├── fileselect.txg │ │ │ ├── itemlist.txg │ │ │ ├── option.txg │ │ │ ├── pause.txg │ │ │ ├── resalt.txg │ │ │ ├── top.txg │ │ │ ├── vs_menu.txg │ │ │ └── w_map.txg │ │ └── opening.bnr ├── Lupin Disc 1 │ ├── Banner.asm │ ├── Credits.asm │ ├── Dialogue.asm │ ├── Intro.asm │ ├── Main.asm │ ├── Menus.asm │ ├── README.md │ └── fs │ │ ├── opening1.bnr │ │ └── opening1.png ├── Lupin Disc 2 │ └── fs │ │ ├── opening2.bnr │ │ └── opening2.png ├── Metal Gear Solid Special Disc │ ├── Main.asm │ ├── Menu.asm │ ├── NES.asm │ ├── README.md │ └── fs │ │ └── local │ │ ├── Image │ │ ├── MenuExplanatoryNote_A.tpl │ │ ├── MenuExplanatoryNote_B.tpl │ │ ├── MenuStr_L.tpl │ │ └── MenuStr_R.tpl │ │ └── tgc │ │ └── JPN_JPN_METALGEAR.tgc └── Taxi 3 - The Game │ ├── Ingame.asm │ ├── Main.asm │ ├── Menu.asm │ ├── README.md │ └── fs │ └── Data │ ├── Menu │ ├── README.md │ ├── credits.txt │ ├── fr_menu.txt │ └── fr_missions.txt │ └── Misc │ └── ingame │ └── README.md ├── isos └── PUT JP ISOS HERE ├── output └── OUTPUT EN ISOS HERE ├── scripts ├── build │ ├── Donkey Konga 3.bat │ ├── Giftpia.bat │ ├── Homeland.bat │ ├── Kururin Squash!.bat │ └── Lupin.bat └── dump │ └── HomeLand.bat └── tools ├── HVQM4 Viewer ├── HVQM4DecM.dll └── Hvqm4Viewer.exe ├── SJIS_Dump.exe └── gcr.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/LICENSE -------------------------------------------------------------------------------- /PATCHING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/PATCHING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/README.md -------------------------------------------------------------------------------- /bass/BASS HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /decomp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/decomp/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/translate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/docker/translate -------------------------------------------------------------------------------- /games/Donkey Konga 3/Main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/Main.asm -------------------------------------------------------------------------------- /games/Donkey Konga 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/README.md -------------------------------------------------------------------------------- /games/Donkey Konga 3/Resource.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/Resource.asm -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Game/README.md -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Game/Tutorial.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Game/Tutorial.nut -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Memo/README.md: -------------------------------------------------------------------------------- 1 | # Location of 2D textures for Dixie's Notes 2 | 3 | Known files: 4 | - Memo.nut -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/MiniGame/README.md: -------------------------------------------------------------------------------- 1 | # Location of 2D textures for minigames 2 | 3 | Known files: 4 | - Dk3PcFrame.nut -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/Adlib.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/Adlib.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/BananaIsland.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/BananaIsland.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/BarrelAttack.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/BarrelAttack.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/DemoEnding.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/DemoEnding.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/DemoFestival.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/DemoFestival.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/DemoPrologue.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/DemoPrologue.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/DemoResult.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/DemoResult.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/DemoStaffRoll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/DemoStaffRoll.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/Dk3PbChance.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/Dk3PbChance.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/Game.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/Game.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/MemCard.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/MemCard.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/MemoData.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/MemoData.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/MemoData_tgs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/MemoData_tgs.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/README.md -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/SelectString.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/SelectString.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/SongData.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/SongData.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/SongInfo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/SongInfo.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/SongInfo_tgs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/SongInfo_tgs.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/SoundSet.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/SoundSet.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/SoundSetInfo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/SoundSetInfo.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Resource/Trial.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Resource/Trial.res -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Select/README.md -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Title/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Title/README.md -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Title/logo_tex.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Title/logo_tex.nut -------------------------------------------------------------------------------- /games/Donkey Konga 3/fs/Title/ranking_back01.nut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Donkey Konga 3/fs/Title/ranking_back01.nut -------------------------------------------------------------------------------- /games/Giftpia/Banner.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Giftpia/Banner.asm -------------------------------------------------------------------------------- /games/Giftpia/Main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Giftpia/Main.asm -------------------------------------------------------------------------------- /games/Giftpia/Menus.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Giftpia/Menus.asm -------------------------------------------------------------------------------- /games/Giftpia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Giftpia/README.md -------------------------------------------------------------------------------- /games/HomeLand/Areas/Cloots.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Areas/Cloots.asm -------------------------------------------------------------------------------- /games/HomeLand/Areas/Park.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Areas/Park.asm -------------------------------------------------------------------------------- /games/HomeLand/Areas/Room.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Areas/Room.asm -------------------------------------------------------------------------------- /games/HomeLand/Banner.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Banner.asm -------------------------------------------------------------------------------- /games/HomeLand/Chatter.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Chatter.asm -------------------------------------------------------------------------------- /games/HomeLand/Main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Main.asm -------------------------------------------------------------------------------- /games/HomeLand/Menus.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Menus.asm -------------------------------------------------------------------------------- /games/HomeLand/Names/Items.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Names/Items.asm -------------------------------------------------------------------------------- /games/HomeLand/Names/Monsters.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Names/Monsters.asm -------------------------------------------------------------------------------- /games/HomeLand/Names/NPC.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Names/NPC.asm -------------------------------------------------------------------------------- /games/HomeLand/Netcfg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Netcfg.asm -------------------------------------------------------------------------------- /games/HomeLand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/README.md -------------------------------------------------------------------------------- /games/HomeLand/Unsorted.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/HomeLand/Unsorted.asm -------------------------------------------------------------------------------- /games/Kururin Squash!/Banner.asm: -------------------------------------------------------------------------------- 1 | ReplaceAsset($52E9A194, "fs/opening.bnr", 6496) -------------------------------------------------------------------------------- /games/Kururin Squash!/Main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/Main.asm -------------------------------------------------------------------------------- /games/Kururin Squash!/Obj.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/Obj.asm -------------------------------------------------------------------------------- /games/Kururin Squash!/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/README.md -------------------------------------------------------------------------------- /games/Kururin Squash!/Text.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/Text.asm -------------------------------------------------------------------------------- /games/Kururin Squash!/Title.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/Title.asm -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/README.md -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/README.md -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/Challenge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/Challenge.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/Opening.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/Opening.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/README.md -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/Rank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/Rank.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/boss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/boss.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/item.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/item.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/item2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/item2.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/mode.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/shop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/shop.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/shop2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/shop2.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/stage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/stage.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/type.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/text/vsmenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/text/vsmenu.txt -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/title/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/title/README.md -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/demo/title/title.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/demo/title/title.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/gba/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/gba/README.md -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/README.md -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/ano00.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/ano00.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/ch_c_resalt.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/ch_c_resalt.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/ch_f_resalt.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/ch_f_resalt.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/fileselect.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/fileselect.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/itemlist.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/itemlist.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/option.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/option.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/pause.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/pause.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/resalt.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/resalt.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/top.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/top.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/vs_menu.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/vs_menu.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/obj/2D/w_map.txg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/obj/2D/w_map.txg -------------------------------------------------------------------------------- /games/Kururin Squash!/fs/opening.bnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Kururin Squash!/fs/opening.bnr -------------------------------------------------------------------------------- /games/Lupin Disc 1/Banner.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 1/Banner.asm -------------------------------------------------------------------------------- /games/Lupin Disc 1/Credits.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 1/Credits.asm -------------------------------------------------------------------------------- /games/Lupin Disc 1/Dialogue.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 1/Dialogue.asm -------------------------------------------------------------------------------- /games/Lupin Disc 1/Intro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 1/Intro.asm -------------------------------------------------------------------------------- /games/Lupin Disc 1/Main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 1/Main.asm -------------------------------------------------------------------------------- /games/Lupin Disc 1/Menus.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 1/Menus.asm -------------------------------------------------------------------------------- /games/Lupin Disc 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 1/README.md -------------------------------------------------------------------------------- /games/Lupin Disc 1/fs/opening1.bnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 1/fs/opening1.bnr -------------------------------------------------------------------------------- /games/Lupin Disc 1/fs/opening1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 1/fs/opening1.png -------------------------------------------------------------------------------- /games/Lupin Disc 2/fs/opening2.bnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 2/fs/opening2.bnr -------------------------------------------------------------------------------- /games/Lupin Disc 2/fs/opening2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Lupin Disc 2/fs/opening2.png -------------------------------------------------------------------------------- /games/Metal Gear Solid Special Disc/Main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Metal Gear Solid Special Disc/Main.asm -------------------------------------------------------------------------------- /games/Metal Gear Solid Special Disc/Menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Metal Gear Solid Special Disc/Menu.asm -------------------------------------------------------------------------------- /games/Metal Gear Solid Special Disc/NES.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Metal Gear Solid Special Disc/NES.asm -------------------------------------------------------------------------------- /games/Metal Gear Solid Special Disc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Metal Gear Solid Special Disc/README.md -------------------------------------------------------------------------------- /games/Metal Gear Solid Special Disc/fs/local/Image/MenuExplanatoryNote_A.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Metal Gear Solid Special Disc/fs/local/Image/MenuExplanatoryNote_A.tpl -------------------------------------------------------------------------------- /games/Metal Gear Solid Special Disc/fs/local/Image/MenuExplanatoryNote_B.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Metal Gear Solid Special Disc/fs/local/Image/MenuExplanatoryNote_B.tpl -------------------------------------------------------------------------------- /games/Metal Gear Solid Special Disc/fs/local/Image/MenuStr_L.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Metal Gear Solid Special Disc/fs/local/Image/MenuStr_L.tpl -------------------------------------------------------------------------------- /games/Metal Gear Solid Special Disc/fs/local/Image/MenuStr_R.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Metal Gear Solid Special Disc/fs/local/Image/MenuStr_R.tpl -------------------------------------------------------------------------------- /games/Metal Gear Solid Special Disc/fs/local/tgc/JPN_JPN_METALGEAR.tgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Metal Gear Solid Special Disc/fs/local/tgc/JPN_JPN_METALGEAR.tgc -------------------------------------------------------------------------------- /games/Taxi 3 - The Game/Ingame.asm: -------------------------------------------------------------------------------- 1 | //ReplaceAsset($1190064, "fs/Data/Misc/ingame/HUDa4GCN.txg", 262188) -------------------------------------------------------------------------------- /games/Taxi 3 - The Game/Main.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Taxi 3 - The Game/Main.asm -------------------------------------------------------------------------------- /games/Taxi 3 - The Game/Menu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Taxi 3 - The Game/Menu.asm -------------------------------------------------------------------------------- /games/Taxi 3 - The Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Taxi 3 - The Game/README.md -------------------------------------------------------------------------------- /games/Taxi 3 - The Game/fs/Data/Menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Taxi 3 - The Game/fs/Data/Menu/README.md -------------------------------------------------------------------------------- /games/Taxi 3 - The Game/fs/Data/Menu/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Taxi 3 - The Game/fs/Data/Menu/credits.txt -------------------------------------------------------------------------------- /games/Taxi 3 - The Game/fs/Data/Menu/fr_menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Taxi 3 - The Game/fs/Data/Menu/fr_menu.txt -------------------------------------------------------------------------------- /games/Taxi 3 - The Game/fs/Data/Menu/fr_missions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Taxi 3 - The Game/fs/Data/Menu/fr_missions.txt -------------------------------------------------------------------------------- /games/Taxi 3 - The Game/fs/Data/Misc/ingame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/games/Taxi 3 - The Game/fs/Data/Misc/ingame/README.md -------------------------------------------------------------------------------- /isos/PUT JP ISOS HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/OUTPUT EN ISOS HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/build/Donkey Konga 3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/scripts/build/Donkey Konga 3.bat -------------------------------------------------------------------------------- /scripts/build/Giftpia.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/scripts/build/Giftpia.bat -------------------------------------------------------------------------------- /scripts/build/Homeland.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/scripts/build/Homeland.bat -------------------------------------------------------------------------------- /scripts/build/Kururin Squash!.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/scripts/build/Kururin Squash!.bat -------------------------------------------------------------------------------- /scripts/build/Lupin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/scripts/build/Lupin.bat -------------------------------------------------------------------------------- /scripts/dump/HomeLand.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/scripts/dump/HomeLand.bat -------------------------------------------------------------------------------- /tools/HVQM4 Viewer/HVQM4DecM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/tools/HVQM4 Viewer/HVQM4DecM.dll -------------------------------------------------------------------------------- /tools/HVQM4 Viewer/Hvqm4Viewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/tools/HVQM4 Viewer/Hvqm4Viewer.exe -------------------------------------------------------------------------------- /tools/SJIS_Dump.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/tools/SJIS_Dump.exe -------------------------------------------------------------------------------- /tools/gcr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BttrDrgn/GCN-Translations/HEAD/tools/gcr.exe --------------------------------------------------------------------------------