WNT is a small Minecraft mod, which adds only one (for now) simple feature. Random world name generator exactly like in Terraria! (Not 100% sure, but anyway)
PLEASE report any issues on GitHub, it'll make the mod better and testing with debugging easier.
Thank you!
P.S. Feel free to include this mod to your modpacks
Mod adds a button to the world creation screen, on the left from world name field. When you press the button it chooses 4 random entries from specific files and creates a unique name.
I HAVEN'T TESTED WITH OTHER MODS YET, but until the other mod doesn't change how Minecraft renders screen it should work!
Right now it officially supports 4 languages:
Mod uses Minecraft's resource manager (simpler - Resourcepacks) to access files, so it's very simple to add your own variants/localizations!
First of all you need to know how to handle resources, here is the structure of 'resourcepack':
assets/
├─ wnt/
│ ├─ LOCALE_CODE/
│ │ ├─ adjectives.txt
│ │ ├─ compositions.txt
│ │ ├─ locations.txt
│ │ ├─ nouns.txt
Important things to know about it:
LOCALE_CODE folder (en_us, ru_ru, etc.) - MUST be lowercase. If you don't know language code you can simply google it or if locale is not supported by the mod you can found its code in the logs under 'Error while loading localization files…'@ - Adjective# - Location$ - Nounadjectives.txt, locations.txt, nouns.txt - are just lists with variants separated by lines, they'll replace @, # or $(examples)So to modify the original mod you simply need to create a resource pack with a suitable pack.mcmeta and directory assets/wnt/LOCALE_CODE/ where you'll put the files you'd like to modify or add. You can also override already existing resources as well as adding new locales!
Thanks!
terraria.wiki.gg for provided lists of words which this mod uses.