24 lines
704 B
JSON
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"
|
|
}
|
|
}
|
|
}
|