2022-06-07 20:42:18 +02:00
{
2022-07-20 21:25:32 +02:00
"$id" : "blockception.minecraft.behavior.items.minecraft:projectile" ,
2022-06-07 20:42:18 +02:00
"title" : "Projectile" ,
2023-08-17 11:04:39 -07:00
"description" : "Compels the item shoot, like an arrow. Pair with minecraft:shooter for dispensers or as ammunition. Pair with minecraft:throwable to set the entity spawned." ,
2022-06-07 20:42:18 +02:00
"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" }
2023-08-17 11:04:39 -07:00
} ,
"examples" : [
{
"minimum_critical_power" : 1.25 ,
"projectile_entity" : "arrow"
}
]
2022-06-07 20:42:18 +02:00
}