# modinfo.json

For average mods:

```
{
"mod_name": "Juliaz",
"author": "KingJulz",
"version": "1.1",
"priority": 4,
"description": "A lighter/more casual version of some of Aloy's outfits.",
"link": "https://www.nexusmods.com/horizonforbiddenwest/mods/123?tab=files",
"tags": ["light", "outfit", "casual", "Hair", "Custom_Outfit"] 
}
```

For mods with partial \[span] object:

Requirements -  target\_core, guid, size.

Optional -  type.

```
{
"mod_name": "Juliaz",
"author": "KingJulz",
"version": "1.1",
"priority": 0,
"description": "Just another one of my crazy distractions.",
"link": "https://www.nexusmods.com/horizonforbiddenwest/mods/123?tab=files",
"tags": ["light", "outfit", "casual", "Hair", "Custom_Outfit"],

"target_core": "5E_028366EA",
"guid": "3ba56e05-c9c1-0145-afb2-b72bee44ff70",
"size": "0x70",
"type": "HUDImageResource"
}
```

For mods with multiple partial objects:

Requirements - target\_core, object\_patches, guid, size.

Optional - type, index.

```
{
"mod_name": "Juliaz",
"author": "KingJulz",
"version": "1.1",
"priority": 0,
"description": "Just another one of my crazy distractions.",
"link": "https://www.nexusmods.com/horizonforbiddenwest/mods/123?tab=files",
"tags": ["light", "outfit", "casual", "Hair", "Custom_Outfit"],

"target_core": "5E_028366EA",
"object_patches": [
	{ "guid": "7b9aaf2a-eeb4-3f46-ad0d-c0c439f4a2e1", "size": "0x70", "type": "HUDImageResource"},
  { "guid": "23a6901b-96dd-844a-95dd-fc2b35334948", "size": "0x66", "type": "HUDElementResource", "index": 1}
 ]
}
```

Notes:

* `mod_name` It is optional but recommended. If omitted, **HFW-MM** will automatically use the name of the mod folder.
* If `priority` was not specified, MM will assign the default lowest priority, \[5].\
  \- Please note that \[0] indicates the highest priority when packing.
* `tags` will assist in filtering the search list.
* `tags` are also used when patching Hair to Outfits.
* `target_core` is required when patching multple span of UUID objects.
* List each `guid` and `size` under `object_patches`.

Use the first template, unless you know what you're doing.
