* make popped chorus fruit edible * add catwalk facades * fix crafting facades out of singular bricks * Revert "fix crafting facades out of singular bricks" This reverts commit 2f5acb5d48a943d24b229a17b0bf25ead8e6c291. * fix mud brick properly * put constants in one place
43 lines
969 B
JavaScript
43 lines
969 B
JavaScript
// priority: 0
|
|
"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",
|
|
]);
|