mirror of
https://github.com/Mojang/bedrock-samples.git
synced 2024-11-21 21:56:13 +00:00
26 lines
915 B
JSON
26 lines
915 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "608914689",
|
|
"title": "minecraft:projectile v1.20.50",
|
|
"description": "Projectile items shoot out, like an arrow.",
|
|
"type": "object",
|
|
"properties": {
|
|
"minimum_critical_power": {
|
|
"description": "Specifies how long a player must charge a projectile for it to critically hit.",
|
|
"type": "number"
|
|
},
|
|
"projectile_entity": {
|
|
"description": "Which entity is to be fired as a projectile.",
|
|
"type": "string",
|
|
"minLength": 0,
|
|
"pattern": "^(?:\\w+(?:\\.\\w+)*:(?=\\w))?(?:\\w+(?:\\.\\w+)*)(?:<((?:\\w+(?:\\.\\w+)*:(?=\\w))?\\w+(?:\\.\\w+)*)*>)?$"
|
|
}
|
|
},
|
|
"required": [
|
|
"projectile_entity"
|
|
],
|
|
"$metaProperties": {
|
|
"CEREAL_DOCUMENTATION_TAG": false,
|
|
"CEREAL_JSON_SCHEMA": "Projectile v1.20.50"
|
|
}
|
|
} |