Skip to content

Commit 3fab418

Browse files
Merge pull request AllTheMods#596 from DivineFinal/prodtrees
Productive Trees Exploration Sapling Recipes
2 parents 560f2cf + fc90a6e commit 3fab418

File tree

1 file changed

+119
-0
lines changed
  • kubejs/server_scripts/mods/productive_trees

1 file changed

+119
-0
lines changed
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10: To the Sky.
2+
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.
3+
4+
ServerEvents.recipes((allthemods) => {
5+
allthemods.custom({
6+
type: "extendedcrafting:shaped_ender_crafter",
7+
pattern: [" E ", "ESE", " E "],
8+
key: {
9+
S: {
10+
item: "productivetrees:asai_palm_sapling"
11+
},
12+
E: {
13+
item: "forbidden_arcanus:soul"
14+
}
15+
},
16+
result: {
17+
id: "productivetrees:soul_tree_sapling"
18+
}
19+
})
20+
allthemods.custom({
21+
type: "extendedcrafting:shaped_ender_crafter",
22+
pattern: ["EEE", "ESE", "EEE"],
23+
key: {
24+
S: {
25+
item: "productivetrees:dogwood_sapling"
26+
},
27+
E: {
28+
items: "apotheosis:gem",
29+
components: {
30+
"apotheosis:gem": "apotheosis:core/solar",
31+
"apotheosis:purity": "flawed"
32+
},
33+
type: "neoforge:components"
34+
}
35+
},
36+
result: {
37+
id: "productivetrees:flickering_sun_sapling"
38+
}
39+
})
40+
allthemods.custom({
41+
type: "extendedcrafting:shapeless_ender_crafter",
42+
ingredients: [
43+
{
44+
items: "apotheosis:gem",
45+
components: {
46+
"apotheosis:purity": "perfect",
47+
"apotheosis:gem": "apotheosis:core/solar"
48+
},
49+
type: "neoforge:components"
50+
},
51+
{
52+
item: "productivetrees:dogwood_sapling"
53+
}
54+
],
55+
result: {
56+
id: "productivetrees:flickering_sun_sapling"
57+
}
58+
})
59+
allthemods.custom({
60+
type: "extendedcrafting:shaped_ender_crafter",
61+
pattern: ["BEB", "ESE", "BEB"],
62+
key: {
63+
S: {
64+
item: "productivetrees:star_fruit_sapling"
65+
},
66+
E: {
67+
item: "minecraft:nether_star"
68+
},
69+
B: {
70+
item: "minecraft:blue_dye"
71+
}
72+
},
73+
result: {
74+
id: "productivetrees:blue_yonder_sapling"
75+
}
76+
})
77+
allthemods.custom({
78+
type: "extendedcrafting:shaped_ender_crafter",
79+
pattern: [" T ", "ESE", " W "],
80+
key: {
81+
S: {
82+
item: "productivetrees:red_maple_sapling"
83+
},
84+
E: {
85+
item: "minecraft:firework_rocket"
86+
},
87+
T: {
88+
item: "apothic_enchanting:warden_tendril"
89+
},
90+
W: {
91+
item: "minecraft:warden_spawn_egg"
92+
}
93+
},
94+
result: {
95+
id: "productivetrees:firecracker_sapling"
96+
}
97+
})
98+
allthemods.custom({
99+
type: "extendedcrafting:shaped_ender_crafter",
100+
pattern: ["BEB", "ESE", "BEB"],
101+
key: {
102+
S: {
103+
item: "productivetrees:socotra_dragon_sapling"
104+
},
105+
E: {
106+
item: "powah:crystal_blazing"
107+
},
108+
B: {
109+
item: "minecraft:black_dye"
110+
}
111+
},
112+
result: {
113+
id: "productivetrees:black_ember_sapling"
114+
}
115+
})
116+
})
117+
118+
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - AllTheMods 10: To the Sky.
119+
// As all AllTheMods packs are licensed under All Rights Reserved, this file is not allowed to be used in any public packs not released by the AllTheMods Team, without explicit permission.

0 commit comments

Comments
 (0)