From 2cd5f8e6bd42a084022028adcc24ef566fddab95 Mon Sep 17 00:00:00 2001 From: HacktheTime Date: Wed, 9 Aug 2023 20:46:00 +0200 Subject: Initial commit --- .../assets/bbsentials/textures/item/splash_hub.png | Bin 0 -> 5537 bytes .../resources/assets/public_bbsentials_cert.crt | Bin 0 -> 1431 bytes src/main/resources/bbsentials.mixins.json | 16 ++++++++++++ src/main/resources/fabric.mod.json | 27 +++++++++++++++++++++ src/main/resources/logo.png | Bin 0 -> 2092 bytes .../resources/sounds/mixkit-gaming-lock-2848.wav | Bin 0 -> 201240 bytes .../sounds/mixkit-interface-option-select-2573.wav | Bin 0 -> 274068 bytes src/main/resources/sounds/mixkit-long-pop-2358.wav | Bin 0 -> 226002 bytes .../resources/sounds/mixkit-sci-fi-click-900.wav | Bin 0 -> 184244 bytes .../sounds/mixkit-sci-fi-confirmation-914.wav | Bin 0 -> 276320 bytes 10 files changed, 43 insertions(+) create mode 100644 src/main/resources/assets/bbsentials/textures/item/splash_hub.png create mode 100644 src/main/resources/assets/public_bbsentials_cert.crt create mode 100644 src/main/resources/bbsentials.mixins.json create mode 100644 src/main/resources/fabric.mod.json create mode 100644 src/main/resources/logo.png create mode 100644 src/main/resources/sounds/mixkit-gaming-lock-2848.wav create mode 100644 src/main/resources/sounds/mixkit-interface-option-select-2573.wav create mode 100644 src/main/resources/sounds/mixkit-long-pop-2358.wav create mode 100644 src/main/resources/sounds/mixkit-sci-fi-click-900.wav create mode 100644 src/main/resources/sounds/mixkit-sci-fi-confirmation-914.wav (limited to 'src/main/resources') diff --git a/src/main/resources/assets/bbsentials/textures/item/splash_hub.png b/src/main/resources/assets/bbsentials/textures/item/splash_hub.png new file mode 100644 index 0000000..7929d1a Binary files /dev/null and b/src/main/resources/assets/bbsentials/textures/item/splash_hub.png differ diff --git a/src/main/resources/assets/public_bbsentials_cert.crt b/src/main/resources/assets/public_bbsentials_cert.crt new file mode 100644 index 0000000..723fc34 Binary files /dev/null and b/src/main/resources/assets/public_bbsentials_cert.crt differ diff --git a/src/main/resources/bbsentials.mixins.json b/src/main/resources/bbsentials.mixins.json new file mode 100644 index 0000000..82a341e --- /dev/null +++ b/src/main/resources/bbsentials.mixins.json @@ -0,0 +1,16 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "de.hype.bbsentials.mixins", + "compatibilityLevel": "JAVA_8", + "mixins": [], + "client": [ + "ClientCommandSourceMixin", + "ItemRendererMixin", + "ScreenMixin", + "SimpleOptionMixin" + ], + "injectors": { + "defaultRequire": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..7645d9e --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,27 @@ +{ + "schemaVersion": 1, + "id": "bbsentials", + "version": "${version}", + "name": "BBsentials", + "description": "QOL Modifications", + "authors": [ + "Hype_the_Time/hackthetime" + ], + "contact": {}, + "license": "All-Rights-Reserved", + "icon": "logo.png", + "environment": "client", + "entrypoints": { + "client": [ + "de.hype.bbsentials.client.BBsentials" + ] + }, + "depends": { + "fabricloader": ">=${loader_version}", + "fabric": "*", + "minecraft": "${minecraft_version}" + }, + "mixins": [ + "bbsentials.mixins.json" + ] +} diff --git a/src/main/resources/logo.png b/src/main/resources/logo.png new file mode 100644 index 0000000..407312a Binary files /dev/null and b/src/main/resources/logo.png differ diff --git a/src/main/resources/sounds/mixkit-gaming-lock-2848.wav b/src/main/resources/sounds/mixkit-gaming-lock-2848.wav new file mode 100644 index 0000000..d079479 Binary files /dev/null and b/src/main/resources/sounds/mixkit-gaming-lock-2848.wav differ diff --git a/src/main/resources/sounds/mixkit-interface-option-select-2573.wav b/src/main/resources/sounds/mixkit-interface-option-select-2573.wav new file mode 100644 index 0000000..f118ac5 Binary files /dev/null and b/src/main/resources/sounds/mixkit-interface-option-select-2573.wav differ diff --git a/src/main/resources/sounds/mixkit-long-pop-2358.wav b/src/main/resources/sounds/mixkit-long-pop-2358.wav new file mode 100644 index 0000000..4bed79a Binary files /dev/null and b/src/main/resources/sounds/mixkit-long-pop-2358.wav differ diff --git a/src/main/resources/sounds/mixkit-sci-fi-click-900.wav b/src/main/resources/sounds/mixkit-sci-fi-click-900.wav new file mode 100644 index 0000000..582445e Binary files /dev/null and b/src/main/resources/sounds/mixkit-sci-fi-click-900.wav differ diff --git a/src/main/resources/sounds/mixkit-sci-fi-confirmation-914.wav b/src/main/resources/sounds/mixkit-sci-fi-confirmation-914.wav new file mode 100644 index 0000000..37800c9 Binary files /dev/null and b/src/main/resources/sounds/mixkit-sci-fi-confirmation-914.wav differ -- cgit