updating todo titles
This commit is contained in:
@@ -35,14 +35,20 @@
|
||||
"description": "The range for the random amount of time the fuse will be lit before exploding, a negative value means the explosion will be immediate.",
|
||||
"title": "Fuse Length",
|
||||
"oneOf": [
|
||||
{ "type": "array", "items": [{ "type": "number" }, { "type": "number" }] },
|
||||
{
|
||||
"type": "array",
|
||||
"items": [
|
||||
{ "type": "number", "title": "Minimum" },
|
||||
{ "type": "number", "title": "Maximum" }
|
||||
]
|
||||
},
|
||||
{ "type": "number" },
|
||||
{
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"range_min": { "type": "number", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"range_max": { "type": "number", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" }
|
||||
"range_min": { "type": "number", "description": "UNDOCUMENTATED", "title": "Range min" },
|
||||
"range_max": { "type": "number", "description": "UNDOCUMENTATED", "title": "Range max" }
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"additionalProperties": false,
|
||||
"required": [],
|
||||
"properties": {
|
||||
"anchor": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"anchor": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Anchor" },
|
||||
"angle_offset": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
@@ -45,7 +45,7 @@
|
||||
"title": "Gravity"
|
||||
},
|
||||
"hit_sound": { "type": "string", "default": "", "description": "The sound that plays when the projectile hits something", "title": "Hit Sound" },
|
||||
"hit_ground_sound": { "type": "string", "default": "", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"hit_ground_sound": { "type": "string", "default": "", "description": "UNDOCUMENTATED", "title": "Hit Ground Sound" },
|
||||
"homing": { "type": "boolean", "default": false, "description": "If true, the projectile homes in to the nearest entity", "title": "Homing" },
|
||||
"inertia": {
|
||||
"type": "number",
|
||||
@@ -99,127 +99,127 @@
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "On Hit",
|
||||
"properties": {
|
||||
"catch_fire": {
|
||||
"additionalProperties": false,
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "Catch Fire",
|
||||
"type": "object",
|
||||
"properties": { "fire_affected_by_griefing": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" } }
|
||||
"properties": { "fire_affected_by_griefing": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "Fire Affected By Griefing" } }
|
||||
},
|
||||
"definition_event": {
|
||||
"additionalProperties": false,
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "Definition Event",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"affect_projectile": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"affect_projectile": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "Affect Projectile" },
|
||||
"event_trigger": { "$ref": "../types/event.json" }
|
||||
}
|
||||
},
|
||||
"douse_fire": { "type": "object", "additionalProperties": false, "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"douse_fire": { "type": "object", "additionalProperties": false, "description": "UNDOCUMENTATED", "title": "Douse Fire" },
|
||||
"grant_xp": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "Grant XP",
|
||||
"effect": "levitation",
|
||||
"properties": {
|
||||
"minXP": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"maxXP": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" }
|
||||
"minXP": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Minimum XP" },
|
||||
"maxXP": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Maximum XP" }
|
||||
}
|
||||
},
|
||||
"impact_damage": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "Impact Damage",
|
||||
"properties": {
|
||||
"catch_fire": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"damage": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"destroy_on_hit": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"knockback": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"semi_random_diff_damage": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" }
|
||||
"catch_fire": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "Catch Fire" },
|
||||
"damage": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Damage" },
|
||||
"destroy_on_hit": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "Destroy On Hit" },
|
||||
"knockback": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "Knockback" },
|
||||
"semi_random_diff_damage": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "Semi Random Diff Damage" }
|
||||
}
|
||||
},
|
||||
"mob_effect": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "Mob Effect",
|
||||
"effect": "levitation",
|
||||
"properties": {
|
||||
"effect": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"durationeasy": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"durationnormal": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"durationhard": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"amplifier": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" }
|
||||
"effect": { "type": "string", "description": "UNDOCUMENTATED", "title": "Effect" },
|
||||
"durationeasy": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Duration Easy" },
|
||||
"durationnormal": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Duration Normal" },
|
||||
"durationhard": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Duration Hard" },
|
||||
"amplifier": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Amplifier" }
|
||||
}
|
||||
},
|
||||
"particle_on_hit": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "Particle On Hit",
|
||||
"properties": {
|
||||
"particle_type": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"num_particles": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"on_entity_hit": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"on_other_hit": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" }
|
||||
"particle_type": { "type": "string", "description": "UNDOCUMENTATED", "title": "Particle Type" },
|
||||
"num_particles": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Number Particles" },
|
||||
"on_entity_hit": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "On Entity Hit" },
|
||||
"on_other_hit": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "On Other Hit" }
|
||||
}
|
||||
},
|
||||
"remove_on_hit": { "additionalProperties": false, "type": "object", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"remove_on_hit": { "additionalProperties": false, "type": "object", "description": "UNDOCUMENTATED", "title": "Remove On Hit" },
|
||||
"spawn_chance": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "Spawn Chance",
|
||||
"properties": {
|
||||
"first_spawn_percent_chance": { "type": "number", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"first_spawn_chance": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"second_spawn_chance": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"first_spawn_count": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"second_spawn_count": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"spawn_definition": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"spawn_baby": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" }
|
||||
"first_spawn_percent_chance": { "type": "number", "description": "UNDOCUMENTATED", "title": "First Spawn Percent Chance" },
|
||||
"first_spawn_chance": { "type": "integer", "description": "UNDOCUMENTATED", "title": "First Spawn Chance" },
|
||||
"second_spawn_chance": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Second Spawn Chance" },
|
||||
"first_spawn_count": { "type": "integer", "description": "UNDOCUMENTATED", "title": "First Spawn Count" },
|
||||
"second_spawn_count": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Second Spawn Count" },
|
||||
"spawn_definition": { "type": "string", "description": "UNDOCUMENTATED", "title": "Spawn Definition" },
|
||||
"spawn_baby": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "Spawn Baby" }
|
||||
}
|
||||
},
|
||||
"spawn_aoe_cloud": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "Spawn Aoe Cloud",
|
||||
"properties": {
|
||||
"radius": { "type": "number", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"radius_on_use": { "type": "number", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"potion": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"particle": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"duration": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"radius": { "type": "number", "description": "UNDOCUMENTATED", "title": "Radius" },
|
||||
"radius_on_use": { "type": "number", "description": "UNDOCUMENTATED", "title": "Radius On Use" },
|
||||
"potion": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Potion" },
|
||||
"particle": { "type": "string", "description": "UNDOCUMENTATED", "title": "Particle" },
|
||||
"duration": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Duration" },
|
||||
"color": {
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"title": "Color",
|
||||
"type": "array",
|
||||
"format": "color-array",
|
||||
"items": [
|
||||
{ "type": "integer", "minimum": 0, "maximum": 255, "description": "R", "title": "R" },
|
||||
{ "type": "integer", "minimum": 0, "maximum": 255, "description": "G", "title": "G" },
|
||||
{ "type": "integer", "minimum": 0, "maximum": 255, "description": "B", "title": "B" }
|
||||
{ "type": "integer", "minimum": 0, "maximum": 255, "description": "Red", "title": "R" },
|
||||
{ "type": "integer", "minimum": 0, "maximum": 255, "description": "Green", "title": "G" },
|
||||
{ "type": "integer", "minimum": 0, "maximum": 255, "description": "Blue", "title": "B" }
|
||||
]
|
||||
},
|
||||
"affect_owner": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"reapplication_delay": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" }
|
||||
"affect_owner": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "Affect Owner" },
|
||||
"reapplication_delay": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Reapplication Delay" }
|
||||
}
|
||||
},
|
||||
"stick_in_ground": {
|
||||
"additionalProperties": false,
|
||||
"type": "object",
|
||||
"description": "UNDOCUMENTATED",
|
||||
"title": "UNDOCUMENTATED",
|
||||
"properties": { "shake_time": { "type": "integer", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" } }
|
||||
"title": "Stick In Ground",
|
||||
"properties": { "shake_time": { "type": "integer", "description": "UNDOCUMENTATED", "title": "Shake Time" } }
|
||||
},
|
||||
"teleport_owner": { "additionalProperties": false, "type": "object", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"thrown_potion_effect": { "additionalProperties": false, "type": "object", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" }
|
||||
"teleport_owner": { "additionalProperties": false, "type": "object", "description": "UNDOCUMENTATED", "title": "Teleport Owner" },
|
||||
"thrown_potion_effect": { "additionalProperties": false, "type": "object", "description": "UNDOCUMENTATED", "title": "Thrown Potion Effect" }
|
||||
}
|
||||
},
|
||||
"particle": { "type": "string", "default": "iconcrack", "description": "Particle to use upon collision", "title": "Particle" },
|
||||
@@ -257,7 +257,7 @@
|
||||
"title": "Splash Potion"
|
||||
},
|
||||
"splash_range": { "type": "number", "default": 4, "description": "Radius in blocks of the `splash` effect", "title": "Splash Range" },
|
||||
"stop_on_hurt": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||
"stop_on_hurt": { "type": "boolean", "description": "UNDOCUMENTATED", "title": "Stop On Hurt" },
|
||||
"uncertainty_base": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
|
||||
Reference in New Issue
Block a user