WikiWiki
Home
  • Getting Started
  • Wiki
  • Creating Your Own Items
Home
  • Getting Started
  • Wiki
  • Creating Your Own Items
  • Content

    • Creating Your Own Items
    • Custom Items
    • Creating Soldier POIs
    • Adding new Teams
    • Item Set Types
    • Tags
    • Examples
    • Item Properties
    • Soldier Attributes
    • Common Values

Adding new Teams

To add new teams, you need to define them in the teams.json file.

└─ data
   └─ (your data pack name)
      └─ csr
         └─ clay_teams                     
            └─ your_team.json

The structure for team entry is as follows:

{
  "name": name, 
  "color": number,
  "from": item,
  "propeties": {
    ...
  }
}
KeyDescriptionRequired
nameThe Name of the team.Yes
colorThe color representing the team, specified as an integer or a hex color code.Yes
fromThe item used to craft this team.No
propertiesAdditional properties that grant unique bonuses or traits to the team.No

Caution

Remove Teams after a World was already loaded can cause some issues.

Example: Adding a Purple Team

Here's an example of adding a new Purple Team that is crafted from an amethyst shard and is always invisible. The hex color code #9400D3.

In the amethyst.json file:

{
  "name": "Amethyst",
  "color": "#9400D3",
  "from": "amethyst_shard",
  "properties": {
    "invisible": true
  }
}
Last Updated:
Contributors: XcraX1
Prev
Creating Soldier POIs
Next
Item Set Types