Files
GregTech-Modern-Community-Pack/kubejs/client_scripts/tooltips.js
ursamina cb75769bc5 added tooltips to the custom multiblocks
hopefully they stand out more
2024-02-23 21:57:48 +00:00

29 lines
893 B
JavaScript

ItemEvents.tooltip((event) => {
// Disabled Items
event.add(
[
"sophisticatedbackpacks:inception_upgrade",
"sophisticatedbackpacks:battery_upgrade",
"storagedrawers:redstone_upgrade",
"storagedrawers:min_redstone_upgrade",
"storagedrawers:max_redstone_upgrade",
"storagedrawers:compacting_drawers_3",
"storagedrawers:fill_level_upgrade",
"storagedrawers:illumination_upgrade",
],
Text.red("Disabled in this modpack!").bold(true)
);
event.add("gtceu:greenhouse", Text.gray("Two green thumbs up!"));
event.add(
"gtceu:construction_core",
Text.gray("Offers cheaper recipes for building blocks!")
);
event.add(
"gtceu:construction_core",
Text.darkGray("Requires Construction Foam to operate.")
);
event.add("ae2:controller", Text.gray("Channels are §cdisabled§7."));
});