MidnightLib v0.1.0 for 21w08b
BIN
src/main/resources/assets/midnightlib/icon.png
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
7
src/main/resources/assets/midnightlib/lang/en_us.json
Normal 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."
|
||||
}
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 649 B |
BIN
src/main/resources/assets/midnightlib/textures/hats/donator.png
Normal file
|
After Width: | Height: | Size: 629 B |
BIN
src/main/resources/assets/midnightlib/textures/hats/empty.png
Normal file
|
After Width: | Height: | Size: 139 B |
BIN
src/main/resources/assets/midnightlib/textures/hats/friend.png
Normal file
|
After Width: | Height: | Size: 621 B |
BIN
src/main/resources/assets/midnightlib/textures/hats/motschen.png
Normal file
|
After Width: | Height: | Size: 622 B |
BIN
src/main/resources/assets/midnightlib/textures/hats/pride.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
src/main/resources/assets/midnightlib/textures/hats/social.png
Normal file
|
After Width: | Height: | Size: 622 B |
BIN
src/main/resources/assets/midnightlib/textures/hats/tater.png
Normal file
|
After Width: | Height: | Size: 639 B |
42
src/main/resources/fabric.mod.json
Normal 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
|
||||
}
|
||||
}
|
||||
11
src/main/resources/midnight-hats.mixins.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"required": true,
|
||||
"package": "eu.midnightdust.hats.mixin",
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"client": [
|
||||
"PlayerEntityRendererMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
||||