summaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/assets/beacon-range-increaser/icon.pngbin0 -> 5789 bytes
-rw-r--r--src/main/resources/beacon-range-increaser.mixins.json13
-rw-r--r--src/main/resources/fabric.mod.json30
3 files changed, 43 insertions, 0 deletions
diff --git a/src/main/resources/assets/beacon-range-increaser/icon.png b/src/main/resources/assets/beacon-range-increaser/icon.png
new file mode 100644
index 0000000..ec6beca
--- /dev/null
+++ b/src/main/resources/assets/beacon-range-increaser/icon.png
Binary files differ
diff --git a/src/main/resources/beacon-range-increaser.mixins.json b/src/main/resources/beacon-range-increaser.mixins.json
new file mode 100644
index 0000000..c7ca9b6
--- /dev/null
+++ b/src/main/resources/beacon-range-increaser.mixins.json
@@ -0,0 +1,13 @@
+{
+ "required": true,
+ "package": "moe.nea.beacons.mixin",
+ "compatibilityLevel": "JAVA_21",
+ "mixins": [
+ "BeaconBeamSectionMixin",
+ "BeaconMixin",
+ "SkullBlockRangeExtender"
+ ],
+ "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..d3aec2d
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,30 @@
+{
+ "schemaVersion": 1,
+ "id": "beacon-range-increaser",
+ "version": "${version}",
+ "name": "Beacon Range Increaser",
+ "description": "Increases the range of beacons, if you place skulls in the path of the beam (32 for wither skulls, 5 blocks for other skulls).",
+ "authors": [
+ "Linnea Gräf"
+ ],
+ "contact": {
+ "sources": "https://github.com/nea89o/beacon-range-extender"
+ },
+ "license": "MIT",
+ "icon": "assets/beacon-range-increaser/icon.png",
+ "environment": "*",
+ "entrypoints": {
+ "main": [
+ "moe.nea.beacons.BeaconRangeIncreaser"
+ ]
+ },
+ "mixins": [
+ "beacon-range-increaser.mixins.json"
+ ],
+ "depends": {
+ "fabricloader": ">=0.16.9",
+ "minecraft": "~1.21",
+ "java": ">=21",
+ "fabric-api": "*"
+ }
+} \ No newline at end of file