ItemDropList
Documentation for the ItemDropList asset type.
Location
Drops
Use in Your Files
Add this to your JSON files for IDE autocompletion and validation:
"$schema": "https://hytaledb.ginco.gg/schemas/ItemDropList.schema.json" Schema
Container unknown
Any of
All of
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "ItemDropList.json",
"title": "ItemDropList",
"description": "ItemDropList asset type",
"type": "object",
"allOf": [
{
"$ref": "base.schema.json"
}
],
"properties": {
"Container": {
"anyOf": [
{
"$ref": "common.schema.json#/$defs/ChoiceItemDropContainer"
},
{
"$ref": "common.schema.json#/$defs/DroplistItemDropContainer"
},
{
"$ref": "common.schema.json#/$defs/EmptyItemDropContainer"
},
{
"$ref": "common.schema.json#/$defs/MultipleItemDropContainer"
},
{
"$ref": "common.schema.json#/$defs/SingleItemDropContainer"
},
{
"type": "null"
}
]
}
}
}