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,13 @@
BlockEvents.rightClicked("society:fish_pond_manager", (e) => {
const { item, hand, player, level, block } = e;
if (hand !== "MAIN_HAND" || item !== "create:clipboard") return;
global.addItemCooldown(player, item, 10);
player.swing();
const pages = global.getQuestItems(block, level);
item.nbt = {
Type: 1,
PreviouslyOpenedPage: 0,
Pages: pages,
};
e.cancel();
});