mirror of
https://github.com/TibiNonEst/cauldron-dyeing.git
synced 2025-04-28 20:54:08 -05:00
Initial commit
This commit is contained in:
commit
5bd7750177
24 changed files with 1627 additions and 0 deletions
11
src/main/resources/cauldron-dyeing.compat.sodium.mixins.json
Normal file
11
src/main/resources/cauldron-dyeing.compat.sodium.mixins.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"package": "me.tibinonest.mods.cauldron_dyeing.mixin.sodium",
|
||||
"required": false,
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"client": [
|
||||
"SodiumBlockRendererMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
16
src/main/resources/cauldron-dyeing.mixins.json
Normal file
16
src/main/resources/cauldron-dyeing.mixins.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"package": "me.tibinonest.mods.cauldron_dyeing.mixin",
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
"BlocksMixin",
|
||||
"CauldronBehaviorMixin",
|
||||
"DyeItemAccessor"
|
||||
],
|
||||
"client": [
|
||||
"BiomeColorsMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
31
src/main/resources/fabric.mod.json
Normal file
31
src/main/resources/fabric.mod.json
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "cauldron_dyeing",
|
||||
"version": "${version}",
|
||||
"name": "Cauldron Dyeing",
|
||||
"description": "Bring Bedrock's cauldron-based armor dyeing to Java Edition.",
|
||||
"authors": [
|
||||
"TibiNonEst"
|
||||
],
|
||||
"contact": {
|
||||
"sources": "https://github.com/TibiNonEst/cauldron-dyeing",
|
||||
"issues": "https://github.com/TibiNonEst/cauldron-dyeing/issues"
|
||||
},
|
||||
"license": "LGPL-3.0-only",
|
||||
"icon": "assets/cauldron_dyeing/icon.png",
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"me.tibinonest.mods.cauldron_dyeing.CauldronDyeing"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"cauldron-dyeing.mixins.json",
|
||||
"cauldron-dyeing.compat.sodium.mixins.json"
|
||||
],
|
||||
"depends": {
|
||||
"minecraft": ">=1.18",
|
||||
"fabricloader": ">=0.12.12",
|
||||
"fabric-object-builder-api-v1": ">=0.1"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue