35 lines
1.8 KiB
JSON
35 lines
1.8 KiB
JSON
{
|
||
"$schema": "http://json-schema.org/draft-07/schema",
|
||
"$id": "blockception.minecraft.behaviour.1.16.200.block.events.add_mob_effect",
|
||
"type": "object",
|
||
"description": "Apply mob effect to target.",
|
||
"title": "add mob effect",
|
||
"additionalProperties": false,
|
||
"properties": {
|
||
"amplifier": {
|
||
"type": "integer",
|
||
"default": 0,
|
||
"description": "The amplifier for the mob effect.",
|
||
"title": "amplifier"
|
||
},
|
||
"duration": {
|
||
"type": "number",
|
||
"default": 0,
|
||
"description": "The duration of the mob effect.",
|
||
"title": "duration"
|
||
},
|
||
"effect": {
|
||
"type": "string",
|
||
"default": "",
|
||
"description": "The mob effect to apply.",
|
||
"title": "effect"
|
||
},
|
||
"target": {
|
||
"type": "object",
|
||
"default": "self",
|
||
"description": "The target context to execute against.",
|
||
"title": "target"
|
||
}
|
||
}
|
||
}
|