diff --git a/build.gradle b/build.gradle index 5952095..7fc0b52 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ plugins { id 'net.minecraftforge.gradle' version '5.1.+' } -version = '0.1.1' +version = '1.19.2-0.0.1.2' group = 'com.Casper233.aciday' // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = 'aciday' @@ -46,7 +46,7 @@ minecraft { // Recommended logging level for the console // You can set various levels here. // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels - property 'forge.logging.console.level', 'debug' + property 'forge.logging.console.level', 'info' // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. property 'forge.enabledGameTestNamespaces', 'aciday' @@ -63,7 +63,7 @@ minecraft { property 'forge.logging.markers', 'REGISTRIES' - property 'forge.logging.console.level', 'debug' + property 'forge.logging.console.level', 'info' property 'forge.enabledGameTestNamespaces', 'aciday' @@ -82,7 +82,7 @@ minecraft { property 'forge.logging.markers', 'REGISTRIES' - property 'forge.logging.console.level', 'debug' + property 'forge.logging.console.level', 'info' property 'forge.enabledGameTestNamespaces', 'aciday' @@ -98,7 +98,7 @@ minecraft { property 'forge.logging.markers', 'REGISTRIES' - property 'forge.logging.console.level', 'debug' + property 'forge.logging.console.level', 'info' // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. args '--mod', 'aciday', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') diff --git a/readme.md b/readme.md index a557b9e..53a9652 100644 --- a/readme.md +++ b/readme.md @@ -17,8 +17,19 @@ ## 更新日志 +**2022-12-27-1** +#### 更新了以下物品/方块的合成表: +- 青铜 +- 青铜矿石 +- 深层青铜矿石 +- 青铜块 +- 碎片 +- 碎片矿石 +- 深层碎片矿石 +- 碎片块 + **2022-12-24-1** -添加了以下物品/方块: +#### 添加了以下物品/方块: - 青铜 - 青铜矿石 - 深层青铜矿石 diff --git a/readme_en.md b/readme_en.md index c5eb7f4..d1d381d 100644 --- a/readme_en.md +++ b/readme_en.md @@ -20,8 +20,19 @@ This mod needs to put in both client and server side. ## Update log +**2022-12-27-1** +#### Added following items/blocks' recipes +- Bronze Ingot +- Bronze Ore +- Deepslate Bronze Ore +- Bronze Block +- Debris +- Debris Ore +- Deepslate Debris Ore +- Debris Block + **2022-12-24-1** -Added following items/blocks: +#### Added following items/blocks: - Bronze Ingot - Bronze Ore - Deepslate Bronze Ore diff --git a/src/main/java/com/Casper_233/aciday/Main.java b/src/main/java/com/Casper_233/aciday/Main.java index c00d0ae..b3154b7 100644 --- a/src/main/java/com/Casper_233/aciday/Main.java +++ b/src/main/java/com/Casper_233/aciday/Main.java @@ -64,6 +64,7 @@ private void commonSetup(final FMLCommonSetupEvent event) // Some common setup code LOGGER.info("HELLO FROM COMMON SETUP"); LOGGER.info("DIRT BLOCK >> {}", ForgeRegistries.BLOCKS.getKey(Blocks.DIRT)); + LOGGER.info("ACIDAY loaded successfully"); } //You can use EventBusSubscriber automatically register static methods in the class annotated with @SubscribeEvent diff --git a/src/main/resources/data/aciday/recipes/bronze_block_craft.json b/src/main/resources/data/aciday/recipes/bronze_block_craft.json new file mode 100644 index 0000000..5e34477 --- /dev/null +++ b/src/main/resources/data/aciday/recipes/bronze_block_craft.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "EEE", + "EEE", + "EEE" + ], + "key": { + "E": { + "item": "aciday:bronze_ingot" + } + }, + "result": { + "item": "aciday:bronze_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/aciday/recipes/bronze_from_block.json b/src/main/resources/data/aciday/recipes/bronze_from_block.json new file mode 100644 index 0000000..eb4eb0e --- /dev/null +++ b/src/main/resources/data/aciday/recipes/bronze_from_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "aciday:bronze_block" + } + ], + "result": { + "item": "aciday:bronze_ingot", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/aciday/recipes/bronze_smelter.json b/src/main/resources/data/aciday/recipes/bronze_smelter.json new file mode 100644 index 0000000..3545123 --- /dev/null +++ b/src/main/resources/data/aciday/recipes/bronze_smelter.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "ingredient": { + "item": "aciday:bronze_ore" + }, + "result": "aciday:bronze_ingot", + "experience": 0.35, + "cookingtime": 200 +} diff --git a/src/main/resources/data/aciday/recipes/bronze_smelter_deepslate.json b/src/main/resources/data/aciday/recipes/bronze_smelter_deepslate.json new file mode 100644 index 0000000..05cfda1 --- /dev/null +++ b/src/main/resources/data/aciday/recipes/bronze_smelter_deepslate.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "ingredient": { + "item": "aciday:deepslate_bronze_ore" + }, + "result": "aciday:bronze_ingot", + "experience": 0.35, + "cookingtime": 200 +} diff --git a/src/main/resources/data/aciday/recipes/debris_block_craft.json b/src/main/resources/data/aciday/recipes/debris_block_craft.json new file mode 100644 index 0000000..8e58cd4 --- /dev/null +++ b/src/main/resources/data/aciday/recipes/debris_block_craft.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "EEE", + "EEE", + "EEE" + ], + "key": { + "E": { + "item": "aciday:debris" + } + }, + "result": { + "item": "aciday:debris_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/aciday/recipes/debris_from_block.json b/src/main/resources/data/aciday/recipes/debris_from_block.json new file mode 100644 index 0000000..3c2a9b5 --- /dev/null +++ b/src/main/resources/data/aciday/recipes/debris_from_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "aciday:debris_block" + } + ], + "result": { + "item": "aciday:debris", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/aciday/recipes/debris_smelter.json b/src/main/resources/data/aciday/recipes/debris_smelter.json new file mode 100644 index 0000000..24f77f9 --- /dev/null +++ b/src/main/resources/data/aciday/recipes/debris_smelter.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "ingredient": { + "item": "aciday:debris_ore" + }, + "result": "aciday:debris", + "experience": 0.35, + "cookingtime": 200 +} diff --git a/src/main/resources/data/aciday/recipes/debris_smelter_deepslate.json b/src/main/resources/data/aciday/recipes/debris_smelter_deepslate.json new file mode 100644 index 0000000..99761fb --- /dev/null +++ b/src/main/resources/data/aciday/recipes/debris_smelter_deepslate.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "ingredient": { + "item": "aciday:deepslate_debris_ore" + }, + "result": "aciday:debris", + "experience": 0.35, + "cookingtime": 200 +}