Skip to content

Commit f8bc303

Browse files
Merge pull request #584 from klaborda/refactor-update-atm-paxel
refactor: tweak the atm paxel recipes
2 parents af48c9b + 6ca043a commit f8bc303

File tree

5 files changed

+85
-13
lines changed

5 files changed

+85
-13
lines changed

kubejs/server_scripts/mods/draconic_evolution/alloy_axe.js

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,37 @@ ServerEvents.recipes((allthemods) => {
1212
{
1313
consume: true,
1414
ingredient: {
15-
tag: "c:ingots/allthemodium"
15+
tag: "c:storage_blocks/allthemodium"
1616
}
1717
},
1818
{
1919
consume: true,
2020
ingredient: {
21-
tag: "c:ingots/vibranium"
21+
tag: "c:storage_blocks/vibranium"
2222
}
2323
},
2424
{
2525
consume: true,
2626
ingredient: {
27-
tag: "c:ingots/unobtainium"
27+
tag: "c:storage_blocks/unobtainium"
28+
}
29+
},
30+
{
31+
consume: true,
32+
ingredient: {
33+
item: "allthemodium:allthemodium_upgrade_smithing_template"
34+
}
35+
},
36+
{
37+
consume: true,
38+
ingredient: {
39+
item: "allthemodium:vibranium_upgrade_smithing_template"
40+
}
41+
},
42+
{
43+
consume: true,
44+
ingredient: {
45+
item: "allthemodium:unobtainium_upgrade_smithing_template"
2846
}
2947
}
3048
],

kubejs/server_scripts/mods/draconic_evolution/alloy_paxel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ServerEvents.recipes((allthemods) => {
66
.custom({
77
type: "draconicevolution:fusion_crafting",
88
catalyst: {
9-
item: "justdirethings:eclipsealloy_paxel"
9+
item: "justdirethings:celestigem_paxel"
1010
},
1111
ingredients: [
1212
{

kubejs/server_scripts/mods/draconic_evolution/alloy_pick.js

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,37 @@ ServerEvents.recipes((allthemods) => {
1212
{
1313
consume: true,
1414
ingredient: {
15-
tag: "c:ingots/allthemodium"
15+
tag: "c:storage_blocks/allthemodium"
1616
}
1717
},
1818
{
1919
consume: true,
2020
ingredient: {
21-
tag: "c:ingots/vibranium"
21+
tag: "c:storage_blocks/vibranium"
2222
}
2323
},
2424
{
2525
consume: true,
2626
ingredient: {
27-
tag: "c:ingots/unobtainium"
27+
tag: "c:storage_blocks/unobtainium"
28+
}
29+
},
30+
{
31+
consume: true,
32+
ingredient: {
33+
item: "allthemodium:allthemodium_upgrade_smithing_template"
34+
}
35+
},
36+
{
37+
consume: true,
38+
ingredient: {
39+
item: "allthemodium:vibranium_upgrade_smithing_template"
40+
}
41+
},
42+
{
43+
consume: true,
44+
ingredient: {
45+
item: "allthemodium:unobtainium_upgrade_smithing_template"
2846
}
2947
}
3048
],

kubejs/server_scripts/mods/draconic_evolution/alloy_shovel.js

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,37 @@ ServerEvents.recipes((allthemods) => {
1212
{
1313
consume: true,
1414
ingredient: {
15-
tag: "c:ingots/allthemodium"
15+
tag: "c:storage_blocks/allthemodium"
1616
}
1717
},
1818
{
1919
consume: true,
2020
ingredient: {
21-
tag: "c:ingots/vibranium"
21+
tag: "c:storage_blocks/vibranium"
2222
}
2323
},
2424
{
2525
consume: true,
2626
ingredient: {
27-
tag: "c:ingots/unobtainium"
27+
tag: "c:storage_blocks/unobtainium"
28+
}
29+
},
30+
{
31+
consume: true,
32+
ingredient: {
33+
item: "allthemodium:allthemodium_upgrade_smithing_template"
34+
}
35+
},
36+
{
37+
consume: true,
38+
ingredient: {
39+
item: "allthemodium:vibranium_upgrade_smithing_template"
40+
}
41+
},
42+
{
43+
consume: true,
44+
ingredient: {
45+
item: "allthemodium:unobtainium_upgrade_smithing_template"
2846
}
2947
}
3048
],

kubejs/server_scripts/mods/draconic_evolution/alloy_sword.js

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,37 @@ ServerEvents.recipes((allthemods) => {
1212
{
1313
consume: true,
1414
ingredient: {
15-
tag: "c:ingots/allthemodium"
15+
tag: "c:storage_blocks/allthemodium"
1616
}
1717
},
1818
{
1919
consume: true,
2020
ingredient: {
21-
tag: "c:ingots/vibranium"
21+
tag: "c:storage_blocks/vibranium"
2222
}
2323
},
2424
{
2525
consume: true,
2626
ingredient: {
27-
tag: "c:ingots/unobtainium"
27+
tag: "c:storage_blocks/unobtainium"
28+
}
29+
},
30+
{
31+
consume: true,
32+
ingredient: {
33+
item: "allthemodium:allthemodium_upgrade_smithing_template"
34+
}
35+
},
36+
{
37+
consume: true,
38+
ingredient: {
39+
item: "allthemodium:vibranium_upgrade_smithing_template"
40+
}
41+
},
42+
{
43+
consume: true,
44+
ingredient: {
45+
item: "allthemodium:unobtainium_upgrade_smithing_template"
2846
}
2947
}
3048
],

0 commit comments

Comments
 (0)