aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-03-19 14:32:46 +0100
committerAnhgelus Morhtuuzh <william@herges.fr>2026-03-19 14:32:46 +0100
commit095aa12d0cf8170014f59d1e1646311989aaca58 (patch)
tree3af7b4e08aaae82a5bdcf6fbd0bb14b519d1cb27 /src/main/resources
Copy Molehunt and rename
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/assets/floodhunt/icon.pngbin0 -> 35896 bytes
-rw-r--r--src/main/resources/fabric.mod.json36
-rw-r--r--src/main/resources/floodhunt.mixins.json15
3 files changed, 51 insertions, 0 deletions
diff --git a/src/main/resources/assets/floodhunt/icon.png b/src/main/resources/assets/floodhunt/icon.png
new file mode 100644
index 0000000..315d580
--- /dev/null
+++ b/src/main/resources/assets/floodhunt/icon.png
Binary files differ
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
new file mode 100644
index 0000000..7b5b38d
--- /dev/null
+++ b/src/main/resources/fabric.mod.json
@@ -0,0 +1,36 @@
+{
+ "schemaVersion": 1,
+ "id": "Floodhunt",
+ "version": "${version}",
+ "name": "Floodhunt",
+ "description": "Floodhunt mod",
+ "authors": [
+ "Anhgelus Morhtuuzh"
+ ],
+ "contact": {},
+ "license": "AGPL-3.0",
+ "icon": "assets/molehunt/icon.png",
+ "environment": "*",
+ "entrypoints": {
+ "client": [
+ "world.anhgelus.floodhunt.client.FloodhuntClient"
+ ],
+ "server": [
+ ],
+ "main": [
+ "world.anhgelus.floodhunt.Floodhunt"
+ ]
+ },
+ "mixins": [
+ "Floodhunt.mixins.json",
+ {
+ "config": "Floodhunt.client.mixins.json",
+ "environment": "client"
+ }
+ ],
+ "depends": {
+ "fabricloader": ">=${loader_version}",
+ "fabric-api": "*",
+ "minecraft": "${minecraft_version}"
+ }
+}
diff --git a/src/main/resources/floodhunt.mixins.json b/src/main/resources/floodhunt.mixins.json
new file mode 100644
index 0000000..dbebdd1
--- /dev/null
+++ b/src/main/resources/floodhunt.mixins.json
@@ -0,0 +1,15 @@
+{
+ "required": true,
+ "minVersion": "0.8",
+ "package": "world.anhgelus.floodhunt.mixin",
+ "compatibilityLevel": "JAVA_21",
+ "mixins": [
+ "NoJoinLeaveMessage",
+ "NoMsgCommand",
+ "NoPortals",
+ "WorldTimerAccess"
+ ],
+ "injectors": {
+ "defaultRequire": 1
+ }
+}