neuralgia/kubejs/startup_scripts/constants.js
2023-10-12 20:59:58 +07:00

50 lines
No EOL
760 B
JavaScript

// priority: 1000
global.AllStoneTypeNames = [
'gabbro',
'shale',
'claystone',
'limestone',
'conglomerate',
'dolomite',
'chert',
'chalk',
'rhyolite',
'dacite',
'quartzite',
'slate',
'phyllite',
'schist',
'gneiss',
'marble',
'basalt',
'diorite',
'andesite',
'granite'
];
global.StoneTypeNamesWithoutGTDups = [
'gabbro',
'shale',
'claystone',
'limestone',
'conglomerate',
'dolomite',
'chert',
'chalk',
'rhyolite',
'dacite',
'quartzite',
'slate',
'phyllite',
'schist',
'gneiss',
'marble'
];
global.StoneTypeNamesOfGTDups = [
'basalt',
'diorite',
'andesite',
'granite'
];