Files
minecraft-bedrock-json-schemas/source/behaviour/entities/1.8.0/components/minecraft.damage_over_time.json
2021-02-01 18:39:12 +01:00

24 lines
704 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.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"
}
}
}