Skip to content

Commit 2265c67

Browse files
chore: prettier formatting
1 parent 8777057 commit 2265c67

File tree

1 file changed

+22
-56
lines changed
  • kubejs/server_scripts/mods/MysticalAgriculture

1 file changed

+22
-56
lines changed

kubejs/server_scripts/mods/MysticalAgriculture/Recipes.js

Lines changed: 22 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,28 @@
11
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - All the Mods 10: To the Sky.
22
// 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.
33

4-
ServerEvents.recipes(allthemods => {
5-
6-
// 2 Tall flower recipes
7-
allthemods.shaped(
8-
Item.of('minecraft:rose_bush', 2),
9-
[
10-
'ABA',
11-
'BCA',
12-
'BAA'
13-
],
14-
{
15-
A: 'mysticalagriculture:nature_essence',
16-
B: 'mysticalagriculture:dye_essence',
17-
C: 'minecraft:red_dye'
18-
}
19-
)
20-
allthemods.shaped(
21-
Item.of('minecraft:peony', 2),
22-
[
23-
'BAA',
24-
'ACA',
25-
'BAB'
26-
],
27-
{
28-
A: 'mysticalagriculture:nature_essence',
29-
B: 'mysticalagriculture:dye_essence',
30-
C: 'minecraft:pink_dye'
31-
}
32-
)
33-
allthemods.shaped(
34-
Item.of('minecraft:sunflower', 2),
35-
[
36-
'AAB',
37-
'BCA',
38-
'ABA'
39-
],
40-
{
41-
A: 'mysticalagriculture:nature_essence',
42-
B: 'mysticalagriculture:dye_essence',
43-
C: 'minecraft:yellow_dye'
44-
}
45-
)
46-
allthemods.shaped(
47-
Item.of('minecraft:lilac', 2),
48-
[
49-
'ABA',
50-
'ACB',
51-
'BAA'
52-
],
53-
{
54-
A: 'mysticalagriculture:nature_essence',
55-
B: 'mysticalagriculture:dye_essence',
56-
C: 'minecraft:magenta_dye'
57-
}
58-
)
59-
4+
ServerEvents.recipes((allthemods) => {
5+
// 2 Tall flower recipes
6+
allthemods.shaped(Item.of("minecraft:rose_bush", 2), ["ABA", "BCA", "BAA"], {
7+
A: "mysticalagriculture:nature_essence",
8+
B: "mysticalagriculture:dye_essence",
9+
C: "minecraft:red_dye"
10+
})
11+
allthemods.shaped(Item.of("minecraft:peony", 2), ["BAA", "ACA", "BAB"], {
12+
A: "mysticalagriculture:nature_essence",
13+
B: "mysticalagriculture:dye_essence",
14+
C: "minecraft:pink_dye"
15+
})
16+
allthemods.shaped(Item.of("minecraft:sunflower", 2), ["AAB", "BCA", "ABA"], {
17+
A: "mysticalagriculture:nature_essence",
18+
B: "mysticalagriculture:dye_essence",
19+
C: "minecraft:yellow_dye"
20+
})
21+
allthemods.shaped(Item.of("minecraft:lilac", 2), ["ABA", "ACB", "BAA"], {
22+
A: "mysticalagriculture:nature_essence",
23+
B: "mysticalagriculture:dye_essence",
24+
C: "minecraft:magenta_dye"
25+
})
6026
})
6127

6228
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - All the Mods 10: To the Sky.

0 commit comments

Comments
 (0)