-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: 秋雨落 <[email protected]>
- Loading branch information
Showing
5 changed files
with
77 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,45 @@ | ||
{ | ||
"schemaVersion": 1, | ||
"id": "catsplus", | ||
"version": "${mod_version}", | ||
"name": "Cats+", | ||
"description": "Make cats in Minecraft more fun!", | ||
"authors": [ | ||
"MeowBot233", | ||
"CuteNekoOwO", | ||
"qyl27" | ||
], | ||
"contact": { | ||
"homepage": "https://github.com/CuteNekoOwO", | ||
"sources": "https://github.com/CuteNekoOwO/CatsPlus", | ||
"issues": "https://github.com/CuteNekoOwO/CatsPlus/issues" | ||
}, | ||
"license": "MIT", | ||
"icon": "assets/catsplus/icon.png", | ||
"environment": "*", | ||
"entrypoints": { | ||
"client": [ | ||
"cuteneko.catsplus.fabric.client.CatsPlusFabricClient" | ||
"schemaVersion": 1, | ||
"id": "catsplus", | ||
"version": "${mod_version}", | ||
"name": "Cats+", | ||
"description": "Make cats in Minecraft more fun!", | ||
"authors": [ | ||
"MeowBot233", | ||
"CuteNekoOwO", | ||
"qyl27" | ||
], | ||
"main": [ | ||
"cuteneko.catsplus.fabric.CatsPlusFabric" | ||
"contributors": [ | ||
"YukieMiona", | ||
"Kogasa-Studio" | ||
], | ||
"fabric-datagen": [ | ||
"cuteneko.catsplus.fabric.data.gen.ModDataGen" | ||
] | ||
}, | ||
"mixins": [ | ||
"catsplus-common.mixins.json", | ||
"catsplus-fabric.mixins.json" | ||
], | ||
"depends": { | ||
"minecraft": "${fabric_minecraft_version_range}", | ||
"fabricloader": "${fabric_loader_version_range}", | ||
"fabric": "${fabric_api_version_range}", | ||
"sinocore": "${fabric_sinocore_version_range}" | ||
} | ||
"contact": { | ||
"homepage": "https://github.com/CuteNekoOwO", | ||
"sources": "https://github.com/CuteNekoOwO/CatsPlus", | ||
"issues": "https://github.com/CuteNekoOwO/CatsPlus/issues" | ||
}, | ||
"license": "MIT", | ||
"icon": "logo.png", | ||
"environment": "*", | ||
"entrypoints": { | ||
"client": [ | ||
"cuteneko.catsplus.fabric.client.CatsPlusFabricClient" | ||
], | ||
"main": [ | ||
"cuteneko.catsplus.fabric.CatsPlusFabric" | ||
], | ||
"fabric-datagen": [ | ||
"cuteneko.catsplus.fabric.data.gen.ModDataGen" | ||
] | ||
}, | ||
"mixins": [ | ||
"catsplus-common.mixins.json", | ||
"catsplus-fabric.mixins.json" | ||
], | ||
"depends": { | ||
"minecraft": "${fabric_minecraft_version_range}", | ||
"fabricloader": "${fabric_loader_version_range}", | ||
"fabric": "${fabric_api_version_range}", | ||
"sinocore": "${fabric_sinocore_version_range}" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
{ | ||
"required": true, | ||
"minVersion": "0.8", | ||
"package": "cuteneko.catsplus.mixin", | ||
"compatibilityLevel": "JAVA_17", | ||
"mixins": [ | ||
"CatMixin", | ||
"PlayerMixin", | ||
"TamableAnimalMixin", | ||
"cattify.CreeperMixin", | ||
"cattify.EntityMixin", | ||
"cattify.LivingEntityMixin", | ||
"cattify.MobMixin", | ||
"favorability.CatRelaxOnOwnerGoalMixin", | ||
"favorability.EntityMixin", | ||
"musician.AnimalMixin", | ||
"musician.CatMixin", | ||
"musician.LivingEntityMixin", | ||
"totemeow.LivingEntityMixin", | ||
"totemeow.TamableAnimalMixin" | ||
], | ||
"client": [ | ||
"client.LivingEntityRendererMixin", | ||
"client.cattify.PlayerRendererMixin", | ||
"client.musician.CatModelMixin", | ||
"client.paper_model.HumanoidModelMixin", | ||
"client.paper_model.PlayerItemInHandLayerMixin", | ||
"client.paper_model.PlayerRendererMixin" | ||
], | ||
"injectors": { | ||
"defaultRequire": 1 | ||
} | ||
"required": true, | ||
"minVersion": "0.8", | ||
"package": "cuteneko.catsplus.mixin", | ||
"compatibilityLevel": "JAVA_17", | ||
"mixins": [ | ||
"CatMixin", | ||
"PlayerMixin", | ||
"TamableAnimalMixin", | ||
"cattify.CreeperMixin", | ||
"cattify.EntityMixin", | ||
"cattify.LivingEntityMixin", | ||
"cattify.MobMixin", | ||
"favorability.CatRelaxOnOwnerGoalMixin", | ||
"favorability.EntityMixin", | ||
"musician.AnimalMixin", | ||
"musician.CatMixin", | ||
"musician.LivingEntityMixin", | ||
"totemeow.LivingEntityMixin", | ||
"totemeow.TamableAnimalMixin" | ||
], | ||
"client": [ | ||
"client.LivingEntityRendererMixin", | ||
"client.cattify.PlayerRendererMixin", | ||
"client.musician.CatModelMixin", | ||
"client.paper_model.HumanoidModelMixin", | ||
"client.paper_model.PlayerItemInHandLayerMixin", | ||
"client.paper_model.PlayerRendererMixin" | ||
], | ||
"injectors": { | ||
"defaultRequire": 1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
accessWidener v1 named | ||
accessWidener v2 named |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.