Init for multiloader

This commit is contained in:
lukasabbe
2025-06-12 20:34:08 +02:00
commit 8f402847a0
78 changed files with 2313 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

@@ -0,0 +1,10 @@
{
"bookshelfinspector.config.title": "Bookshelf Inspector Config",
"bookshelfinspector.config.category": "Settings",
"bookshelfinspector.config.lectern.toggle": "Turn OFF or ON lectern support",
"bookshelfinspector.config.lectern.toggle.tooltip": "This will turn OFF/ON the visibility of lectern inspection",
"bookshelfinspector.config.scale": "Change the scale of the text",
"bookshelfinspector.config.scale.tooltip": "Change the scale of the text by dragging the slider",
"bookshelfinspector.config.roman_scale": "Use roman numerals!",
"bookshelfinspector.config.roman_scale.tooltip": "Use roman numerals or arabic numerals"
}
@@ -0,0 +1,10 @@
{
"bookshelfinspector.config.title": "Bookshelf Inspector Config",
"bookshelfinspector.config.category": "Inställningar",
"bookshelfinspector.config.lectern.toggle": "Stäng AV eller PÅ läspulpet stöd",
"bookshelfinspector.config.lectern.toggle.tooltip": "Denna inställning kommer stänga av eller på synligeten av läspulpet inspektion",
"bookshelfinspector.config.scale": "Ändra storleken på texten",
"bookshelfinspector.config.scale.tooltip": "Du kan göra det igenom att dra på den nedan",
"bookshelfinspector.config.roman_scale": "Använd romerska siffror",
"bookshelfinspector.config.roman_scale.tooltip": "Använd romerska siffror eller arabiska siffror"
}
@@ -0,0 +1,3 @@
lectern-toggle: true
scale: 10
roman: false
@@ -0,0 +1,19 @@
{
"required": true,
"minVersion": "0.8",
"package": "com.lukasabbe.bookshelfinspector.mixin",
"refmap": "${mod_id}.refmap.json",
"compatibilityLevel": "JAVA_18",
"mixins": [
],
"client": [
"BookshelfMixin",
"InGameHudMixin",
"BookshelfInvoker"
],
"server": [],
"injectors": {
"defaultRequire": 1
}
}
@@ -0,0 +1,6 @@
{
"replace": false,
"values": [
"minecraft:chiseled_bookshelf"
]
}
+6
View File
@@ -0,0 +1,6 @@
{
"pack": {
"description": "${mod_name}",
"pack_format": 8
}
}