15 lines
436 B
JSON
15 lines
436 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "blockception.minecraft.resource.particle",
|
|
"allOf": [
|
|
{
|
|
"if": { "properties": { "format_version": { "type": "string", "const": "1.8.0" } } },
|
|
"then": { "$ref": "1.8.0/particle.json" }
|
|
},
|
|
{
|
|
"if": { "properties": { "format_version": { "type": "string", "const": "1.10.0" } } },
|
|
"then": { "$ref": "1.10.0/particle.json" }
|
|
}
|
|
]
|
|
}
|