28 lines
762 B
JSON
28 lines
762 B
JSON
{
|
|
"$id": "blockception.minecraft.behavior.entities.minecraft.admire_item",
|
|
"type": "object",
|
|
"title": "Admire Item",
|
|
"description": "Causes the mob to ignore attackable targets for a given duration.",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"cooldown_after_being_attacked": {
|
|
"type": "integer",
|
|
"default": 0,
|
|
"description": "Duration, in seconds, for which mob won't admire items if it was hurt",
|
|
"title": "Cooldown After Being Attacked"
|
|
},
|
|
"duration": {
|
|
"type": "integer",
|
|
"default": 10,
|
|
"description": "Duration, in seconds, that the mob is pacified.",
|
|
"title": "Duration"
|
|
}
|
|
},
|
|
"examples": [
|
|
{
|
|
"cooldown_after_being_attacked": 0,
|
|
"duration": 10
|
|
}
|
|
]
|
|
}
|