Item sizes (#1778)

* Item sizes and some helpful tags

* Try putting item sizes in a KJS script (NOT TESTED)

* Move Greate tags to KJS, add sizes for various pipes and cables

* Whoops, accidentally overrode tiny pipe size

* Air duct sizes

* Prettier config and tags moved to JS
- Added `.prettierrc` file, which configures the tab width and code wrapping point for the Prettier formatter.
- Moved remaining tags from JSON to JS files.

* Delete floating carpet tag JSON

Signed-off-by: KonSola5 <125081901+KonSola5@users.noreply.github.com>

---------

Signed-off-by: KonSola5 <125081901+KonSola5@users.noreply.github.com>
Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
This commit is contained in:
KonSola5 2025-09-13 20:46:20 +02:00 committed by GitHub
parent dd5fa10ae1
commit 033b411363
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 3283 additions and 2752 deletions

View file

@ -2,24 +2,33 @@
"use strict";
/** @global */
global.CREATEDECO_DISABLED_ITEMS = [
'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.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 = [
'dusk',
'scarlet',
'umber',
'verdant',
'blue',
'pearl',
'dean',
'red'
]
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",
]);