* Fixed the links in the docs * Fixed broken tables Tables without a line break above are not treated as valid tables * Removed redundant table of contents and formatted some bulleted lists * The image in Regions.md is now properly displayed * Standardized list indentation, line spacing, table header rows, and JSON code blocks * Standardized headers * Fixed remaining broken links, edited pseudo-footnotes
8.5 KiB
Mods
What's this about?
Everyone has that thing they wish could be in the game. Unfortunately, the game only understands code, so mods are our way to give a degree of freedom to those of us who don't code.
Mods can add, replace and remove basic game definitions, such as units, nations, buildings, improvements, resources and terrains. Games loaded with these mods will function according to the mod definition.
The game only knows how to recognize existing definitions, so you can't add new unique abilities to nations/units/buildings/etc, only play around with existing ones
There are two kinds of mods:
- Extension mods - these add new nations/units/buildings/resources to a base ruleset - can be either to the default ruleset, or to a base ruleset mod. Easy to do and probably the better place to get started.
- Base Ruleset mods - these replace the entire existing ruleset - tech tree, units, policies, nations etc - to give an entirely different experience than the base game. These generally require quite a bit of work, but give a whole new experience, and so are the most popular.
Creating and editing mods from your phone is NOT RECOMMENDED - it's much easier using a desktop device!
Audiovisual Mods
I addition to changing the rules - or even without doing so, mods can override existing graphics or sounds, or add music tracks. The game also has the ability to display graphics that are not included in the base game at all, such as leader portrait or wonder splash images, that must be provided by mods. For details, see Audiovisual Mods.
Custom tilesets are closely related, see Creating a custom tileset.
Such mods are candidates for the "Permanent audiovisual mod" switch available on the Mod Management Screen. Note that this feature includes graphics or sounds from the selected mod in all games, even those started before installing the mod. In case of a mod bringing both changed rules and audiovisuals, the 'permanent' feature will include only the media on all games, to use the rules you will still need to select the mod for a new game.
Mod names
Mods need to conform to github repo naming rules, but best stay simple and use only letters, digits, and dashes -
. Dashes are automatically converted to spaces for display and use within Unciv. Many punctuation or extended unicode characters might work, but at best potential users won't find them attractive, at worst we'll refuse support when you run into problems 😈
Mod components
Mods are located in a /mods
directory, on Desktop that should be next to your .jar file.
Mods typically have 2 subfolders:
- jsons - here you should put files that alter the data of game objects, the order of the files is as in the base json files. More information on these can be found here
- Images - here you should put game images, as in the base image files. Please read the atlas chapter for important details.
In order to remove objects from the game, you'll need to create a ModOptions file in the /jsons
subfolder - there's an example here
In a base ruleset mod, ALL the original objects are removed - this is done by adding a "isBaseRuleset":true
configuration to your modOptions file, like so
For an example, you can refer to the example mod - just download the Example-Aliens-Mod and put it in a /mods
folder next to the jar, run Unciv, start a new game, and you'll be able to enable the mod, which will allow to you pick Aliens as a playable civilization!
If you want to add a new civilization as a mod, you should check out the Civ making instructions to see what's required, or see the example Aliens mod =)
More on Images and the texture atlas
Images are combined (at runtime) into texture images with an 'atlas', so if you see "game.atlas" and "game.png" files being generated, now you know what for. Most mods will need only one pair of those, the base game has around four.
When the game runs from a packaged distribution (android, jar), the texture+atlas files alone are relevant, so you need to include them in your repository and keep them up to date. Actually omitting the original images would work for these uses, but we still recommend including them, so developers running from source can access them.
If your mod has lots of images (or large ones), the textures might 'spill' into additional texture ".png" files - 2048x2048 is the limit for a single texture pack. This is not good for performance, which is why the base game controls which kinds of images go together into one texture(+atlas). This works for mods, too: Create not only one Images folder, but several, the additional ones named "Images.xyz", where xyz will become the filename of the additional texture file (So don't use both Images and Images.game - those will clash). Look at the Unciv base game to get a better idea how that works. To minimize texture swaps, try to group them by the situation where in the game they are needed. You can distibute by folder, but having the same subfolders under several "Images.xyz" and distributing the images between them will also work.
Adding maps to mods
You can also add maps to mods, so they'll be available to players who download your mod.
A mod can also be maps-only, if all you want to do is share your maps.
When you've finished making your map in the Map Editor, save it, and it will be in the /maps
folder of your game.
Copy it to a /maps
folder in your mod, and you're done!
Getting your mod out there
In order to make your mod downloadable by anyone, you need to create a Github repository (instructions here)
The Images and jsons folders need to be in the root directory of the repo - see here for example.
You can then manually download the mod from within the Mod Manager in Unciv:
- From Unciv's main screen, click "Mods"
- Click "Download mod from URL", and enter the location of your Github page
- The game will automatically download and extract your mod, and it'll be ready to use!
Once you've tested that your mod CAN be downloaded, and that it works well once downloaded, you're ready for the final stage - GETTING IT TO THE USERS AUTOMATICALLY.
In order to do this, all you need to do is:
- Go to your Github page
- Click the gear icon next to the About (top-right part of the page)
- In 'Topics', add "unciv-mod"
When you open your app, it will query Github's list of repos with that topic, and now YOUR repo will appear there!
I have the mod, now what?
The primary use of mods is to add them when starting a new game, or configuring a map. This will mean that both the ruleset of the mod, and the images, will be in use for that specific game/map.
For mods which are primarily visual or audio, there is a second use - through the mod manager, you can enable them as permanent audiovisual mods. This means that the images, sounds (or upcoming: music) from the mod will replace the original media everywhere in the game.
Mod location for manual loading of mods
In general, you should never be manually-loading your mods - not only is this clunky, it's also more error-prone. Unless you have a very specific use-case, you probably shouldn't be doing this.
In Android, they should go into the Android/data/com.unciv.app/files/mods
directory.
In Chromebook, go to "Play files", should be on the sidebar on the left side of the window under "My files". Click the 3 vertical dots on the top right-hand corner of the window below the "X".
If the option "Show all Play folders" does not have a check next to it click it. You should see some new files that appear on your screen. Now navigate to Android/data/com.unciv.app/files/mods
When loading a mod, it needs to be in its own folder in /mods
- this is how you will work when you're editing your mod.
Other
Existing mods can be found here!
A list of uniques and how to use them can be found here!
Some images don't exist at all in the base game, but can be added in mods. For more info, see Audiovisual Mods.