Editing Mob Soul Types

Mystical Customization allows you easily edit registered mob soul types.

Editing A Mob Soul Type

Mob soul types are edited via a JSON file located in /config/mysticalcustomization/ called configure-mobsoultypes.json.

This file will contain an empty JSON object on first launch. You will use this as a mob soul type ID -> mob soul type changes map.

Example Entry

{
  "mysticalagriculture:zombie": {
    "name": "Undead Brothers",
    "souls": 300
  }
}

The configure-mobsoultypes File

This section will go over the values available to use to edit mob soul types. Syntax can be inferred from the example JSON below.

Name

You can change the name of a mob soul type.

{
  "name": "Animals"
}

Souls

You can change the amount of souls required for a mob soul type.

{
  "souls": 10.5
}

Color

You can change the color of the Soul Jar for a mob soul type. Colors are set using HEX values.

{
  "color": "#aaaaaa" 
}

Example File

{
  "mysticalagriculture:zombie": {
    "name": "Zombie, but Modified",
    "souls": 23,
    "color": "#3434a1"
  },
  "mysticalagriculture:skeleton": {
    "souls": 5000
  }
}