Skip to content

Commit 37fb271

Browse files
authored
Merge pull request #572 from PrincessStelllar/patch-1
feat: added 2 tall vanilla flower recipes (MA)
2 parents 0b3cc7c + 2265c67 commit 37fb271

File tree

1 file changed

+29
-0
lines changed
  • kubejs/server_scripts/mods/MysticalAgriculture

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - All the Mods 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+
// 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+
})
26+
})
27+
28+
// This File has been authored by AllTheMods Staff, or a Community contributor for use in AllTheMods - All the Mods 10: To the Sky.
29+
// 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)