We are moving to Featurehouse/packs.epx.featurehouse.org. This repository will be archived & deprecated.
This is a repository for End Poem Extension Recommended Pack.
API: https://featurehouse.github.io/epx_packs/v2/dl
Feel free to send a PR if you have good translations!
- Upload a demo in
demofolder, prefixed withX-. (optional) - Upload a Minecraft-readable version under
nopool/v2folder. See the Traditional Chinese version as an example. It depends on you whether to include the original English script - For Chinese versions, we chose yes. - Add your file to
static.json. Fill the JSON key with filename specified in the mod description, and value with file object.
{
//...
"assets/end_poem_extension/texts/end_poem/fr_fr.txt": {
"fetch": "nopool/v2/fr_fr.txt"
}
//...
}Of course, you are allowed to add a copyright file to the ZIP. For example, create a fr_fr.copyright file with a plaintext file object.
We're not sure if that'll happen, but if it will, you're welcomed!
Create a new root object (other than splashes, etc.) in dynamic_other.json.
Refer to the present items as examples, where default weight is 100.
If you want the browser to decide which file(s) are to be chosed, set default to "random" (instead of an index number).
A. Plain text:
(it is recommended to avoid using non-ASCII characters. If you have to, escape them: \u516d)
{
"raw": "#!/usr/bin/env python3\nprint('Hello World')"
}B. Base64-ed text
(example: 你好世界 lit. Hello World)
{
"base64": "5LiW55WM77yM5L2g5aW977yB"
}C. Remote content
(This may be the most common type in the resource pack)
{
"fetch": "nopool/v2/postcredits.zh_hant.txt"
}