117 lines
4.1 KiB
JavaScript
117 lines
4.1 KiB
JavaScript
console.info("[SOCIETY] goldenClock.js loaded");
|
|
|
|
global.handleProgress = (level, block) => {
|
|
const eventObj = { level: level, block: block };
|
|
let id = block.id;
|
|
switch (id) {
|
|
case "society:loom":
|
|
global.handleBETick(eventObj, global.loomRecipes, 1, false, true);
|
|
break;
|
|
case "society:mayonnaise_machine":
|
|
global.handleBETick(eventObj, global.mayonnaiseMachineRecipes, 1, false, true);
|
|
break;
|
|
case "society:cheese_press":
|
|
global.handleBETick(eventObj, global.cheesePressRecipes, 2, false, true);
|
|
break;
|
|
case "society:preserves_jar":
|
|
global.handleBETick(eventObj, global.preservesJarRecipes, 3, false, true);
|
|
break;
|
|
case "society:wine_keg":
|
|
global.handleBETick(eventObj, global.wineKegRecipes, 6, false, true);
|
|
break;
|
|
case "society:crystalarium":
|
|
global.handleBETick(eventObj, global.crystalariumCrystals, 5, false, true);
|
|
break;
|
|
case "society:aging_cask":
|
|
global.handleBETick(eventObj, global.agingCaskRecipes, 10, true, true);
|
|
break;
|
|
case "society:ancient_cask":
|
|
global.handleBETick(eventObj, global.ancientCaskRecipes, 20, false, true);
|
|
break;
|
|
case "society:dehydrator":
|
|
global.handleBETick(eventObj, global.dehydratorRecipes, 1, false, true);
|
|
break;
|
|
case "society:deluxe_worm_farm":
|
|
global.handleBETick(eventObj, null, 1, false, true);
|
|
break;
|
|
case "society:seed_maker":
|
|
global.handleBETick(eventObj, global.seedMakerRecipes, 1, false, true);
|
|
break;
|
|
case "society:fish_smoker":
|
|
global.handleBETick(eventObj, global.fishSmokerRecipes, 2, false, true);
|
|
break;
|
|
case "society:bait_maker":
|
|
global.handleBETick(eventObj, global.baitMakerRecipes, 1, false, true);
|
|
break;
|
|
case "society:recycling_machine":
|
|
global.handleBETick(eventObj, global.recyclingMachineRecipes, 1, false, true);
|
|
break;
|
|
case "society:oil_maker":
|
|
global.handleBETick(eventObj, global.oilMakerRecipes, 1, false, true);
|
|
break;
|
|
case "society:tapper":
|
|
if (block.properties.get("error") !== "true")
|
|
global.handleBETick(eventObj, global.tapperRecipes, 7, false, true);
|
|
break;
|
|
case "society:mushroom_log":
|
|
global.handleBETick(eventObj, global.mushroomLogRecipes, 4, false, true);
|
|
break;
|
|
case "society:bait_maker":
|
|
global.handleBETick(eventObj, null, 7, false, false, false, true);
|
|
break;
|
|
case "society:charging_rod":
|
|
global.handleBETick(eventObj, null, 5);
|
|
break;
|
|
default:
|
|
console.log("Invalid artisan machine!");
|
|
}
|
|
};
|
|
global.runGoldenClock = (entity) => {
|
|
const { level, block } = entity;
|
|
const { x, y, z } = block;
|
|
const radius = 2;
|
|
let scanBlock;
|
|
let dayTime = level.dayTime();
|
|
let morningModulo = dayTime % 24000;
|
|
const goldenClockProgTime = 1000;
|
|
if (
|
|
morningModulo >= goldenClockProgTime &&
|
|
morningModulo < goldenClockProgTime + artMachineTickRate
|
|
) {
|
|
for (let pos of BlockPos.betweenClosed(new BlockPos(x - radius, y - radius, z - radius), [
|
|
x + radius,
|
|
y + radius,
|
|
z + radius,
|
|
])) {
|
|
if (!level.isLoaded(pos)) continue;
|
|
scanBlock = level.getBlock(pos);
|
|
if (scanBlock.hasTag("society:golden_clock_advanced")) {
|
|
global.handleProgress(level, scanBlock);
|
|
}
|
|
}
|
|
level.server.runCommandSilent(
|
|
`playsound tanukidecor:block.grandfather_clock.chime block @a ${x} ${y} ${z}`
|
|
);
|
|
}
|
|
};
|
|
StartupEvents.registry("block", (event) => {
|
|
event
|
|
.create("society:golden_clock", "cardinal")
|
|
.soundType("copper")
|
|
.box(1, 0, 1, 15, 16, 15)
|
|
.defaultCutout()
|
|
.tagBlock("minecraft:mineable/pickaxe")
|
|
.tagBlock("minecraft:needs_stone_tool")
|
|
.item((item) => {
|
|
item.tooltip(Text.translatable("block.society.golden_clock.description").gray());
|
|
item.tooltip(Text.translatable("tooltip.society.area", `5x5x5`).green());
|
|
item.modelJson({
|
|
parent: "society:block/kubejs/golden_clock",
|
|
});
|
|
})
|
|
.model("society:block/kubejs/golden_clock")
|
|
.blockEntity((blockInfo) => {
|
|
blockInfo.serverTick(artMachineTickRate, 0, (entity) => global.runGoldenClock(entity));
|
|
});
|
|
});
|