40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
// priority: 0
|
||
|
||
/**
|
||
* Список хранит предметы,
|
||
* у которых должны быть удалены тэги и они должны быть скрыты в REI.
|
||
*/
|
||
global.AD_ASTRA_DISABLED_ITEMS = [
|
||
// Random
|
||
"ad_astra:steel_ingot",
|
||
"ad_astra:steel_plate",
|
||
"ad_astra:iron_plate",
|
||
"ad_astra:iron_rod",
|
||
"ad_astra:steel_nugget",
|
||
"ad_astra:steel_trapdoor",
|
||
"ad_astra:steel_door",
|
||
|
||
// Ores
|
||
"ad_astra:glacio_lapis_ore",
|
||
"ad_astra:moon_cheese_ore",
|
||
"ad_astra:moon_desh_ore",
|
||
"ad_astra:deepslate_desh_ore",
|
||
"ad_astra:moon_iron_ore",
|
||
"ad_astra:moon_ice_shard_ore",
|
||
"ad_astra:deepslate_ice_shard_ore",
|
||
"ad_astra:mars_iron_ore",
|
||
"ad_astra:mars_diamond_ore",
|
||
"ad_astra:mars_ostrum_ore",
|
||
"ad_astra:deepslate_ostrum_ore",
|
||
"ad_astra:mars_ice_shard_ore",
|
||
"ad_astra:venus_coal_ore",
|
||
"ad_astra:venus_gold_ore",
|
||
"ad_astra:venus_diamond_ore",
|
||
"ad_astra:venus_calorite_ore",
|
||
"ad_astra:deepslate_calorite_ore",
|
||
"ad_astra:mercury_iron_ore",
|
||
"ad_astra:glacio_ice_shard_ore",
|
||
"ad_astra:glacio_coal_ore",
|
||
"ad_astra:glacio_copper_ore",
|
||
"ad_astra:glacio_iron_ore",
|
||
];
|