neuralgia/kubejs/startup_scripts/constants.js
2023-11-25 13:15:14 +07:00

60 lines
No EOL
912 B
JavaScript

// priority: 1000
global.allTFCStoneTypeNames = [
'gabbro',
'shale',
'claystone',
'limestone',
'conglomerate',
'dolomite',
'chert',
'chalk',
'rhyolite',
'dacite',
'quartzite',
'slate',
'phyllite',
'schist',
'gneiss',
'marble',
'basalt',
'diorite',
'andesite',
'granite'
];
global.allTFCStoneTypeNamesWithoutDups = [
'gabbro',
'shale',
'claystone',
'limestone',
'conglomerate',
'dolomite',
'chert',
'chalk',
'rhyolite',
'dacite',
'quartzite',
'slate',
'phyllite',
'schist',
'gneiss',
'marble'
];
global.allTFCStoneTypeNamesOnlyDups = [
'basalt',
'diorite',
'andesite',
'granite'
];
global.slabTypes = [
'raw',
'smooth',
'bricks',
'cobble',
'mossy_bricks',
'mossy_cobble',
'cracked_bricks'
];