diff options
author | Linnea Gräf <nea@nea.moe> | 2024-11-09 18:11:18 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-11-09 18:11:18 +0100 |
commit | 94f12b5bc032aac26371bf5c086492436d92878c (patch) | |
tree | c940adb066653ed4f1386e8ded60d064375861dd /src/main/resources/fabric.mod.json | |
download | beacon-range-extender-94f12b5bc032aac26371bf5c086492436d92878c.tar.gz beacon-range-extender-94f12b5bc032aac26371bf5c086492436d92878c.tar.bz2 beacon-range-extender-94f12b5bc032aac26371bf5c086492436d92878c.zip |
Init
Diffstat (limited to 'src/main/resources/fabric.mod.json')
-rw-r--r-- | src/main/resources/fabric.mod.json | 30 |
1 files changed, 30 insertions, 0 deletions
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 |