From 94f12b5bc032aac26371bf5c086492436d92878c Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Sat, 9 Nov 2024 18:11:18 +0100 Subject: Init --- .../assets/beacon-range-increaser/icon.png | Bin 0 -> 5789 bytes .../resources/beacon-range-increaser.mixins.json | 13 +++++++++ src/main/resources/fabric.mod.json | 30 +++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 src/main/resources/assets/beacon-range-increaser/icon.png create mode 100644 src/main/resources/beacon-range-increaser.mixins.json create mode 100644 src/main/resources/fabric.mod.json (limited to 'src/main/resources') 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 Binary files /dev/null and b/src/main/resources/assets/beacon-range-increaser/icon.png 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 -- cgit