Get Current Moon Phase
OriginalNovember 10, 2024Less than 1 minute
Get Current Moon Phase
const moonPhaseList = [
"Full",
"Waning Gibbous",
"Last Quarter",
"Waning Crescent",
"New",
"Waxing Crescent",
"First Quarter",
"Waxing Gibbous",
];
LevelEvents.tick("overworld", (event) => {
const { moonPhase, dayTime, server } = event;
if (dayTime % 24000 === 1) {
server.tell(`Today's moon phase is ${moonPhaseList[moonPhase]}`);
}
});