Back to mods
Tameable project artwork

CurseForge · Minecraft mod

Tameable

Tame everything!

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Tameable release should I use?

Updated 1 year ago
Latest stable file Tameable-1.5.1-forge.jar
Game version 1.20.1
Loader NeoForge, Forge

Tameable-1.5.1-forge.jar targets 1.20.1 with NeoForge, Forge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.

Where it goes

Is Tameable required on the client, server, or both?

The project page does not say whether this file belongs on the client, dedicated server, or both.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release NeoForge, Forge
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Tameable-1.5.1-forge.jar need?

Tameable-1.5.1-forge.jar. Change the file and its required mods may change too.

No extra mods listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

1 listed on this file 1 pulled in by one of those mods
Jade 🔍 Optional for Tameable-1.5.1-forge.jar
optional
Matching file found Matched file: [Forge 1.20.1] 11.13.3
Just Enough Items (JEI) Needed by Jade 🔍
pulled in
Matching file found Matched file: 15.59.0.211 for Forge 1.20.1

1 extra mod was pulled in by another dependency. Indented rows show who needs each one. We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add Tameable without breaking your instance.

Built for Tameable-1.5.1-forge.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use Tameable-1.5.1-forge.jar. It targets 1.20.1 with NeoForge, Forge; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Put it on the correct side

    The project page does not say whether this file belongs on the client, dedicated server, or both.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside Tameable-1.5.1-forge.jar. It opens that exact file at the source.

About this project

What does Tameable add?

Tameable

Someone ask me whether they can tame Ingresssus Voltaris (Death Singer) in my SoW Server, so this mod comes out.

This mod provides a configurable system to control which mobs you can tame.

Note: Some entities may meet bugs since this mod doesn't rewrite the full AI!

If you are a newcomer of datapack or just want to tame everything, try this addon: Tame Tools(CurseForge|Modrinth)

How to use

You can use command /tame <entityUuid> <ownerUuid> to tame manually (ownerUuid leave blank to remove owner). Also, there are two ways to configure.

Configure with data driven (Recommended)

Create file data/<entity mod id>/tameable/<entity id>.json in your datapack or mod. Then write contents below:

{
  "tame": [
    //Which item you can use to tame
    "a single item",
    "#or a tag"
  ],
  "breed": [
    //Which item you can use to breed. If you leave blank, it will use tame item.
    //Breed amount: value set -> food component -> 1
    "a single item",
    "#or a tag",
    {
      //or an object
      "item": "item or tag",
      "heal": 1
    }
  ],
  //The taming chance
  "chance": 0.1,
  //should attack what player is attacking
  "attack": true,
  //should attack what is attacking player
  "protect": true,
  "follow": {
    //should follow player
    "enable": true,
    //follow speed
    "speed": 1,
    //The max range to stop follow
    "minDistance": 10,
    //The min range to start follow
    "maxDistance": 2,
    //Can leave
    "leavesAllowed": false
  }
}

Default Values:

 {
  "tame": [
    //This is the only required field
  ],
  "breed": [
    //Optional, will use tame item if this field not exist or blank
    "item or tag",
    {
      //or an object
      "item": "item or tag",
      "heal": 1
    }
  ],
  //The taming chance
  "chance": 1,
  "attack": false,
  "protect": false,
  "follow": {
    //These value except "enable" is the default value of a wolf
    "enable": false,
    "speed": 1,
    "minDistance": 10,
    "maxDistance": 2,
    "leavesAllowed": false
  }
}

Example:

Write contents into data/minecraft/tameable/pillager.json, you can tame pillagers with apples and breed with apples&stones

{
  "tame": [
    "minecraft:apple"
  ],
  "breed": [
    "minecraft:apple",
    {
      "item": "minecraft:stone",
      "heal": 5
    }
  ],
  "chance": 0.1,
  "attack": true,
  "protect": true,
  "follow": {
    "enable": true
  }
}

Configure with config file

NOTE:This will overwrite settings in datapack(s)!

Open file .minecraft/config/tameable.json. If this file not exists, create it.

You can use /reload in game to reload your edited config.

Config explanation:

{
  "entity type here": {
    //An object in datapack format, see it above
  }
  //... more
}

Example:

With config following, you can tame pillagers with apples and breed with apples&stones

{
  "minecraft:pillager": {
    "tame": [
      "minecraft:apple"
    ],
    "breed": [
      "minecraft:apple",
      {
        "item": "minecraft:stone",
        "heal": 5
      }
    ],
    "chance": 0.1,
    "attack": true,
    "protect": true,
    "follow": {
      "enable": true
    }
  }
}

Project description from CurseForge.

Pick your setup

Tameable by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

3 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Tameable versions and loaders

22 of 22 releases match

Looking for an older file? The official CurseForge project page is in Resources.