3. Patching the Japanese DLC into English - SilentHeII/Fire-Emblem-Fates-Festival-of-Bonds-Translation-Project GitHub Wiki
Overview
Now that we have all the necessary files needed it's time to patch the DLC. We'll need to convert the text files of the project into the archive format used by Fates. First, we're going to need a couple of programs.
What you will need:
Download all of these files and put them in a directory you are going to use for the patching process. I'll hereby reference this as the project directory.
Converting the .txt files into .bin.lz archives
- Download the project files from the github.
- Place the
SpringScramble
andFallScramble
folders in another folder in your project directory. For the sake of this tutorial, I placed them in a folder namedTranslation Files
. The reason we're doing this is we don't want the files to be overwritten when we extract the Japanese DLC files. Anyway, you will notice that the translation project only contains 6.txt
files. 3 for each DLC. For the Spring Scramble there areEA_狐面.txt
,EI_聖痕の紋章.txt
, andE000.txt
. For the Fall Scramble there areEA_南瓜頭.txt
,EI_英雄王の紋章.txt
, andE000.txt
. - Open up
FEAT.exe
. - Drag and drop each
.txt
file into FEAT. 2 additional files will be generated per.txt
file. The files we are interested in are the files with the.bin.lz
extension. Also be sure to keep each generated file in the same directory the original.txt
file was in for easier drag and drop purposes. - Once you have generated all 6
.bin.lz
files you may delete all the remaining.txt
and.bin
files.
Patching the Spring Scramble DLC
- Copy and paste all the contents from the
DLC
folder on your SD Card to your project directory. - Double check that
ctrtool.exe
is in the same directory as the DLC.app
files. - Open up command prompt in that directory (on windows go to
File -> Open command prompt
in file explorer). - Copy paste this code into the cmd for US versions:
ctrtool 00000063.app --romfs=SpringScramble.bin
. EU versions:ctrtool 0000006b.app --romfs=SpringScramble.bin
. You should now have a romfs file namedSpringScramble.bin
in your directory. - Now, copy paste this code into cmd:
ctrtool --romfsdir=SpringScramble SpringScramble.bin
. The contents of the romfs should be extracted into a folder calledSpringScramble
. - Drag and drop the
SpringScramble
folder from yourTranslation Files
directory to the root of your project directory. When prompted, overwrite the three files.
Patching the Fall Scramble DLC
- Like before, open up command prompt.
- Copy paste this code into the cmd:
ctrtool 0000006c.app --romfs=FallScramble.bin
. You should now have a romfs file namedFallScramble.bin
in your directory. - Now, copy paste this code into cmd:
ctrtool --romfsdir=FallScramble FallScramble.bin
. The contents of the romfs should be extracted into a folder calledFallScramble
. - Drag and drop the
FallScramble
folder from yourTranslation Files
directory to the root of your project directory. When prompted, overwrite the three files.
Congratulations! You have now patched the DLC into English!
Now it's time to rebuild the DLC.