Refactored item

This commit is contained in:
DaanV2
2022-06-07 20:49:57 +02:00
parent 10417c8ec2
commit bbd36afa70
27 changed files with 105 additions and 103 deletions

View File

@@ -0,0 +1,33 @@
{
"$id": "blockception.minecraft.behavior.1.16.200.items.minecraft:dye_powder",
"title": "Dye Powder",
"description": "Dye powder, there are 16 kinds of dye.",
"type": "object",
"additionalProperties": false,
"required": ["color"],
"properties": {
"color": {
"type": "string",
"title": "Color",
"description": "Defines what color the dye is.",
"enum": [
"black",
"red",
"green",
"brown",
"blue",
"purple",
"cyan",
"silver",
"gray",
"pink",
"lime",
"yellow",
"lightblue",
"magenta",
"orange",
"white"
]
}
}
}