Files
minecraft-bedrock-json-schemas/source/behavior/items/format/components/glint.json

26 lines
628 B
JSON
Raw Normal View History

{
"$id": "blockception.minecraft.behavior.items.minecraft:foil",
"title": "Glint",
"description": "The glint component determines whether the item has the enchanted glint render effect on it",
"default": false,
"examples": [true, { "value": true }],
"oneOf": [
{
"type": "boolean"
},
{
"type": "object",
"additionalProperties": false,
"required": ["value"],
"properties": {
"value": {
"title": "Value",
"description": "Whether the item has the glint effect.",
"type": "boolean",
"default": false
}
}
}
]
}