fabric stable 1.3.0+1.21.11

This commit is contained in:
2026-01-06 18:52:02 -06:00
commit 40c3543602
232 changed files with 4199 additions and 0 deletions

59
neoforge/build.gradle Normal file
View File

@@ -0,0 +1,59 @@
plugins {
id 'com.gradleup.shadow'
}
architectury {
platformSetupLoomIde()
neoForge()
}
configurations {
common {
canBeResolved = true
canBeConsumed = false
}
compileClasspath.extendsFrom common
runtimeClasspath.extendsFrom common
developmentNeoForge.extendsFrom common
// Files in this configuration will be bundled into your mod using the Shadow plugin.
// Don't use the `shadow` configuration from the plugin itself as it's meant for excluding files.
shadowBundle {
canBeResolved = true
canBeConsumed = false
}
}
repositories {
maven {
name = 'NeoForged'
url = 'https://maven.neoforged.net/releases'
}
}
dependencies {
neoForge "net.neoforged:neoforge:$rootProject.neoforge_version"
// Architectury API. This is optional, and you can comment it out if you don't need it.
modImplementation "dev.architectury:architectury-neoforge:$rootProject.architectury_api_version"
common(project(path: ':common', configuration: 'namedElements')) { transitive = false }
shadowBundle project(path: ':common', configuration: 'transformProductionNeoForge')
}
processResources {
inputs.property 'version', project.version
filesMatching('META-INF/neoforge.mods.toml') {
expand version: inputs.properties.version
}
}
shadowJar {
configurations = [project.configurations.shadowBundle]
archiveClassifier = 'dev-shadow'
}
remapJar {
inputFile.set shadowJar.archiveFile
}

View File

@@ -0,0 +1 @@
loom.platform = neoforge

View File

@@ -0,0 +1,13 @@
package dev.sillyangel.nuggetmod.neoforge;
import net.neoforged.fml.common.Mod;
import dev.sillyangel.nuggetmod.ExampleMod;
@Mod(ExampleMod.MOD_ID)
public final class ExampleModNeoForge {
public ExampleModNeoForge() {
// Run our common setup.
ExampleMod.init();
}
}

View File

@@ -0,0 +1,38 @@
modLoader = "javafml"
loaderVersion = "[10,)"
#issueTrackerURL = ""
license = "Insert License Here"
[[mods]]
modId = "nuggetmod"
version = "${version}"
displayName = "Nugget Mod"
authors = "Me!"
description = '''
This is an example description! Tell everyone what your mod is about!
'''
#logoFile = ""
[[dependencies.nuggetmod]]
modId = "neoforge"
type = "required"
versionRange = "[21.10,)"
ordering = "NONE"
side = "BOTH"
[[dependencies.nuggetmod]]
modId = "minecraft"
type = "required"
versionRange = "[1.21.10,)"
ordering = "NONE"
side = "BOTH"
[[dependencies.nuggetmod]]
modId = "architectury"
type = "required"
versionRange = "[18.0.6,)"
ordering = "AFTER"
side = "BOTH"
[[mixins]]
config = "nuggetmod.mixins.json"