Files
minecraft-bedrock-json-schemas/source/behavior/items/format/components/liquid_clipped.json
2024-05-11 11:24:22 +02:00

26 lines
664 B
JSON

{
"$id": "blockception.minecraft.behavior.items.minecraft:liquid_clipped",
"title": "Liquid Clipped",
"description": "The liquid clipped component determines whether the item interacts with liquid blocks on use.",
"default": false,
"examples": [true, { "value": true }],
"oneOf": [
{
"type": "boolean"
},
{
"additionalProperties": false,
"type": "object",
"required": ["value"],
"properties": {
"value": {
"title": "Value",
"description": "Whether the item interacts with liquid blocks on use.",
"type": "boolean",
"default": false
}
}
}
]
}