config: import pack config files

This commit is contained in:
Ophestra 2025-06-23 05:08:29 +09:00
parent b76c650efe
commit 348be6b09f
Signed by: ophestra
SSH key fingerprint: SHA256:57+oNEzV2U/aq2eDPdDtPiJjVykuXMYYJMkcAo8QdRw
128 changed files with 13500 additions and 1 deletions

70
config/enchdesc.json Normal file
View file

@ -0,0 +1,70 @@
{
"enabled": {
"//": "Determines if the mod and its features are enabled.",
"//default": true,
"value": true
},
"only_on_books": {
"//": [
"When enabled, descriptions will only be displayed when looking at an enchanted ",
"book. "
],
"//default": false,
"value": false
},
"only_in_enchanting_table": {
"//": [
"When enabled, descriptions will only be displayed when inside the enchanting ",
"table GUI. "
],
"//default": false,
"value": false
},
"require_keybind": {
"//": [
"When enabled, descriptions will only be displayed when the user holds the shift ",
"key. "
],
"//default": false,
"value": false
},
"activate_text": {
"//": [
"This text will be displayed when the require_keybind option is enabled and the ",
"user has not held the keybind. "
],
"//default": {
"translate": "enchdesc.activate.message",
"color": "dark_gray"
},
"value": {
"translate": "enchdesc.activate.message",
"color": "dark_gray"
}
},
"prefix": {
"//": [
"Text that will be added to the start of each description. This can be used to ",
"add indents and other decorators. "
],
"//default": "",
"value": ""
},
"suffix": {
"//": "Text that will be added to the end of each description.",
"//default": "",
"value": ""
},
"style": {
"//": [
"The style of the description text. This controls the color, format, font, and ",
"other visual properties of the description. "
],
"//default": {
"color": "dark_gray"
},
"value": {
"color": "dark_gray"
}
}
}