Files
minecraft-bedrock-json-schemas/source/behaviour/blocks/1.16.200/events/remove_mob_effect.json

23 lines
661 B
JSON
Raw Normal View History

2021-01-06 14:07:24 +01:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.1.16.200.block.events.remove_mob_effect",
"type": "object",
"description": "Removes mob effect from target.",
2021-01-18 01:29:00 +01:00
"title": "Remove mob effect 1.16.200",
2021-01-06 14:07:24 +01:00
"additionalProperties": false,
"properties": {
"effect": {
"type": "string",
"default": "",
"description": "The mob effect to remove. Use 'all' to remove all mob effects from target.",
2021-01-18 01:29:00 +01:00
"title": "Effect"
2021-01-06 14:07:24 +01:00
},
"target": {
"type": "string",
"default": "self",
"description": "The target context to execute against.",
2021-01-18 01:29:00 +01:00
"title": "Target"
2021-01-06 14:07:24 +01:00
}
}
}