mirror of
https://github.com/misode/misode.github.io.git
synced 2026-05-05 15:11:46 +00:00
Add light, block and fluid location properties
This commit is contained in:
+22
-1
@@ -266,7 +266,28 @@
|
||||
},
|
||||
"biome": "Biome",
|
||||
"feature": "Feature",
|
||||
"dimension": "Dimension"
|
||||
"dimension": "Dimension",
|
||||
"light": "Light",
|
||||
"$light": {
|
||||
"light": "Visible Level"
|
||||
},
|
||||
"block": "Block",
|
||||
"$block": {
|
||||
"block": "Block ID",
|
||||
"tag": "Block Tag",
|
||||
"nbt": "NBT",
|
||||
"state": "Block State",
|
||||
"state_add": "Add Block State",
|
||||
"state_remove": "Remove Block State"
|
||||
},
|
||||
"fluid": "Fluid",
|
||||
"$fluid": {
|
||||
"fluid": "Fluid ID",
|
||||
"tag": "Fluid Tag",
|
||||
"state": "Fluid State",
|
||||
"state_add": "Add Fluid State",
|
||||
"state_remove": "Remove Fluid State"
|
||||
}
|
||||
},
|
||||
"$distance": {
|
||||
"x": "X",
|
||||
|
||||
@@ -963,6 +963,78 @@
|
||||
"translateValue": "$dimension",
|
||||
"unset": true,
|
||||
"values": "dimensions"
|
||||
},
|
||||
{
|
||||
"id": "light",
|
||||
"type": "object",
|
||||
"translate": "$location.light",
|
||||
"card": false,
|
||||
"fields": [
|
||||
{
|
||||
"id": "light",
|
||||
"type": "range",
|
||||
"translate": "$location.$light.light"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "block",
|
||||
"type": "object",
|
||||
"translate": "$location.block",
|
||||
"color": "dark",
|
||||
"collapse": true,
|
||||
"fields": [
|
||||
{
|
||||
"id": "block",
|
||||
"type": "string",
|
||||
"translate": "$location.$block.block"
|
||||
},
|
||||
{
|
||||
"id": "tag",
|
||||
"type": "string",
|
||||
"translate": "$location.$block.tag"
|
||||
},
|
||||
{
|
||||
"id": "nbt",
|
||||
"type": "nbt",
|
||||
"translate": "$location.$block.nbt"
|
||||
},
|
||||
{
|
||||
"id": "state",
|
||||
"type": "map",
|
||||
"translate": "$location.$block.state",
|
||||
"values": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "fluid",
|
||||
"type": "object",
|
||||
"translate": "$location.fluid",
|
||||
"color": "dark",
|
||||
"collapse": true,
|
||||
"fields": [
|
||||
{
|
||||
"id": "fluid",
|
||||
"type": "string",
|
||||
"translate": "$location.$fluid.fluid"
|
||||
},
|
||||
{
|
||||
"id": "tag",
|
||||
"type": "string",
|
||||
"translate": "$location.$fluid.tag"
|
||||
},
|
||||
{
|
||||
"id": "state",
|
||||
"type": "map",
|
||||
"translate": "$location.$fluid.state",
|
||||
"values": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user