neuralgia/kubejs/startup_scripts/create/creative_tab.js
Ujhik 00a61f8f0d
feature: Add create casings, shadow and radiance (#2256)
* feature: Add create casings, shadow and radiance

Added recipes for create:
- shadow steel casing
- refined radiance casing

closes #2224

* fix: radiant casing recipe

- Fixed and changed radiant casing recipe
- Moved adding to create tab logic to a dedicated file for organization
- Added constants.js for tab names to prevent typos and improve maintainability

* Changed radiant casing recipe to glowstone plate

---------

Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
2025-11-22 14:09:58 -06:00

7 lines
166 B
JavaScript

// priority: 0
"use strict";
function modifyCreateCreativeTab(event) {
event.add('create:shadow_steel_casing')
event.add('create:refined_radiance_casing')
}