Refactored item

This commit is contained in:
DaanV2
2022-06-07 20:49:57 +02:00
parent 10417c8ec2
commit bbd36afa70
27 changed files with 105 additions and 103 deletions

View File

@@ -0,0 +1,16 @@
{
"$id": "blockception.minecraft.behavior.1.16.200.items.minecraft:projectile",
"title": "Projectile",
"description": "Projectile item component. projectile items shoot out, like an arrow.",
"type": "object",
"additionalProperties": false,
"required": ["projectile_entity"],
"properties": {
"minimum_critical_power": {
"type": "number",
"title": "Minimum Critical Power",
"description": "How long you must charge a projectile for it to critically hit."
},
"projectile_entity": { "title": "Projectile Entity", "description": "The entity to be fired as a projectile.", "type": "string" }
}
}