Briefly, this is a mod that enables loading alternative, multilingual versions of End Poem.
In addition, the mod enables you to customize your End Poem, inserting text before/after the End Poem, and append your mod / resource pack credits after Mojang.
Here's a list of files that you can customize:
- Localized End Poem:
assets/end_poem_extension/texts/end_poem/xx_xx.txt
wherexx_xx
is replaced with language code.- Format: same as vanilla End Poem in
assets/minecraft/texts/end.txt
.
- Format: same as vanilla End Poem in
- Localized PostCredits:
assets/end_poem_extension/texts/postcredits/xx_xx.txt
wherexx_xx
is replaced with language code.- Format: same as above.
- Mod / Resource Pack Credits:
assets/*/texts/mod_credits.json
where*
can be any namespace you like.- Format: same as Mojang credits in
assets/minecraft/texts/credits.json
.
- Format: same as Mojang credits in
- Splash texts:
assets/minecraft/texts/splash_modify.json
.- Format:
{
"add": [
"Thanks Julian!",
"Never Gonna Give You Up!",
"You're Rickroll'd!",
"..."
],
"remove": [
"...!",
"Scary!"
]
}
- Text before/after the End Poem:
assets/end_poem_extension/poem_pre.json
,assets/end_poem_extension/poem_post.json
.- Format: just list the files. The following example indicates loaded files are:
assets/example/path/to/file1.txt
assets/example/path/to/file2.txt
assets/example/path/to/dir3/xx_xx.txt
wherexx_xx
is current language code, anddefault_suffix
property can be omitted (defaulting totxt
).
- The index files will not be overwritten by other resource packs.
- This format will be used in the following JSON index files.
- Format: just list the files. The following example indicates loaded files are:
[
"example:path/to/file1.txt",
"example:path/to/file2.txt",
{
"is_i18n": true,
"path": "example:path/to/dir3",
"default_suffix": "txt"
}
]
- Inserting texts before/after
postcredits.txt
:assets/end_poem_extension/pre_postcredits.json
,assets/end_poem_extension/post_postcredits.json
- Format: See above
- Inserting credits before Mojang (not recommended):
assets/end_poem_extension/pre_mojang_credits.json
- Format: See above (default value of
default_suffix
is herejson
instead)
- Format: See above (default value of
Enjoy Mining!