WIP: implement mod #1

Draft
Stachelbeere1248 wants to merge 9 commits from LovelyBunny/zombies-utils_fabric:master into master
3 changed files with 12 additions and 3 deletions
Showing only changes of commit cc7c711bb7 - Show all commits

View file

@ -11,7 +11,11 @@ base {
} }
repositories { repositories {
maven { url 'https://repo.hypixel.net/repository/Hypixel/' } maven { url 'https://repo.hypixel.net/repository/Hypixel/' },
maven {
name 'Xander Maven'
url 'https://maven.isxander.dev/releases'
}
} }
loom { loom {
@ -32,7 +36,10 @@ dependencies {
// Fabric API. This is technically optional, but you probably want it anyway. // Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
// other deps
modImplementation 'net.hypixel:mod-api:1.0.1' modImplementation 'net.hypixel:mod-api:1.0.1'
modImplementation "dev.isxander:yet-another-config-lib:${project.yacl_version}"
} }
processResources { processResources {

View file

@ -16,3 +16,4 @@ archives_base_name=zombies-utils
# Dependencies # Dependencies
fabric_version=0.123.2+1.21.5 fabric_version=0.123.2+1.21.5
yacl_version=3.6.6+1.21.5-fabric

View file

@ -33,7 +33,8 @@
"minecraft": "~1.21.5", "minecraft": "~1.21.5",
"java": ">=21", "java": ">=21",
"fabric-api": "*", "fabric-api": "*",
"hypixel-mod-api": ">=1.0.1" "hypixel-mod-api": ">=1.0.1",
"yet_another_config_lib_v3": ">=3.6.6"
}, },
"suggests": {} "suggests": {}
} }