-
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.
* update readme * change settings * add API Curios API GeckoLib * Update compressed_grass.mcreator * test and remove api Add test items to test whether you can successfully build curios api is too slow to build, so I remove it. * delete test item and textures * Delete cleanBuildCache.bat * Update .gitattributes * Delete codeql.yml * update mcr * add primary compressed grass * Restores item type of compressed grass * add secondary compressed grass * remove api * modified the position of the secondary compressed grass * add tertiary compressed grass * Update compressed_grass.mcreator * Primary Compressed Grass Synthesis * Secondary Compressed Grass Synthesis * Tertiary Compressed Grass Synthesis * add mod icon * build
- Loading branch information
Showing
48 changed files
with
760 additions
and
129 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,2 +1,10 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
gradlew.bat linguist-language=Java | ||
compressed_grass.mcreator linguist-language=Java | ||
.classpath linguist-language=Java | ||
.project linguist-language=Java | ||
.gradle linguist-language=Java | ||
|
||
*.md linguist-language=HTML |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -22,3 +22,6 @@ replay_pid* | |
/.mcreator | ||
/build | ||
/.settings | ||
|
||
# Minecraft | ||
/run |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -16,6 +16,8 @@ | |
|
||
本项目从2023.5.5开始重写,具体完成日期未知,预计3个月。 | ||
|
||
本项目从2023.6.10再次重写,开始支持1.19.4,旧版本不在更新,所有内容制作完毕时间未知。 | ||
|
||
# 开发进度 | ||
|
||
打勾的为彻底完成 | ||
|
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 |
---|---|---|
@@ -0,0 +1,147 @@ | ||
{ | ||
"mod_elements": [ | ||
{ | ||
"name": "PrimaryCompressedGrass", | ||
"type": "item", | ||
"sortid": 2, | ||
"compiles": true, | ||
"locked_code": false, | ||
"registry_name": "primary_compressed_grass", | ||
"metadata": { | ||
"files": [ | ||
"src/main/resources/assets/compressed_grass/models/item/primary_compressed_grass.json", | ||
"src/main/java/net/mcreator/compressedgrass/item/PrimaryCompressedGrassItem.java" | ||
] | ||
}, | ||
"path": "~/Grass/Level 1 - PrimaryCompressedGrass" | ||
}, | ||
{ | ||
"name": "SecondaryCompressedGrass", | ||
"type": "item", | ||
"sortid": 3, | ||
"compiles": true, | ||
"locked_code": false, | ||
"registry_name": "secondary_compressed_grass", | ||
"metadata": { | ||
"files": [ | ||
"src/main/resources/assets/compressed_grass/models/item/secondary_compressed_grass.json", | ||
"src/main/java/net/mcreator/compressedgrass/item/SecondaryCompressedGrassItem.java" | ||
] | ||
}, | ||
"path": "~/Grass/Level 2 - SecondaryCompressedGrass" | ||
}, | ||
{ | ||
"name": "TertiaryCompressedGrass", | ||
"type": "item", | ||
"sortid": 4, | ||
"compiles": true, | ||
"locked_code": false, | ||
"registry_name": "tertiary_compressed_grass", | ||
"metadata": { | ||
"files": [ | ||
"src/main/java/net/mcreator/compressedgrass/item/TertiaryCompressedGrassItem.java", | ||
"src/main/resources/assets/compressed_grass/models/item/tertiary_compressed_grass.json" | ||
] | ||
}, | ||
"path": "~/Grass/Level 3 - Tertiary Compressed Grass" | ||
}, | ||
{ | ||
"name": "PrimaryCompressedGrassSynthesis", | ||
"type": "recipe", | ||
"sortid": 5, | ||
"compiles": true, | ||
"locked_code": false, | ||
"registry_name": "primary_compressed_grass_synthesis", | ||
"metadata": { | ||
"files": [ | ||
"src/main/resources/data/compressed_grass/recipes/primary_compressed_grass_synthesis.json" | ||
] | ||
}, | ||
"path": "~/Grass/Level 1 - PrimaryCompressedGrass" | ||
}, | ||
{ | ||
"name": "SecondaryCompressedGrassSynthesis", | ||
"type": "recipe", | ||
"sortid": 6, | ||
"compiles": true, | ||
"locked_code": false, | ||
"registry_name": "secondary_compressed_grass_synthesis", | ||
"metadata": { | ||
"files": [ | ||
"src/main/resources/data/compressed_grass/recipes/secondary_compressed_grass_synthesis.json" | ||
] | ||
}, | ||
"path": "~/Grass/Level 2 - SecondaryCompressedGrass" | ||
}, | ||
{ | ||
"name": "TertiaryCompressedGrassSynthesis", | ||
"type": "recipe", | ||
"sortid": 7, | ||
"compiles": true, | ||
"locked_code": false, | ||
"registry_name": "tertiary_compressed_grass_synthesis", | ||
"metadata": { | ||
"files": [ | ||
"src/main/resources/data/compressed_grass/recipes/tertiary_compressed_grass_synthesis.json" | ||
] | ||
}, | ||
"path": "~/Grass/Level 3 - Tertiary Compressed Grass" | ||
} | ||
], | ||
"variable_elements": [], | ||
"sound_elements": [], | ||
"language_map": { | ||
"en_us": { | ||
"item.compressed_grass.tertiary_compressed_grass": "Tertiary Compressed Grass", | ||
"item.compressed_grass.primary_compressed_grass": "Primary Compressed Grass", | ||
"item.compressed_grass.secondary_compressed_grass": "Secondary Compressed Grass" | ||
}, | ||
"zh_cn": { | ||
"item.compressed_grass.tertiary_compressed_grass": "三级压缩草", | ||
"item.compressed_grass.primary_compressed_grass": "一级压缩草", | ||
"item.compressed_grass.secondary_compressed_grass": "二级压缩草" | ||
} | ||
}, | ||
"foldersRoot": { | ||
"name": "~", | ||
"children": [ | ||
{ | ||
"name": "Grass", | ||
"children": [ | ||
{ | ||
"name": "Level 1 - PrimaryCompressedGrass", | ||
"children": [] | ||
}, | ||
{ | ||
"name": "Level 2 - SecondaryCompressedGrass", | ||
"children": [] | ||
}, | ||
{ | ||
"name": "Level 3 - Tertiary Compressed Grass", | ||
"children": [] | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"workspaceSettings": { | ||
"modid": "compressed_grass", | ||
"modName": "CompressedGrass", | ||
"version": "0.1.0", | ||
"author": "Sunrise Studio - Grey Wind", | ||
"websiteURL": "https://github.com/Grey-Wind/CompressedGrassReborn-Forge", | ||
"license": "GNU Affero General Public License Version 3 (AGPL v3)", | ||
"disableForgeVersionCheck": true, | ||
"serverSideOnly": false, | ||
"modPicture": "icon", | ||
"requiredMods": [], | ||
"dependencies": [], | ||
"dependants": [], | ||
"mcreatorDependencies": [], | ||
"currentGenerator": "forge-1.19.4", | ||
"credits": "Created using mod maker MCreator - https://mcreator.net/about", | ||
"modElementsPackage": "net.mcreator.compressedgrass", | ||
"lockBaseModFiles": false | ||
}, | ||
"mcreatorVersion": 202300224119 | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"_fv": 43, | ||
"_type": "item", | ||
"definition": { | ||
"renderType": 0, | ||
"texture": "primarycompressedgrass", | ||
"customModelName": "Normal", | ||
"name": "Primary Compressed Grass", | ||
"rarity": "COMMON", | ||
"creativeTab": { | ||
"value": "DECORATIONS" | ||
}, | ||
"stackSize": 64, | ||
"enchantability": 0, | ||
"useDuration": 0, | ||
"toolType": 1.0, | ||
"damageCount": 0, | ||
"recipeRemainder": { | ||
"value": "" | ||
}, | ||
"destroyAnyBlock": false, | ||
"immuneToFire": false, | ||
"stayInGridWhenCrafting": false, | ||
"damageOnCrafting": false, | ||
"enableMeleeDamage": false, | ||
"damageVsEntity": 0.0, | ||
"specialInfo": [], | ||
"hasGlow": false, | ||
"guiBoundTo": "<NONE>", | ||
"inventorySize": 9, | ||
"inventoryStackSize": 64, | ||
"isFood": false, | ||
"nutritionalValue": 4, | ||
"saturation": 0.3, | ||
"eatResultItem": { | ||
"value": "" | ||
}, | ||
"isMeat": false, | ||
"isAlwaysEdible": false, | ||
"animation": "none" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"_fv": 43, | ||
"_type": "recipe", | ||
"definition": { | ||
"recipeType": "Crafting", | ||
"recipeRetstackSize": 1, | ||
"group": "grass", | ||
"cookingBookCategory": "MISC", | ||
"xpReward": 0.0, | ||
"cookingTime": 200, | ||
"craftingBookCategory": "MISC", | ||
"recipeShapeless": true, | ||
"recipeSlots": [ | ||
{ | ||
"value": "Blocks.TALLGRASS#1" | ||
}, | ||
{ | ||
"value": "Blocks.TALLGRASS#1" | ||
}, | ||
{ | ||
"value": "" | ||
}, | ||
{ | ||
"value": "Blocks.TALLGRASS#1" | ||
}, | ||
{ | ||
"value": "Blocks.TALLGRASS#1" | ||
}, | ||
{ | ||
"value": "" | ||
}, | ||
{ | ||
"value": "" | ||
}, | ||
{ | ||
"value": "" | ||
}, | ||
{ | ||
"value": "" | ||
} | ||
], | ||
"recipeReturnStack": { | ||
"value": "CUSTOM:PrimaryCompressedGrass" | ||
}, | ||
"name": "primary_compressed_grass_synthesis", | ||
"namespace": "mod" | ||
} | ||
} |
Oops, something went wrong.