# assetsinfo JSON

The "assetsinfo" JSON can be used to add entirely new assets to the game.

# Format Overview

<p class="callout info">The assetsinfo JSON format allows for advanced control over mod injector behavior.</p>

**The most common uses of assetsinfo JSON include:**

- Adding brand new textures or .decl files to the game (instead of just replacing another file)
- Controlling which of the game's .resources and .streamdb archives are loaded in a map (this allows modders to use assets that aren't normally loaded in the level/map they're working with).

## Format Overview

```C#
{
	// experimental - used to add new map layers
    "layers":[
        {
            "name":""
        }
    ],
    
    // experimental - used to add new maps
    "maps":[
        {
            "name":"" 
        }
    ],
    
    // used for adding, removing, or re-ordering of .resources files
    "resources":[
        {
            "name":"",
            "remove":,
            "placeFirst":,
            "placeBefore":,
            "placeByName":""    
        }
    ],
    
    // used for adding, removing, or re-ordering of game assets
    "assets":[
        {
            "name":"",
            "mapResourceType":"",
            "resourceType":"",
            "streamDbHash":,
            "version":,
            "remove":,
            "placeBefore":,
            "placeByName":"",
            "placeByType":"",
            "specialByte1":,
            "specialByte2":,
            "specialByte3":
        }
    ]
}
```

## "Layers" array

The first part of the assetsinfo JSON format is the **`layers`** array. This can be used to add additional layers to a map, which can then be referenced via .entities.

Each item in this array contains an object that has the **`name`** property. This field is required for each entry. In there you can set the name of the layer you want to create. It's that simple.

Here is an example usage that adds three custom layers:

```INI
{
    "layers":[
        {
            "name":"game/sp/custom/my_custom_layer"
        },
        {
            "name":"game/sp/custom/my_custom_layer_2"
        },
        {
            "name":"game/sp/custom/my_custom_layer_3"
        }
    ]
}
```

<p class="callout info">**Note:** It is unclear what effect this has on gameplay, since it is possible to add new layers to the game without this step, and all existing layers in the game can already be used in any level without additional steps anyway.  
</p>

## "Maps" array

The second part of the assetsinfo JSON format is the **`maps`** array.

As with th**e `layers`** array, each item contains an object that has the `<strong>name</strong>` property. In there you can set the name of the map you want to create. This feature is currently of limited use, since we can't create new maps anyway.

Here is an example usage that adds two custom maps:

```INI
{
    "maps":[
        {
            "name":"maps/game/sp/custom/my_custom_map" 
        },
       	{
            "name":"maps/game/sp/custom/my_custom_map_2" 
        }
    ]
}
```

## "Resources" array

The third part of the assetsinfo JSON format is the `<strong>resources</strong>` array. This one is a bit more complicated, so let's begin by explaining what this is actually for.

In DOOM Eternal, each map has a list of **.resources** and **.streamdb** files that will be loaded in the map itself. With this feature, you can tell the game to load additional .resources and/or .streamdb files in maps. In other words, **you can load files that aren't normally loaded**, giving you access to game assets and entities that normally aren't available. You can also tell the game to stop loading .resources or .streamdb files that are loaded by default in maps.

<p class="callout info">This feature is what allows us to load things like spirits and other DLC-specific enemies into the base campaign.</p>

Below is an example usage. This would add the `e5m1_spear.resources` file, as well as several .streamdb files, to a map that it is not normally loaded in. Don't worry if you don't understand this - it is explained in more detail on the [**Reference: "resources" array** ](https://wiki.eternalmods.com/books/eternalmod-json-guide/page/reference-resources-array "Reference: "resources" Array")page of the guide**.**

```INI
{
    "resources":[
        {
            "name":"e5m1_spear.resources"
        },
        {
            "name":"gameresources_6_1.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_0_6.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_1_8.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_2_2.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_3_2.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_4_3.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_5_3.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        }
    ]
}
```

## "Assets" array

The last feature in the assetsinfo JSON is the `<strong>assets</strong>` array. This is the most complicated one to understand as it has a lot of fields. In most cases, you will only need to use a few of them.

The main purpose of this section is to add entirely new assets to the game. (Most mods work by replacing another asset that already exists, rather than adding something new). For more details, refer to the [**Reference: "assets" array** ](https://wiki.eternalmods.com/books/eternalmod-json-guide/page/reference-assets-array "Reference: "assets" Array")page of the guide**.**

An example usage is below. This would add a new image file to the game:

```INI
{
    "assets":[
        {
            "resourceType":"image",
            "version":21,
            "name":"custom_textures/custom_emissive_texture.tga$bc1$streamed$mtlkind=bloommask",
            "mapResourceType":"image"
        }
    ]
}
```

## See Also

- [Reference: "resources" Array](https://wiki.eternalmods.com/books/eternalmod-json-guide/page/reference-resources-array "Reference: "resources" Array")

# Reference: "resources" Array

<p class="callout info">In DOOM Eternal, each map has a list of *.resources* and *.streamdb* files that will be loaded in the map itself. With this feature, you can tell the game to load other *.resources* and/or *.streamdb* files in maps. You can also tell the game to stop loading *.resources* or *.streamdb* files that are loaded by default in maps.</p>

## Structure

The basic structure of the "resources" array is below:

```INI
{
	"resources":[
		{
			"name":"",
			"remove":,
			"placeFirst":,
			"placeBefore":,
			"placeByName":""    
		}
	]
}
```

- **`name`** (string) (<span style="text-decoration: underline;">required</span>) - the name of the file to load, e.g. `"e5m1_spear.resources"`
- `<strong>remove</strong>` (bool) (optional) - if set to `true`, the file specified by the **`name`** property will be removed from the map. Defaults to `false` if not set.
- `<strong>placeFirst</strong>` (bool) (optional) - if set to `true`, the file specified by the **`name`** property will be loaded with the highest priority in the map. Defaults to `false` if not set.
- `<strong>placeBefore</strong>` (bool) (optional) - if set to `true`, this resource will be loaded <span style="text-decoration: underline;">before</span> the resource named in the `<strong>placeByName</strong>` property. Defaults to `false` if not set (meaning it will be loaded <span style="text-decoration: underline;">after</span>).
- `<strong>placeByName</strong>` (string) (optional) - used with `<strong>placeBefore</strong>` to control the order in which resource files are loaded. For example, setting `"placeBefore":true` and `"placeByName":"e1m1_intro.resources"` will cause the file specified by `<strong>name</strong>` to be loaded with a higher priority than e1m1\_intro.resources.

<p class="callout warning">If neither `<strong>placeBefore</strong>` nor **`placeByName`** are set, then the asset will be loaded last, with the lowest priority.</p>

## Example Usage

The most common use of this feature is to give custom map/level creators access to assets that aren't normally available in a map. For example, you can tell the game to load **e5m1\_spear.resources** (and the required .streamdb files) within another level, such as e1m1\_intro.

By doing this, a person modifying the e1m1\_intro map can then freely access files/entities from e5m1\_spear.resources, the same as if they existed in e1m1\_intro already. This would allow you to use DLC AI such as spirits (and many other things) in e1m1\_intro, where they normally can't be used.

Below is a sample .json snippet that loads the e5m1\_spear.resources and .streamdb files.

```INI
{
    "resources":[
        {
            "name":"e5m1_spear.resources"
        },
        {
            "name":"gameresources_6_1.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_0_6.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_1_8.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_2_2.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_3_2.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_4_3.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        },
        {
            "name":"gameresources_5_3.streamdb",
            "placeBefore":true,
            "placeByName":"gameresources_0_4.streamdb"
        }
    ]
}
```

## How Do I Know Which Files to Add?

First, take a look at this spreadsheet (note: there are multiple tabs at the bottom): [https://docs.google.com/spreadsheets/d/10R5fWKGyqPuCPdueqKeCYycHETSHg0QeFOCbWIQZUCY/](https://docs.google.com/spreadsheets/d/10R5fWKGyqPuCPdueqKeCYycHETSHg0QeFOCbWIQZUCY/edit#gid=179806618 "https://docs.google.com/spreadsheets/d/10R5fWKGyqPuCPdueqKeCYycHETSHg0QeFOCbWIQZUCY/edit#gid=179806618")

This spreadsheet contains the list of the default *.resources* and *.streamdb* files that are loaded in all the game's maps. So, let's say that we want to have access to all the assets in **e5m1\_spear.resources** in **e1m1\_intro.resources**. The first thing we need to do is find the "e5m1\_spear" map name in the spreadsheet, using the "map name" column.

You will see that the map name appears multiple times. This is because the map loads multiple .resources and .streamdb files. In the "file name" column you will see the names of the files that are loaded in the map. The order of the files matters. It actually goes from bottom to up, so the files at the bottom are loaded first during the map loading process, and the files at the top are loaded last. This means that the files at the top override the others (if they share files in common). This is what we refer to as **load priority**.