71 lines
2.8 KiB
JavaScript
71 lines
2.8 KiB
JavaScript
ServerEvents.recipes(e => {
|
|
remove_recipes_id(e, [
|
|
"culturaldelights:cutting/raw_calamari",
|
|
"culturaldelights:cutting/raw_calamari_from_glowsquid",
|
|
"culturaldelights:cutting/wild_cucumbers",
|
|
"culturaldelights:corn_dough",
|
|
"culturaldelights:cutting/wild_corn",
|
|
"culturaldelights:cutting/corn_kernels",
|
|
"culturaldelights:smelting/cooked_calamari",
|
|
"culturaldelights:smelting/cooked_calamari_from_campfire",
|
|
"culturaldelights:smelting/cooked_calamari_from_smoking",
|
|
"culturaldelights:egg_roll",
|
|
"culturaldelights:pufferfish_roll",
|
|
"culturaldelights:tropical_roll",
|
|
"culturaldelights:calamari_roll",
|
|
"culturaldelights:midori_roll",
|
|
"culturaldelights:chicken_roll"
|
|
])
|
|
e.replaceInput({id: "culturaldelights:cooking/eggplant_parmesan"}, "#forge:milk", "#forge:cheese")
|
|
e.recipes.kubejs.shapeless(
|
|
"createdelight:raw_empanada",
|
|
[
|
|
"2x culturaldelights:corn_dough",
|
|
"#culturaldelights:avocados",
|
|
"#forge:vegetables/tomato",
|
|
"#forge:vegetables/onion"
|
|
]
|
|
).id("culturaldelights:cooking/empanada")
|
|
cutting_2(e, 'vintagedelight:cucumber',[
|
|
['culturaldelights:cut_cucumber', 2]
|
|
])
|
|
cutting_2(e, 'culturaldelights:glow_squid', [
|
|
['oceanic_delight:glow_squid_tentacles', 2],
|
|
['minecraft:glow_ink_sac', 3, 0.5]
|
|
])
|
|
cutting_2(e, 'culturaldelights:squid', [
|
|
['oceanic_delight:squid_tentacles', 2],
|
|
['minecraft:ink_sac', 3, 0.5]
|
|
])
|
|
cutting_2(e, 'culturaldelights:cooked_squid', [
|
|
['oceanic_delight:grilled_squid_tentacles', 3]
|
|
])
|
|
e.custom({
|
|
type: "farmersdelight:cutting",
|
|
ingredients: [{ item: "culturaldelights:wild_cucumbers" }],
|
|
result: [{item: "vintagedelight:cucumber_seeds"}, {item: "minecraft:green_dye"}],
|
|
tool: { type: "farmersdelight:tool_action", action: "blade_cut" }
|
|
}).id("culturaldelights:cutting/wild_cucumbers")
|
|
e.recipes.farmersdelight.cutting(
|
|
"culturaldelights:wild_cucumbers",
|
|
"#forge:tools/knives",
|
|
[
|
|
"vintagedelight:cucumber_seeds",
|
|
"minecraft:green_dye"
|
|
]
|
|
).id("culturaldelights:cutting/wild_cucumbers_2")
|
|
//饭团
|
|
e.recipes.kubejs.shapeless(
|
|
"2x culturaldelights:rice_ball",
|
|
[
|
|
"minecraft:dried_kelp",
|
|
"createdelight:empty_riceball",
|
|
"createdelight:empty_riceball",
|
|
"#alexscaves:sweet_berries",
|
|
"#forge:raw_fishes/salmon"
|
|
]
|
|
).id("culturaldelights:rice_ball")
|
|
|
|
package_item(e, "culturaldelights:squid", "crabbersdelight:squid_barrel", 9)
|
|
package_item(e, "culturaldelights:glow_squid", "crabbersdelight:glow_squid_barrel", 9)
|
|
}) |