MidnightLib v0.1.0 for 21w08b

This commit is contained in:
Motschen
2021-02-28 12:36:43 +01:00
parent 5928257fab
commit a4be637128
40 changed files with 1495 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@@ -0,0 +1,7 @@
{
"midnightlib.midnightconfig.title":"MidnightLib Config",
"midnightlib.midnightconfig.event_hats":"Enable Event Hats",
"midnightlib.midnightconfig.event_hats.tooltip":"Enable or disable event hats",
"midnightlib.midnightconfig.special_hats":"Enable Special Hats",
"midnightlib.midnightconfig.special_hats.tooltip":"Enable or disable hats for contributors, friends and donors."
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 649 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 622 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 622 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 639 B

View File

@@ -0,0 +1,42 @@
{
"schemaVersion": 1,
"id": "midnightlib",
"version": "${version}",
"name": "MidnightLib",
"description": "Common Library for Team MidnightDust's mods.\nProvides a config api, common utils, and cosmetics.",
"authors": [
"Motschen",
"TeamMidnightDust"
],
"contact": {
"homepage": "https://www.midnightdust.eu/",
"sources": "https://github.com/TeamMidnightDust/MidnightLib",
"issues": "https://github.com/TeamMidnightDust/MidnightLib/issues"
},
"license": "MIT",
"icon": "assets/midnightlib/icon.png",
"environment": "*",
"entrypoints": {
"client": [
"eu.midnightdust.hats.HatsClient"
],
"modmenu": [
"eu.midnightdust.hats.config.ModMenuIntegration"
]
},
"mixins": [
"midnight-hats.mixins.json"
],
"depends": {
"fabric": "*"
},
"custom": {
"modmenu:api": true
}
}

View File

@@ -0,0 +1,11 @@
{
"required": true,
"package": "eu.midnightdust.hats.mixin",
"compatibilityLevel": "JAVA_8",
"client": [
"PlayerEntityRendererMixin"
],
"injectors": {
"defaultRequire": 1
}
}