// macro code: export function mysteryBox(node) { const dice = Math.round(Math.random() * 100); if (dice < 25) { return ; } else if (dice < 50) { return ; } else if (dice < 75) { return ; } else if (dice < 90) { return ; } else { return ; } }