26 lines
628 B
JSON
26 lines
628 B
JSON
{
|
|
"$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
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|