Ponder Overrides
A KubeJS extension that enables modification of loaded ponder scenes based on events. This tool allows developers to customize the display of various tutorial materials in the game.
Usage Example
File client_scripts/ponder.js:
onEvent("ponder.override", event => {
// Get item information
const item = event.getItem();
// Get ponder tag (optional, available only when opened through Ponder UI)
const tag = event.getTag();
// Specify the ponder identifier to display a different overview
// If the method is not called, the default ponder will be shown
event.override("create:super_glue");
})