mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-25 08:06:51 +00:00
Add item enchantments and stored_enchantments
This commit is contained in:
@@ -291,13 +291,16 @@
|
|||||||
"count": "Count",
|
"count": "Count",
|
||||||
"durability": "Durability",
|
"durability": "Durability",
|
||||||
"potion": "Potion",
|
"potion": "Potion",
|
||||||
"nbt": "NBT"
|
"nbt": "NBT",
|
||||||
|
"enchantment": "Enchantment",
|
||||||
|
"levels": "Levels"
|
||||||
},
|
},
|
||||||
"2_spaces": "2 Spaces",
|
"2_spaces": "2 Spaces",
|
||||||
"4_spaces": "4 Spaces",
|
"4_spaces": "4 Spaces",
|
||||||
"child_add": "Add Child",
|
"child_add": "Add Child",
|
||||||
"condition_add": "Add Condition",
|
"condition_add": "Add Condition",
|
||||||
"enchantment_add": "Add Enchantment",
|
"enchantment_add": "Add Enchantment",
|
||||||
|
"stored_enchantment_add": "Add Stored Enchantment",
|
||||||
"entry_add": "Add Entry",
|
"entry_add": "Add Entry",
|
||||||
"function_add": "Add Function",
|
"function_add": "Add Function",
|
||||||
"attribute_modifier_add": "Add Modifier",
|
"attribute_modifier_add": "Add Modifier",
|
||||||
|
|||||||
@@ -253,7 +253,9 @@
|
|||||||
"count": "Количество",
|
"count": "Количество",
|
||||||
"durability": "Прочность",
|
"durability": "Прочность",
|
||||||
"potion": "Зелье",
|
"potion": "Зелье",
|
||||||
"nbt": "NBT"
|
"nbt": "NBT",
|
||||||
|
"enchantment": "Чары",
|
||||||
|
"levels": "Уровень"
|
||||||
},
|
},
|
||||||
"2_spaces": "2 пробела",
|
"2_spaces": "2 пробела",
|
||||||
"4_spaces": "4 пробела",
|
"4_spaces": "4 пробела",
|
||||||
|
|||||||
@@ -258,7 +258,9 @@
|
|||||||
"count": "数量",
|
"count": "数量",
|
||||||
"durability": "耐久度",
|
"durability": "耐久度",
|
||||||
"potion": "药水",
|
"potion": "药水",
|
||||||
"nbt": "NBT"
|
"nbt": "NBT",
|
||||||
|
"enchantment": "附魔",
|
||||||
|
"levels": "等级"
|
||||||
},
|
},
|
||||||
"2_spaces": "2 空格缩进",
|
"2_spaces": "2 空格缩进",
|
||||||
"4_spaces": "4 空格缩进",
|
"4_spaces": "4 空格缩进",
|
||||||
|
|||||||
@@ -1059,6 +1059,32 @@
|
|||||||
"id": "nbt",
|
"id": "nbt",
|
||||||
"type": "nbt",
|
"type": "nbt",
|
||||||
"translate": "$item.nbt"
|
"translate": "$item.nbt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "enchantments",
|
||||||
|
"type": "array",
|
||||||
|
"translate": "enchantment",
|
||||||
|
"button": "field",
|
||||||
|
"values": "enchantment"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "enchantment",
|
||||||
|
"type": "object",
|
||||||
|
"color": "dark",
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"id": "enchantment",
|
||||||
|
"type": "enum",
|
||||||
|
"translate": "$item.enchantment",
|
||||||
|
"translateValue": "$enchantment",
|
||||||
|
"values": "enchantments"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "levels",
|
||||||
|
"type": "range",
|
||||||
|
"translate": "$item.levels"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1076,6 +1076,39 @@
|
|||||||
"id": "nbt",
|
"id": "nbt",
|
||||||
"type": "nbt",
|
"type": "nbt",
|
||||||
"translate": "$item.nbt"
|
"translate": "$item.nbt"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "enchantments",
|
||||||
|
"type": "array",
|
||||||
|
"translate": "enchantment",
|
||||||
|
"button": "field",
|
||||||
|
"values": "enchantment"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "stored_enchantments",
|
||||||
|
"type": "array",
|
||||||
|
"translate": "stored_enchantment",
|
||||||
|
"button": "field",
|
||||||
|
"values": "enchantment"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "enchantment",
|
||||||
|
"type": "object",
|
||||||
|
"color": "dark",
|
||||||
|
"fields": [
|
||||||
|
{
|
||||||
|
"id": "enchantment",
|
||||||
|
"type": "enum",
|
||||||
|
"translate": "$item.enchantment",
|
||||||
|
"translateValue": "$enchantment",
|
||||||
|
"values": "enchantments"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "levels",
|
||||||
|
"type": "range",
|
||||||
|
"translate": "$item.levels"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user