Allows the Entity to be tamed by mounting it.
Tamemount Properties
| Name | Default Value | Type | Description | Example Values |
|---|---|---|---|---|
| attempt_temper_mod | 5 | Integer number | The amount the entity's temper will increase when mounted. | |
| auto_reject_items | not set | Array of Auto Reject Items items | ||
| autoRejectItems | not set | Array of AutoRejectItems items | The list of items that, if carried while interacting with the entity, will anger it. | |
| feed_items | not set | Array of Feed Items items | The list of items that can be used to increase the entity's temper and speed up the taming process. | Llama: [{"item":"wheat","temper_mod":3},{"item":"hay_block","temper_mod":6}] |
| feed_text | not set | String | The text that shows in the feeding interact button. | Llama: "action.interact.feed" |
| max_temper | 100 | Integer number | The maximum value for the entity's random starting temper. | Llama: 30 |
| min_temper | 0 | Integer number | The minimum value for the entity's random starting temper. | |
| ride_text | not set | String | The text that shows in the riding interact button. | Llama: "action.interact.mount" |
| tame_event | not set | Minecraft Event Trigger | Event that triggers when the entity becomes tamed. | Llama: {"event":"minecraft:on_tame","target":"self"} |
Auto Reject Items
Auto reject items Properties
JSON path: auto_reject_items
| Name | Default Value | Type | Description | Example Values |
|---|---|---|---|---|
| item | not set | String | Trader Llama: "horsearmorleather" |
AutoRejectItems
Same structure as Auto Reject Items.
Feed Items
The list of items that can be used to increase the entity's temper and speed up the taming process.
Feed Items Properties
JSON path: feed_items
| Name | Default Value | Type | Description |
|---|---|---|---|
| item | not set | String | Name of the item this entity likes and can be used to increase this entity's temper. |
| temper_mod | 0 | Integer number | The amount of temper this entity gains when fed this item. |
Samples
Llama
"minecraft:tamemount": {
"min_temper": 0,
"max_temper": 30,
"feed_text": "action.interact.feed",
"ride_text": "action.interact.mount",
"feed_items": [
{
"item": "wheat",
"temper_mod": 3
},
{
"item": "hay_block",
"temper_mod": 6
}
],
"tame_event": {
"event": "minecraft:on_tame",
"target": "self"
}
}
Trader Llama
"minecraft:tamemount": {
"min_temper": 0,
"max_temper": 30,
"feed_text": "action.interact.feed",
"ride_text": "action.interact.mount",
"feed_items": [
{
"item": "wheat",
"temper_mod": 3
},
{
"item": "hay_block",
"temper_mod": 6
}
],
"auto_reject_items": [
{
"item": "horsearmorleather"
},
{
"item": "horsearmoriron"
},
{
"item": "horsearmorgold"
},
{
"item": "horsearmordiamond"
},
{
"item": "minecraft:copper_horse_armor"
},
{
"item": "minecraft:netherite_horse_armor"
},
{
"item": "saddle"
}
],
"tame_event": {
"event": "minecraft:on_tame",
"target": "self"
}
}