83 lines
3.1 KiB
JavaScript
83 lines
3.1 KiB
JavaScript
ServerEvents.recipes((event) => {
|
|
// Allium
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:blue_allium"),
|
|
["minecraft:allium", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:white_allium"),
|
|
["fabulous_flowers:blue_allium", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(Item.of("minecraft:allium"), [
|
|
"fabulous_flowers:white_allium",
|
|
"ars_nouveau:manipulation_essence",
|
|
]);
|
|
// Tulip
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("minecraft:orange_tulip"),
|
|
["minecraft:red_tulip", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(Item.of("minecraft:white_tulip"), [
|
|
"minecraft:orange_tulip",
|
|
"ars_nouveau:manipulation_essence",
|
|
]);
|
|
event.recipes.minecraft.crafting_shapeless(Item.of("minecraft:pink_tulip"), [
|
|
"minecraft:white_tulip",
|
|
"ars_nouveau:manipulation_essence",
|
|
]);
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:yellow_tulip"),
|
|
["minecraft:pink_tulip", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:purple_tulip"),
|
|
["fabulous_flowers:yellow_tulip", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:blue_tulip"),
|
|
["fabulous_flowers:purple_tulip", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:black_tulip"),
|
|
["fabulous_flowers:blue_tulip", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(Item.of("minecraft:red_tulip"), [
|
|
"fabulous_flowers:black_tulip",
|
|
"ars_nouveau:manipulation_essence",
|
|
]);
|
|
// Poppy
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:orange_poppy"),
|
|
["minecraft:poppy", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:yellow_poppy"),
|
|
["fabulous_flowers:orange_poppy", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:white_poppy"),
|
|
["fabulous_flowers:yellow_poppy", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:pink_poppy"),
|
|
["fabulous_flowers:white_poppy", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(Item.of("minecraft:poppy"), [
|
|
"fabulous_flowers:pink_poppy",
|
|
"ars_nouveau:manipulation_essence",
|
|
]);
|
|
// Daisy
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:aster_daisy"),
|
|
["minecraft:oxeye_daisy", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(
|
|
Item.of("fabulous_flowers:gloriosa_daisy"),
|
|
["fabulous_flowers:aster_daisy", "ars_nouveau:manipulation_essence"]
|
|
);
|
|
event.recipes.minecraft.crafting_shapeless(Item.of("minecraft:oxeye_daisy"), [
|
|
"fabulous_flowers:gloriosa_daisy",
|
|
"ars_nouveau:manipulation_essence",
|
|
]);
|
|
});
|