This commit is contained in:
2025-10-18 00:23:17 +02:00
parent a983b098f0
commit 744006e695
5 changed files with 112 additions and 21 deletions
+82
View File
@@ -0,0 +1,82 @@
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",
]);
});
-10
View File
@@ -45,18 +45,9 @@ ServerEvents.recipes((event) => {
Item.of("biomesoplenty:orange_sand"),
Item.of("quark:jasper")
);
// Nickel nugget from black sand
event.recipes.create.splashing(
[
Item.of("minecraft:clay_ball").withChance(0.2),
Item.of("jaopca:nuggets.nickel",3).withChance(0.12),
],
Item.of("biomesoplenty:black_sand")
);
// Copper nugget from orange sand
event.recipes.create.splashing(
[
Item.of("minecraft:clay_ball").withChance(0.2),
Item.of("create:copper_nugget",3).withChance(0.12),
],
Item.of("biomesoplenty:orange_sand")
@@ -65,7 +56,6 @@ ServerEvents.recipes((event) => {
// Zinc nugget from white sand
event.recipes.create.splashing(
[
Item.of("minecraft:clay_ball").withChance(0.2),
Item.of("create:zinc_nugget",3).withChance(0.12),
],
Item.of("biomesoplenty:white_sand")
+23 -8
View File
@@ -1,5 +1,16 @@
// priority: 0
ServerEvents.recipes((event) => {
event.remove({
output: "minecraft:smooth_stone",
input: "minecraft:stone",
type: "minecraft:smelting",
});
event.remove({
output: "minecraft:smooth_stone",
input: "minecraft:stone",
type: "minecraft:blasting",
});
event.recipes.create_mechanical_extruder
.extruding(Item.of("minecraft:granite"), [
"minecraft:lava",
@@ -7,19 +18,12 @@ ServerEvents.recipes((event) => {
])
.catalyst("minecraft:quartz_block");
event.recipes.create_mechanical_extruder
.extruding(Item.of("minecraft:deepslate"), [
"minecraft:lava",
"minecraft:water",
])
.max_height(8);
event.recipes.create_mechanical_extruder
.extruding(Item.of("minecraft:cobbled_deepslate"), [
"minecraft:lava",
"minecraft:water",
])
.max_height(8);
.catalyst("minecraft:deepslate");
event.recipes.create_mechanical_extruder
.extruding(Item.of("minecraft:calcite"), [
@@ -41,4 +45,15 @@ ServerEvents.recipes((event) => {
"minecraft:water",
])
.catalyst("minecraft:diorite");
event.recipes.create_mechanical_extruder
.extruding(Item.of("quark:jasper"), ["minecraft:lava", "create:honey"])
.catalyst("minecraft:granite");
event.recipes.create_mechanical_extruder
.extruding(Item.of("minecraft:netherrack"), [
"minecraft:lava",
"minecraft:blue_ice",
])
.catalyst("minecraft:nether_brick");
});