From cb75769bc528a7711af9b9311e7f148f1794985a Mon Sep 17 00:00:00 2001 From: ursamina <143211829+ursamina@users.noreply.github.com> Date: Fri, 23 Feb 2024 21:57:48 +0000 Subject: [PATCH] added tooltips to the custom multiblocks hopefully they stand out more --- kubejs/client_scripts/tooltips.js | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/kubejs/client_scripts/tooltips.js b/kubejs/client_scripts/tooltips.js index 98e0d2f..3849f57 100644 --- a/kubejs/client_scripts/tooltips.js +++ b/kubejs/client_scripts/tooltips.js @@ -14,17 +14,15 @@ ItemEvents.tooltip((event) => { Text.red("Disabled in this modpack!").bold(true) ); + event.add("gtceu:greenhouse", Text.gray("Two green thumbs up!")); event.add( - ["simplemagnets:basicmagnet", "simplemagnets:advancedmagnet"], - Text.red( - "Will be removed in a future release! Place in crafting grid to recycle." - ).bold(true) + "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." - ) - ); + event.add("ae2:controller", Text.gray("Channels are §cdisabled§7.")); });