Fellies/kubejs[copied]/client_scripts/item_modifiers/jei_descriptions.js

25 lines
658 B
JavaScript
Raw Normal View History

2021-01-24 16:10:27 +00:00
events.listen('jei.information', (event) => {
2021-01-26 10:32:42 +00:00
var data = {
items: [
{
item: 'astralsorcery:stardust',
description: [
'Obtained by left-clicking a Starmetal Ingot in-world. See the Astral Tome for more information.'
]
}
]
};
data.items.forEach(function (item) {
event.add(item.item, item.description);
});
2021-01-24 16:10:27 +00:00
global.disabledItems.forEach((item) => {
event.add(
item,
"This item has been disabled, if you managed to obtain it please report it on Enigmatica 6's issue tracker: https://github.com/NillerMedDild/Enigmatica6/issues"
);
});
});