Step 6: Adding the song into the DLC Builder - despairoharmony/TaikoVDLCBuilder GitHub Wiki
What do you need:
- A text editor (suggestion: Notepad++)
Adding the song into the DLC Builder
Now with the DLC ready, we are going to add it into the DLC Builder, so we are going to get back to "Data" folder, created in Step 1
Then we create a text file called "songdata.json"
Open this file in a text editor and add this syntax:
{
"Itens": [
{
"name": "", // This indicates the name of the song
"nameJP": "", // This indicates the name of the song in japanese
"genreNo": 0, // This indicates the genre of the song, it follow the same order from SongInfo.dat
"folder": "", // This indicates the name of the folder inside Songs where the DLC is located
"starEasy": 1, // This indicates the number of stars in easy mode
"starNormal": 1, // This indicates the number of stars in normal mode
"starHard": 1, // This indicates the number of stars in hard mode
"starMania": 1, // This indicates the number of stars in extreme mode
"starUra": 0, // This indicates the number of stars in ura mode BE CAREFUL: only add a number higher than 0 if the song really have ura
"source": "" // This indicates where the song came
}
]
}
To our case we are going to have the following text in the .json file:
{
"Itens": [
{
"name": "Kaikai Kitan",
"nameJP": "廻廻奇譚",
"genreNo": 6,
"folder": "KaikaiKitan",
"starEasy": 4,
"starNormal": 5,
"starHard": 6,
"starMania": 8,
"starUra": 0,
"source": "SWITCHDLC"
}
]
}
All done! Now use the program to generate a readdcont to use with your Vita. Have fun!