Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
REUPDATED THINGS add recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Casper233 committed Dec 27, 2022
1 parent 7534587 commit a70023a
Show file tree
Hide file tree
Showing 12 changed files with 122 additions and 7 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down Expand Up @@ -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'
Expand All @@ -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'

Expand All @@ -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'

Expand All @@ -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/')
Expand Down
13 changes: 12 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,19 @@

## 更新日志

**2022-12-27-1**
#### 更新了以下物品/方块的合成表:
- 青铜
- 青铜矿石
- 深层青铜矿石
- 青铜块
- 碎片
- 碎片矿石
- 深层碎片矿石
- 碎片块

**2022-12-24-1**
添加了以下物品/方块:
#### 添加了以下物品/方块:
- 青铜
- 青铜矿石
- 深层青铜矿石
Expand Down
13 changes: 12 additions & 1 deletion readme_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/main/java/com/Casper_233/aciday/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 16 additions & 0 deletions src/main/resources/data/aciday/recipes/bronze_block_craft.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"EEE",
"EEE",
"EEE"
],
"key": {
"E": {
"item": "aciday:bronze_ingot"
}
},
"result": {
"item": "aciday:bronze_block"
}
}
12 changes: 12 additions & 0 deletions src/main/resources/data/aciday/recipes/bronze_from_block.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "aciday:bronze_block"
}
],
"result": {
"item": "aciday:bronze_ingot",
"count": 9
}
}
9 changes: 9 additions & 0 deletions src/main/resources/data/aciday/recipes/bronze_smelter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "aciday:bronze_ore"
},
"result": "aciday:bronze_ingot",
"experience": 0.35,
"cookingtime": 200
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "aciday:deepslate_bronze_ore"
},
"result": "aciday:bronze_ingot",
"experience": 0.35,
"cookingtime": 200
}
16 changes: 16 additions & 0 deletions src/main/resources/data/aciday/recipes/debris_block_craft.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"EEE",
"EEE",
"EEE"
],
"key": {
"E": {
"item": "aciday:debris"
}
},
"result": {
"item": "aciday:debris_block"
}
}
12 changes: 12 additions & 0 deletions src/main/resources/data/aciday/recipes/debris_from_block.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "aciday:debris_block"
}
],
"result": {
"item": "aciday:debris",
"count": 9
}
}
9 changes: 9 additions & 0 deletions src/main/resources/data/aciday/recipes/debris_smelter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "aciday:debris_ore"
},
"result": "aciday:debris",
"experience": 0.35,
"cookingtime": 200
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "aciday:deepslate_debris_ore"
},
"result": "aciday:debris",
"experience": 0.35,
"cookingtime": 200
}

0 comments on commit a70023a

Please sign in to comment.