aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
diff options
context:
space:
mode:
authorMaximusbarcz <maxim.baranek@gmail.com>2022-10-01 22:24:40 +0200
committerMaximusbarcz <maxim.baranek@gmail.com>2022-10-01 22:24:40 +0200
commitbe13b8cd6ee13d47828751a4e92e435556153c54 (patch)
treeffb7880ecf9d516755270f6f2c56cf8a70c63fa3 /src/main/resources
parentcaae62f9978b4c40e8cabcb45a76a8b92b6b2615 (diff)
downloadygasi-be13b8cd6ee13d47828751a4e92e435556153c54.tar.gz
ygasi-be13b8cd6ee13d47828751a4e92e435556153c54.tar.bz2
ygasi-be13b8cd6ee13d47828751a4e92e435556153c54.zip
Initial Commit - Implemented Skill Points
Diffstat (limited to 'src/main/resources')
-rw-r--r--src/main/resources/assets/modid/icon.pngbin453 -> 0 bytes
-rw-r--r--src/main/resources/assets/ygasi/icon.pngbin0 -> 26011 bytes
-rw-r--r--src/main/resources/fabric.mod.json22
-rw-r--r--src/main/resources/ygasi.mixins.json (renamed from src/main/resources/modid.mixins.json)6
4 files changed, 15 insertions, 13 deletions
diff --git a/src/main/resources/assets/modid/icon.png b/src/main/resources/assets/modid/icon.png
deleted file mode 100644
index 047b91f..0000000
--- a/src/main/resources/assets/modid/icon.png
+++ /dev/null
Binary files differ
diff --git a/src/main/resources/assets/ygasi/icon.png b/src/main/resources/assets/ygasi/icon.png
new file mode 100644
index 0000000..dc0a055
--- /dev/null
+++ b/src/main/resources/assets/ygasi/icon.png
Binary files differ
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index 3428658..1ec8757 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -1,29 +1,29 @@
{
"schemaVersion": 1,
- "id": "modid",
- "version": "${version}",
+ "id": "ygasi",
+ "version": "0.1",
- "name": "Example Mod",
- "description": "This is an example description! Tell everyone what your mod is about!",
+ "name": "You've got a Skill Issue",
+ "description": "A Server-side Fabric mod with a skill tree and leveling! ",
"authors": [
- "Me!"
+ "Mayaqq"
],
"contact": {
- "homepage": "https://fabricmc.net/",
- "sources": "https://github.com/FabricMC/fabric-example-mod"
+ "homepage": "https://github.com/Maximusbarcz",
+ "sources": "https://github.com/Maximusbarcz/youve-got-a-skill-issue"
},
- "license": "CC0-1.0",
- "icon": "assets/modid/icon.png",
+ "license": "LGPL-3",
+ "icon": "assets/ygasi/icon.png",
"environment": "*",
"entrypoints": {
"main": [
- "net.fabricmc.example.ExampleMod"
+ "dev.mayaqq.ygasi.ygasi"
]
},
"mixins": [
- "modid.mixins.json"
+ "ygasi.mixins.json"
],
"depends": {
diff --git a/src/main/resources/modid.mixins.json b/src/main/resources/ygasi.mixins.json
index 7c42cb4..aeb9daf 100644
--- a/src/main/resources/modid.mixins.json
+++ b/src/main/resources/ygasi.mixins.json
@@ -1,12 +1,14 @@
{
"required": true,
"minVersion": "0.8",
- "package": "net.fabricmc.example.mixin",
+ "package": "dev.mayaqq.ygasi.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
+ "AdvancementRewardsMixin"
],
"client": [
- "ExampleMixin"
+ ],
+ "server": [
],
"injectors": {
"defaultRequire": 1