add first patch

This commit is contained in:
2026-07-31 10:34:32 +09:00
parent 03aac2e45e
commit b1cbc6c78d
6390 changed files with 547430 additions and 0 deletions
@@ -0,0 +1,34 @@
console.info("[SOCIETY] addCupRecipes.js loaded");
ServerEvents.recipes((e) => {
e.shapeless("8x herbalbrews:water_cup", ["minecraft:water_bucket"]);
e.shapeless("herbalbrews:milk_coffee", ["herbalbrews:coffee", "#society:small_milk"]);
e.shapeless("society:chai_blend", [
"herbalbrews:dried_black_tea",
"minecraft:sugar",
"society:ground_cinnamon",
]);
e.shapeless("society:latte", ["society:espresso", "society:espresso", "society:steamed_milk"]);
e.shapeless("society:mocha", [
"society:espresso",
"bakery:chocolate_jam",
"society:steamed_milk",
"minecraft:sugar",
]);
e.shapeless("society:dirty_chai", [
"society:espresso",
"herbalbrews:chai_tea",
"society:steamed_milk",
]);
e.shapeless("society:bowl_of_soul", [
"herbalbrews:rooibos_tea",
"society:ground_cinnamon",
"society:steamed_milk",
]);
e.shapeless("society:truffle_tea", [
"herbalbrews:yerba_mate_tea",
"society:truffle",
"society:dried_tubabacco_leaf",
"society:steamed_milk",
]);
});