Files
minecraft-bedrock-json-schemas/source/behavior/entities/1.8.0/components/minecraft.damage_over_time.json
2021-04-04 13:52:35 +02:00

14 lines
647 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.entities.1.8.0.minecraft.damage_over_time",
"type": "object",
"title": "Damage Over Time 1.8.0",
"additionalProperties": false,
"description": "Applies defined amount of damage to the entity at specified intervals.",
"required": [],
"properties": {
"damage_per_hurt": { "type": "integer", "default": 1, "description": "Amount of damage caused each hurt.", "title": "Damage Per Hurt" },
"time_between_hurt": { "type": "number", "default": 0, "description": "Time in seconds between damage.", "title": "Time Between Hurt" }
}
}