43 lines
968 B
JavaScript
43 lines
968 B
JavaScript
// priority: -100
|
|
"use strict";
|
|
|
|
/** @global */
|
|
global.CREATEDECO_DISABLED_ITEMS = /** @type {const} */ ([
|
|
"createdeco:andesite_sheet",
|
|
"createdeco:zinc_sheet",
|
|
"createdeco:netherite_sheet",
|
|
"createdeco:industrial_iron_sheet",
|
|
"createdeco:netherite_nugget",
|
|
"createdeco:industrial_iron_nugget",
|
|
"createdeco:industrial_iron_ingot"
|
|
]);
|
|
|
|
/** @global */
|
|
global.CREATE_DECO_BRICK_TYPES = /** @type {const} */ ([
|
|
"dusk",
|
|
"scarlet",
|
|
"umber",
|
|
"verdant",
|
|
"blue",
|
|
"pearl",
|
|
"dean",
|
|
"red"
|
|
]);
|
|
|
|
global.CREATE_DECO_GLASS_PANES = /** @type {const} */ ([
|
|
"createdeco:andesite_window_pane",
|
|
"createdeco:copper_window_pane",
|
|
"createdeco:iron_window_pane",
|
|
"createdeco:industrial_iron_window_pane",
|
|
"createdeco:brass_window_pane",
|
|
"createdeco:zinc_window_pane"
|
|
]);
|
|
|
|
global.CREATE_DECO_CATWALK_TYPES = /** @type {const} */ ([
|
|
"andesite",
|
|
"brass",
|
|
"iron",
|
|
"copper",
|
|
"industrial_iron",
|
|
"zinc"
|
|
]);
|