2022-06-07 20:42:18 +02:00
|
|
|
{
|
2022-07-20 21:25:32 +02:00
|
|
|
"$id": "blockception.minecraft.behavior.items.minecraft:repairable",
|
2022-06-07 20:42:18 +02:00
|
|
|
"title": "Repairable",
|
|
|
|
|
"description": "Repairable item component: how much damage can this item repair, what items can repair it.",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"additionalProperties": false,
|
|
|
|
|
"properties": {
|
|
|
|
|
"repair_items": {
|
|
|
|
|
"title": "Repair Items",
|
|
|
|
|
"description": "Repair item entries.",
|
|
|
|
|
"type": "array",
|
|
|
|
|
"items": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Repar Item",
|
2024-02-11 16:05:56 +05:00
|
|
|
"description": "List of repair item entries.",
|
2022-06-07 20:42:18 +02:00
|
|
|
"additionalProperties": false,
|
|
|
|
|
"properties": {
|
|
|
|
|
"items": {
|
|
|
|
|
"title": "Items",
|
2024-02-11 16:05:56 +05:00
|
|
|
"description": "Items that can be used to repeair it",
|
|
|
|
|
"$comment": "List of items",
|
2022-06-07 20:42:18 +02:00
|
|
|
"type": "array",
|
2024-02-11 16:05:56 +05:00
|
|
|
"items": { "type": "string", "title": "Item", "description": "Item identifier" }
|
2022-06-07 20:42:18 +02:00
|
|
|
},
|
|
|
|
|
"repair_amount": {
|
|
|
|
|
"title": "Repair Amount",
|
2024-02-11 16:05:56 +05:00
|
|
|
"description": "Amount that can be repaired",
|
2022-06-07 20:42:18 +02:00
|
|
|
"$ref": "../../../../molang/number.json"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|