Skip to content

Commit fb16149

Browse files
Merge pull request #6 from Doppel-R101/sophisticated_recyling
Sophisticated recyling
2 parents 039bfc2 + 67ff606 commit fb16149

21 files changed

Lines changed: 233 additions & 2 deletions

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ mod_name=Create: Perfect Processing
3434
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
3535
mod_license=MIT
3636
# The mod version. See https://semver.org/
37-
mod_version=1.6.1
37+
mod_version=1.7.0
3838
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
3939
# This should match the base package used for the mod sources.
4040
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

src/main/resources/assets/perfectprocessing/lang/en_us.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,11 @@
77
"tag.item.perfectprocessing.copycat_scrap_tiny": "Tiny Copycat Scrap",
88
"tag.item.perfectprocessing.copycat_scrap_cogwheels": "Cogwheel Copycat Scrap",
99
"tag.item.perfectprocessing.copycat_scrap_pipe": "Pipe Copycat Scrap",
10-
"tag.item.perfectprocessing.copycat_scrap_iron_door": "Iron Door Copycat Scrap"
10+
"tag.item.perfectprocessing.copycat_scrap_iron_door": "Iron Door Copycat Scrap",
11+
12+
"tag.item.perfectprocessing.sophisticated_normal_upgrades": "Normal Backpack Upgrades",
13+
"tag.item.perfectprocessing.sophisticated_advanced_upgrades": "Advanced Backpack Upgrades",
14+
"tag.item.perfectprocessing.sophisticated_special_upgrades": "Special Backpack Upgrades",
15+
"tag.item.perfectprocessing.sophisticated_backpacks": "Sophisticated Backpacks",
16+
"tag.item.perfectprocessing.sophisticated_backpacks_value": "Valuable Sophisticated Backpacks"
1117
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"type": "create:crushing",
3+
"processing_time": 200,
4+
"ingredients": [
5+
{
6+
"tag": "perfectprocessing:sophisticated_advanced_upgrades"
7+
}
8+
],
9+
"results": [
10+
{
11+
"id": "sophisticatedbackpacks:upgrade_base",
12+
"chance": 0.45,
13+
"count": 1
14+
},
15+
{
16+
"id": "minecraft:gold_nugget",
17+
"chance": 0.35,
18+
"count": 7
19+
},
20+
{
21+
"id": "minecraft:redstone",
22+
"chance": 0.25,
23+
"count": 1
24+
},
25+
{
26+
"id": "minecraft:diamond",
27+
"chance": 0.15,
28+
"count": 1
29+
}
30+
]
31+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"type": "create:crushing",
3+
"processing_time": 200,
4+
"ingredients": [
5+
{
6+
"tag": "perfectprocessing:sophisticated_backpacks"
7+
}
8+
],
9+
"results": [
10+
{
11+
"id": "minecraft:oak_planks",
12+
"chance": 0.65,
13+
"count": 2
14+
},
15+
{
16+
"id": "minecraft:oak_planks",
17+
"chance": 0.25,
18+
"count": 3
19+
},
20+
{
21+
"id": "minecraft:string",
22+
"chance": 0.35,
23+
"count": 2
24+
},
25+
{
26+
"id": "minecraft:leather",
27+
"chance": 0.25,
28+
"count": 2
29+
},
30+
{
31+
"id": "minecraft:leather",
32+
"chance": 0.45,
33+
"count": 1
34+
}
35+
]
36+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"type": "create:crushing",
3+
"processing_time": 200,
4+
"ingredients": [
5+
{
6+
"tag": "perfectprocessing:sophisticated_backpacks_value"
7+
}
8+
],
9+
"results": [
10+
{
11+
"id": "minecraft:oak_planks",
12+
"chance": 0.65,
13+
"count": 2
14+
},
15+
{
16+
"id": "minecraft:oak_planks",
17+
"chance": 0.25,
18+
"count": 3
19+
},
20+
{
21+
"id": "minecraft:string",
22+
"chance": 0.35,
23+
"count": 2
24+
},
25+
{
26+
"id": "minecraft:leather",
27+
"chance": 0.25,
28+
"count": 2
29+
},
30+
{
31+
"id": "minecraft:leather",
32+
"chance": 0.45,
33+
"count": 1
34+
},
35+
{
36+
"id": "minecraft:diamond",
37+
"chance": 0.15,
38+
"count": 2
39+
}
40+
]
41+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"type": "create:crushing",
3+
"processing_time": 200,
4+
"ingredients": [
5+
{
6+
"tag": "perfectprocessing:sophisticated_normal_upgrades"
7+
}
8+
],
9+
"results": [
10+
{
11+
"id": "sophisticatedbackpacks:upgrade_base",
12+
"chance": 0.25,
13+
"count": 1
14+
},
15+
{
16+
"id": "minecraft:iron_nugget",
17+
"chance": 0.35,
18+
"count": 7
19+
},
20+
{
21+
"id": "minecraft:redstone",
22+
"chance": 0.335,
23+
"count": 2
24+
}
25+
]
26+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"type": "create:crushing",
3+
"processing_time": 200,
4+
"ingredients": [
5+
{
6+
"tag": "perfectprocessing:sophisticated_special_upgrades"
7+
}
8+
],
9+
"results": [
10+
{
11+
"id": "sophisticatedbackpacks:upgrade_base",
12+
"chance": 0.45,
13+
"count": 1
14+
},
15+
{
16+
"id": "minecraft:nether_star",
17+
"count": 1
18+
},
19+
{
20+
"id": "minecraft:ender_eye",
21+
"chance": 0.45,
22+
"count": 2
23+
}
24+
]
25+
}

src/main/resources/data/perfectprocessing/recipe/recycling/cogwheel_copycat_recycling.json renamed to src/main/resources/data/perfectprocessing/recipe/recycling/copycats/cogwheel_copycat_recycling.json

File renamed without changes.

src/main/resources/data/perfectprocessing/recipe/recycling/iron_door_copycat_recycling.json renamed to src/main/resources/data/perfectprocessing/recipe/recycling/copycats/iron_door_copycat_recycling.json

File renamed without changes.

src/main/resources/data/perfectprocessing/recipe/recycling/large_copycat_recycling.json renamed to src/main/resources/data/perfectprocessing/recipe/recycling/copycats/large_copycat_recycling.json

File renamed without changes.

0 commit comments

Comments
 (0)