EternalMod JSON

This .json file allows mod makers to define information about their mods, such as mod name, author(s), description and version number.

This feature is only available for zipped mods. You can not place an EternalMod JSON file at the root of your ~/Mods/ directory; it will be ignored.

How to Use:

Using the EternalMod.json file is simple:

  1. Create a file named "EternalMod.json"
  2. Place the EternalMod.json file at the root of your zipped mod, outside of the container folders. Example: ~/Mods/My_Amazing_Mod.zip/EternalMod.json
  3. Use a text editor such as Notepad++ to edit the file as needed.

Format:

This is the format of this JSON file (all fields are optional):

{
    "name":"",
    "author":"",
    "description":"",
    "version":"",
    "loadPriority":,
    "requiredVersion":
}

Example File:

Here's an example of an EternalMod.json file with all the fields filled in:

{
    "name":"Enemy Randomizer",
    "author":"proteh",
    "description":"This mod randomizes every enemy encounter in the base game and the DLCs.",
    "version":"3.0",
    "loadPriority":100,
    "requiredVersion":6
}

 


Revision #2
Created 18 February 2022 18:34:03 by SamPT
Updated 18 February 2022 18:48:47 by SamPT